dev.responsive.kafka.internal.metrics.ApplicationMetrics Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2023 Responsive Computing, Inc.
*
* 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 dev.responsive.kafka.internal.metrics;
@SuppressWarnings("checkstyle:linelength")
public class ApplicationMetrics {
// Responsive application metrics scoped to the Streams client level
public static final String APPLICATION_METRIC_GROUP = "application-metrics";
public static final String STREAMS_STATE = "streams-state";
public static final String STREAMS_STATE_DESCRIPTION = "The current KafkaStreams.State expressed as its ordinal value";
public static final String NUM_RESTORING_CHANGELOGS = "num-restoring-changelogs";
public static final String NUM_RESTORING_CHANGELOGS_DESCRIPTION = "The number of changelog topics currently being restored from";
public static final String NUM_INTERRUPTED_CHANGELOGS = "num-interrupted-changelogs";
public static final String NUM_INTERRUPTED_CHANGELOGS_DESCRIPTION = "The total number of changelog partitions that began restoring but did not complete";
private ApplicationMetrics() {
}
}