Skip to content

Package: DeviceManagementRegistryNotificationMetrics

DeviceManagementRegistryNotificationMetrics

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 DeviceManagementRegistryNotificationMetrics {
16:
17: private DeviceManagementRegistryNotificationMetrics() { }
18:
19: public static final String METRIC_MODULE_NAME = "device_management_registry";
20:
21: public static final String METRIC_COMPONENT_NOTIFICATION = "notification";
22: public static final String METRIC_COMPONENT_DEVICE_LIFE_CYCLE = "deviceLifeCycle";
23:
24: public static final String METRIC_MESSAGES = "messages";
25: public static final String METRIC_PROCESS_QUEUE = "process_queue";
26: public static final String METRIC_COMMUNICATION = "communication";
27: public static final String METRIC_CONFIGURATION = "configuration";
28: public static final String METRIC_GENERIC = "generic";
29:
30: public static final String METRIC_APPS = "apps";
31: public static final String METRIC_BIRTH = "birth";
32: public static final String METRIC_DC = "dc";
33: public static final String METRIC_MISSING = "missing";
34: public static final String METRIC_UNMATCHED = "unmatched";
35:
36: public static final String METRIC_ERROR = "error";
37: public static final String METRIC_COUNT = "count";
38:
39: }