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

io.atomix.raft.metrics.LeaderMetrics Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016-present Open Networking Foundation
 * Copyright © 2020 camunda services GmbH ([email protected])
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.atomix.raft.metrics;

import io.prometheus.client.Counter;
import io.prometheus.client.Gauge;
import io.prometheus.client.Histogram;

public class LeaderMetrics extends RaftMetrics {
  private static final String FOLLOWER_LABEL = "follower";

  private static final Histogram APPEND_LATENCY =
      Histogram.build()
          .namespace(NAMESPACE)
          .name("append_entries_latency")
          .help("Latency to append an entry to a follower")
          .labelNames(FOLLOWER_LABEL, PARTITION_GROUP_NAME_LABEL, PARTITION_LABEL)
          .register();

  private static final Counter APPEND_RATE =
      Counter.build()
          .namespace(NAMESPACE)
          .name("append_entries_rate")
          .help("The count of entries appended (counting entries, not their size)")
          .labelNames(FOLLOWER_LABEL, PARTITION_GROUP_NAME_LABEL, PARTITION_LABEL)
          .register();

  private static final Counter APPEND_DATA_RATE =
      Counter.build()
          .namespace(NAMESPACE)
          .name("append_entries_data_rate")
          .help("The count of data replication in KiB")
          .labelNames(FOLLOWER_LABEL, PARTITION_GROUP_NAME_LABEL, PARTITION_LABEL)
          .register();

  private static final Gauge NON_REPLICATED_ENTRIES =
      Gauge.build()
          .namespace(NAMESPACE)
          .name("non_replicated_entries")
          .help("The number of non-replicated entries for a given followers")
          .labelNames(FOLLOWER_LABEL, PARTITION_GROUP_NAME_LABEL, PARTITION_LABEL)
          .register();
  private static final Counter COMMIT_RATE =
      Counter.build()
          .namespace(NAMESPACE)
          .name("commit_entries_rate")
          .help("The count of entries committed (counting entries, not their size)")
          .labelNames(PARTITION_GROUP_NAME_LABEL, PARTITION_LABEL)
          .register();
  private static final Gauge NON_COMMITTED_ENTRIES =
      Gauge.build()
          .namespace(NAMESPACE)
          .name("non_committed_entries")
          .help("The number of non-committed entries on the leader")
          .labelNames(PARTITION_GROUP_NAME_LABEL, PARTITION_LABEL)
          .register();

  private final Counter.Child commitRate;
  private final Gauge.Child nonCommittedEntries;

  public LeaderMetrics(final String partitionName) {
    super(partitionName);
    commitRate = COMMIT_RATE.labels(partitionGroupName, partition);
    nonCommittedEntries = NON_COMMITTED_ENTRIES.labels(partitionGroupName, partition);
  }

  public void appendComplete(final long latencyms, final String memberId) {
    APPEND_LATENCY.labels(memberId, partitionGroupName, partition).observe(latencyms / 1000f);
  }

  public void observeAppend(
      final String memberId, final int appendedEntries, final int appendedBytes) {
    APPEND_RATE.labels(memberId, partitionGroupName, partition).inc(appendedEntries);
    APPEND_DATA_RATE.labels(memberId, partitionGroupName, partition).inc(appendedBytes / 1024f);
  }

  public void observeCommit() {
    commitRate.inc();
  }

  public void observeNonCommittedEntries(final long remainingEntries) {
    nonCommittedEntries.set(remainingEntries);
  }

  public void observeRemainingEntries(final String memberId, final long remainingEntries) {
    NON_REPLICATED_ENTRIES.labels(memberId, partitionGroupName, partition).set(remainingEntries);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy