khenaidoo | bf6e7bb | 2018-08-14 22:27:29 -0400 | [diff] [blame] | 1 | /* |
| 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 | */ |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 16 | |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 17 | package config |
| 18 | |
| 19 | import ( |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 20 | "flag" |
David K. Bainbridge | 6080c17 | 2021-07-24 00:22:28 +0000 | [diff] [blame] | 21 | "os" |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 22 | "time" |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 23 | ) |
| 24 | |
khenaidoo | 5c11af7 | 2018-07-20 17:21:05 -0400 | [diff] [blame] | 25 | // RW Core service default constants |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 26 | const ( |
David K. Bainbridge | 6080c17 | 2021-07-24 00:22:28 +0000 | [diff] [blame] | 27 | EtcdStoreName = "etcd" |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 28 | ) |
| 29 | |
khenaidoo | 5c11af7 | 2018-07-20 17:21:05 -0400 | [diff] [blame] | 30 | // RWCoreFlags represents the set of configurations used by the read-write core service |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 31 | type RWCoreFlags struct { |
| 32 | // Command line parameters |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 33 | GrpcNBIAddress string |
| 34 | GrpcSBIAddress string |
khenaidoo | 5e4fca3 | 2021-05-12 16:02:23 -0400 | [diff] [blame] | 35 | KafkaClusterAddress string |
| 36 | KVStoreType string |
| 37 | KVStoreTimeout time.Duration |
| 38 | KVStoreAddress string |
khenaidoo | 5e4fca3 | 2021-05-12 16:02:23 -0400 | [diff] [blame] | 39 | EventTopic string |
| 40 | LogLevel string |
| 41 | Banner bool |
| 42 | DisplayVersionOnly bool |
| 43 | RWCoreKey string |
| 44 | RWCoreCert string |
| 45 | RWCoreCA string |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 46 | InternalTimeout time.Duration |
| 47 | RPCTimeout time.Duration |
Himani Chawla | 4b4bd25 | 2021-11-08 15:59:40 +0530 | [diff] [blame] | 48 | FlowTimeout time.Duration |
khenaidoo | 5e4fca3 | 2021-05-12 16:02:23 -0400 | [diff] [blame] | 49 | MaxConnectionRetries int |
| 50 | ConnectionRetryInterval time.Duration |
| 51 | LiveProbeInterval time.Duration |
| 52 | NotLiveProbeInterval time.Duration |
| 53 | ProbeAddress string |
| 54 | TraceEnabled bool |
| 55 | TraceAgentAddress string |
| 56 | LogCorrelationEnabled bool |
| 57 | VolthaStackID string |
| 58 | BackoffRetryInitialInterval time.Duration |
| 59 | BackoffRetryMaxElapsedTime time.Duration |
| 60 | BackoffRetryMaxInterval time.Duration |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 61 | } |
| 62 | |
khenaidoo | 5c11af7 | 2018-07-20 17:21:05 -0400 | [diff] [blame] | 63 | // ParseCommandArguments parses the arguments when running read-write core service |
David K. Bainbridge | 6080c17 | 2021-07-24 00:22:28 +0000 | [diff] [blame] | 64 | func (cf *RWCoreFlags) ParseCommandArguments(args []string) { |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 65 | |
David K. Bainbridge | 6080c17 | 2021-07-24 00:22:28 +0000 | [diff] [blame] | 66 | fs := flag.NewFlagSet(os.Args[0], flag.ExitOnError) |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 67 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 68 | fs.StringVar(&cf.GrpcNBIAddress, |
| 69 | "grpc_nbi_address", |
| 70 | ":50057", |
| 71 | "GRPC NBI server - address") |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 72 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 73 | fs.StringVar(&cf.GrpcSBIAddress, |
| 74 | "grpc_sbi_address", |
| 75 | ":50058", |
| 76 | "GRPC SBI server - address") |
khenaidoo | 5c11af7 | 2018-07-20 17:21:05 -0400 | [diff] [blame] | 77 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 78 | fs.StringVar(&cf.KafkaClusterAddress, |
| 79 | "kafka_cluster_address", |
| 80 | "127.0.0.1:9092", |
| 81 | "Kafka - Cluster messaging address") |
khenaidoo | 5c11af7 | 2018-07-20 17:21:05 -0400 | [diff] [blame] | 82 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 83 | fs.StringVar(&cf.EventTopic, |
| 84 | "event_topic", |
| 85 | "voltha.events", |
| 86 | "RW Core Event topic") |
khenaidoo | 5c11af7 | 2018-07-20 17:21:05 -0400 | [diff] [blame] | 87 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 88 | fs.StringVar(&cf.KVStoreType, |
| 89 | "kv_store_type", |
| 90 | EtcdStoreName, |
| 91 | "KV store type") |
Himani Chawla | b4c2591 | 2020-11-12 17:16:38 +0530 | [diff] [blame] | 92 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 93 | fs.DurationVar(&cf.KVStoreTimeout, |
| 94 | "kv_store_request_timeout", |
| 95 | 5*time.Second, |
| 96 | "The default timeout when making a kv store request") |
khenaidoo | 7923270 | 2018-12-04 11:00:41 -0500 | [diff] [blame] | 97 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 98 | fs.StringVar(&cf.KVStoreAddress, |
| 99 | "kv_store_address", |
| 100 | "127.0.0.1:2379", |
| 101 | "KV store address") |
khenaidoo | 5c11af7 | 2018-07-20 17:21:05 -0400 | [diff] [blame] | 102 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 103 | fs.StringVar(&cf.LogLevel, |
| 104 | "log_level", |
| 105 | "warn", |
| 106 | "Log level") |
khenaidoo | 5c11af7 | 2018-07-20 17:21:05 -0400 | [diff] [blame] | 107 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 108 | fs.DurationVar(&(cf.InternalTimeout), |
| 109 | "internal_timeout", |
| 110 | 5*time.Second, |
| 111 | "Core internal timeout") |
khenaidoo | 5c11af7 | 2018-07-20 17:21:05 -0400 | [diff] [blame] | 112 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 113 | fs.DurationVar(&(cf.RPCTimeout), |
| 114 | "rpc_timeout", |
| 115 | 5*time.Second, |
| 116 | "RPC timeout") |
Richard Jankowski | e4d7766 | 2018-10-17 13:53:21 -0400 | [diff] [blame] | 117 | |
Himani Chawla | 4b4bd25 | 2021-11-08 15:59:40 +0530 | [diff] [blame] | 118 | fs.DurationVar(&(cf.FlowTimeout), //Note flow time out will be considered for flows related rpc's not rpc timeout |
| 119 | "flow_timeout", |
| 120 | 30*time.Second, |
| 121 | "Flow timeout") |
| 122 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 123 | fs.BoolVar(&cf.Banner, |
| 124 | "banner", |
| 125 | false, |
| 126 | "Show startup banner log lines") |
khenaidoo | 5c11af7 | 2018-07-20 17:21:05 -0400 | [diff] [blame] | 127 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 128 | fs.BoolVar(&cf.DisplayVersionOnly, |
| 129 | "version", |
| 130 | false, |
| 131 | "Show version information and exit") |
khenaidoo | b608032 | 2019-01-29 21:47:38 -0500 | [diff] [blame] | 132 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 133 | fs.IntVar(&cf.MaxConnectionRetries, |
| 134 | "max_connection_retries", |
| 135 | -1, |
| 136 | "The number of retries to connect to a dependent component") |
khenaidoo | b608032 | 2019-01-29 21:47:38 -0500 | [diff] [blame] | 137 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 138 | fs.DurationVar(&cf.ConnectionRetryInterval, |
| 139 | "connection_retry_interval", |
| 140 | 2*time.Second, |
| 141 | "The number of seconds between each connection retry attempt") |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 142 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 143 | fs.DurationVar(&cf.LiveProbeInterval, |
| 144 | "live_probe_interval", |
| 145 | 60*time.Second, |
| 146 | "The number of seconds between liveness probes while in a live state") |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 147 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 148 | fs.DurationVar(&cf.NotLiveProbeInterval, |
| 149 | "not_live_probe_interval", |
| 150 | 5*time.Second, |
| 151 | "The number of seconds between liveness probes while in a not live state") |
David K. Bainbridge | f430cd5 | 2019-05-28 15:00:35 -0700 | [diff] [blame] | 152 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 153 | fs.StringVar(&cf.ProbeAddress, |
| 154 | "probe_address", |
| 155 | ":8080", |
| 156 | "The address on which to listen to answer liveness and readiness probe queries over HTTP") |
Richard Jankowski | 46464e9 | 2019-03-05 11:53:55 -0500 | [diff] [blame] | 157 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 158 | fs.BoolVar(&(cf.TraceEnabled), |
| 159 | "trace_enabled", |
| 160 | false, |
| 161 | "Whether to send logs to tracing agent?") |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 162 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 163 | fs.StringVar(&cf.TraceAgentAddress, |
| 164 | "trace_agent_address", |
| 165 | "127.0.0.1:6831", |
| 166 | "The address of tracing agent to which span info should be sent") |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 167 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 168 | fs.BoolVar(&cf.LogCorrelationEnabled, |
| 169 | "log_correlation_enabled", |
| 170 | true, |
| 171 | "Whether to enrich log statements with fields denoting operation being executed for achieving correlation?") |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 172 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 173 | fs.StringVar(&cf.VolthaStackID, |
| 174 | "stack_id", |
| 175 | "voltha", |
| 176 | "ID for the current voltha stack") |
Himani Chawla | 9cfc499 | 2021-03-22 12:43:01 +0530 | [diff] [blame] | 177 | |
David K. Bainbridge | 6080c17 | 2021-07-24 00:22:28 +0000 | [diff] [blame] | 178 | fs.DurationVar(&cf.BackoffRetryInitialInterval, |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 179 | "backoff_retry_initial_interval", |
| 180 | 500*time.Millisecond, |
David K. Bainbridge | 6080c17 | 2021-07-24 00:22:28 +0000 | [diff] [blame] | 181 | "The initial number of milliseconds an exponential backoff will wait before a retry") |
khenaidoo | 5e4fca3 | 2021-05-12 16:02:23 -0400 | [diff] [blame] | 182 | |
David K. Bainbridge | 6080c17 | 2021-07-24 00:22:28 +0000 | [diff] [blame] | 183 | fs.DurationVar(&cf.BackoffRetryMaxElapsedTime, |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 184 | "backoff_retry_max_elapsed_time", |
| 185 | 0*time.Second, |
David K. Bainbridge | 6080c17 | 2021-07-24 00:22:28 +0000 | [diff] [blame] | 186 | "The maximum number of milliseconds an exponential backoff can elasped") |
khenaidoo | 5e4fca3 | 2021-05-12 16:02:23 -0400 | [diff] [blame] | 187 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 188 | fs.DurationVar(&cf.BackoffRetryMaxInterval, |
| 189 | "backoff_retry_max_interval", |
| 190 | 1*time.Minute, |
| 191 | "The maximum number of milliseconds of an exponential backoff interval") |
khenaidoo | 5e4fca3 | 2021-05-12 16:02:23 -0400 | [diff] [blame] | 192 | |
David K. Bainbridge | 6080c17 | 2021-07-24 00:22:28 +0000 | [diff] [blame] | 193 | _ = fs.Parse(args) |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 194 | } |