blob: bf0e0134d529cf2a27a4e3153d2b02d828b4374d [file] [log] [blame]
Jian Liff8b9f92018-06-05 17:36:37 +09001/*
2 * Copyright 2018-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.openstacktelemetry.api;
17
Jian Liff8b9f92018-06-05 17:36:37 +090018/**
19 * Provides constants used in OpenstackTelemetry.
20 */
21public final class Constants {
22
23 private Constants() {
24 }
25
26 public static final String OPENSTACK_TELEMETRY_APP_ID = "org.onosproject.openstacktelemetry";
27
Jian Li4df75b12018-06-07 22:11:04 +090028 // default configuration variables for InfluxDB
Boyoung Jeong4d1c9d12018-07-20 17:09:20 +090029 public static final String DEFAULT_INFLUXDB_MEASUREMENT = "sonaflow";
Jian Lid1ce10a2018-06-12 13:47:23 +090030
Jian Lie6110b72018-07-06 19:06:36 +090031 public static final String VXLAN = "VXLAN";
32 public static final String VLAN = "VLAN";
33 public static final String FLAT = "FLAT";
Boyoung Jeong1cca5e82018-08-01 21:00:08 +090034
35 // default configuration variables for ONOS GUI
36 public static final int DEFAULT_DATA_POINT_SIZE = 17280;
Jian Liff8b9f92018-06-05 17:36:37 +090037}