blob: 98253cfc55d1fe63c923463f032dbab16d6e8204 [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
28 private static final String DEFAULT_SERVER_IP = "localhost";
29
Jian Li4df75b12018-06-07 22:11:04 +090030 // default configuration variables for gRPC
31 public static final String DEFAULT_GRPC_SERVER_IP = DEFAULT_SERVER_IP;
32 public static final int DEFAULT_GRPC_SERVER_PORT = 50051;
33 public static final boolean DEFAULT_GRPC_USE_PLAINTEXT = true;
34 public static final int DEFAULT_GRPC_MAX_INBOUND_MSG_SIZE = 4 * 1024 * 1024;
35
36 // default configuration variables for InfluxDB
37 public static final String DEFAULT_INFLUXDB_SERVER_IP = DEFAULT_SERVER_IP;
38 public static final int DEFAULT_INFLUXDB_SERVER_PORT = 8086;
39 public static final String DEFAULT_INFLUXDB_USERNAME = "onos";
40 public static final String DEFAULT_INFLUXDB_PASSWORD = "onos";
41 public static final String DEFAULT_INFLUXDB_DATABASE = "onos";
42 public static final boolean DEFAULT_INFLUXDB_ENABLE_BATCH = true;
43
44 // default configuration variables for Kafka
Jian Liff8b9f92018-06-05 17:36:37 +090045 public static final String DEFAULT_KAFKA_SERVER_IP = DEFAULT_SERVER_IP;
46 public static final int DEFAULT_KAFKA_SERVER_PORT = 9092;
47 public static final int DEFAULT_KAFKA_RETRIES = 0;
48 public static final String DEFAULT_KAFKA_REQUIRED_ACKS = "all";
49 public static final int DEFAULT_KAFKA_BATCH_SIZE = 16384;
50 public static final int DEFAULT_KAFKA_LINGER_MS = 1;
51 public static final int DEFAULT_KAFKA_MEMORY_BUFFER = 33554432;
Jian Lib9fe3492018-06-07 17:19:07 +090052 public static final String DEFAULT_KAFKA_KEY_SERIALIZER =
53 "org.apache.kafka.common.serialization.StringSerializer";
54 public static final String DEFAULT_KAFKA_VALUE_SERIALIZER =
55 "org.apache.kafka.common.serialization.ByteArraySerializer";
Jian Liff8b9f92018-06-05 17:36:37 +090056
Jian Li4df75b12018-06-07 22:11:04 +090057 // default configuration variables for REST API
Jian Liff8b9f92018-06-05 17:36:37 +090058 public static final String DEFAULT_REST_SERVER_IP = DEFAULT_SERVER_IP;
59 public static final int DEFAULT_REST_SERVER_PORT = 80;
Jian Li4df75b12018-06-07 22:11:04 +090060 public static final String DEFAULT_REST_ENDPOINT = "telemetry";
61 public static final String DEFAULT_REST_METHOD = "POST";
62 public static final String DEFAULT_REST_REQUEST_MEDIA_TYPE = "application/json";
63 public static final String DEFAULT_REST_RESPONSE_MEDIA_TYPE = "application/json";
64
Jian Liff8b9f92018-06-05 17:36:37 +090065}