All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.atomix.cluster.messaging.impl.NettyDnsMetrics Maven / Gradle / Ivy

The newest version!
/*
 * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under
 * one or more contributor license agreements. See the NOTICE file distributed
 * with this work for additional information regarding copyright ownership.
 * Licensed under the Camunda License 1.0. You may not use this file
 * except in compliance with the Camunda License 1.0.
 */
package io.atomix.cluster.messaging.impl;

import io.netty.channel.ChannelFuture;
import io.netty.handler.codec.dns.DnsQuestion;
import io.netty.handler.codec.dns.DnsResponseCode;
import io.netty.resolver.dns.DnsQueryLifecycleObserver;
import io.prometheus.client.Counter;
import java.net.InetSocketAddress;
import java.util.List;

final class NettyDnsMetrics implements DnsQueryLifecycleObserver {
  private static final Counter ERROR =
      Counter.build()
          .help("Counts how often DNS queries fail with an error")
          .namespace("zeebe")
          .subsystem("dns")
          .name("error")
          .register();
  private static final Counter FAILED =
      Counter.build()
          .help("Counts how often DNS queries return an unsuccessful answer")
          .namespace("zeebe")
          .subsystem("dns")
          .name("failed")
          .labelNames("code")
          .register();
  private static final Counter WRITTEN =
      Counter.build()
          .help("Counts how often DNS queries are written")
          .namespace("zeebe")
          .subsystem("dns")
          .name("written")
          .register();
  private static final Counter SUCCESS =
      Counter.build()
          .help("Counts how often DNS queries are successful")
          .namespace("zeebe")
          .subsystem("dns")
          .name("success")
          .register();

  @Override
  public void queryWritten(final InetSocketAddress dnsServerAddress, final ChannelFuture future) {
    WRITTEN.inc();
  }

  @Override
  public void queryCancelled(final int queriesRemaining) {}

  @Override
  public DnsQueryLifecycleObserver queryRedirected(final List nameServers) {
    return this;
  }

  @Override
  public DnsQueryLifecycleObserver queryCNAMEd(final DnsQuestion cnameQuestion) {
    return this;
  }

  @Override
  public DnsQueryLifecycleObserver queryNoAnswer(final DnsResponseCode code) {
    FAILED.labels(code.toString()).inc();
    return this;
  }

  @Override
  public void queryFailed(final Throwable cause) {
    ERROR.inc();
  }

  @Override
  public void querySucceed() {
    SUCCESS.inc();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy