Skip to content

Package: DataStoreMetrics

DataStoreMetrics

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2020, 2022 Eurotech and/or its affiliates and others
3: *
4: * This program and the accompanying materials are made
5: * available under the terms of the Eclipse Public License 2.0
6: * which is available at https://www.eclipse.org/legal/epl-2.0/
7: *
8: * SPDX-License-Identifier: EPL-2.0
9: *
10: * Contributors:
11: * Eurotech - initial API and implementation
12: *******************************************************************************/
13: package org.eclipse.kapua.broker.core.listener;
14:
15: public class DataStoreMetrics {
16:
17: private DataStoreMetrics() { }
18:
19: public static final String METRIC_MODULE_NAME = "datastore";
20:
21: public static final String METRIC_COMPONENT_NAME = "datastore";
22:
23: public static final String METRIC_STORE = "store";
24: public static final String METRIC_QUEUE = "queue";
25: public static final String METRIC_COMMUNICATION = "communication";
26: public static final String METRIC_CONFIGURATION = "configuration";
27: public static final String METRIC_GENERIC = "generic";
28:
29: public static final String METRIC_ERROR = "error";
30: public static final String METRIC_COUNT = "count";
31:
32: }