-
Notifications
You must be signed in to change notification settings - Fork 10
/
petasos.yaml
344 lines (309 loc) · 12.7 KB
/
petasos.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
# SPDX-FileCopyrightText: 2016 Comcast Cable Communications Management, LLC
# SPDX-License-Identifier: Apache-2.0
---
# The unique fully-qualified-domain-name of the server. It is provided to
# the X-petasos-Server header for showing what server fulfilled the request
# sent.
# (Optional)
server: "petasos"
########################################
# Labeling/Tracing via HTTP Headers Configuration
########################################
# Provides this build number to the X-petasos-Build header for
# showing machine version information. The build number SHOULD
# match the scheme `version-build` but there is not a strict requirement.
# (Optional)
build: "0.1.4"
# Provides the region information to the X-petasos-Region header
# for showing what region this machine is located in. The region
# is arbitrary and optional.
# (Optional)
region: "east"
# Provides the flavor information to the X-petasos-Flavor header
# for showing what flavor this machine is associated with. The flavor
# is arbitrary and optional.
# (Optional)
flavor: "mint"
##############################################################################
# WebPA Service configuration
##############################################################################
# For a complete view of the service config structure,
# checkout https://godoc.org/github.com/xmidt-org/webpa-common/v2/server#WebPA
########################################
# primary endpoint Configuration
########################################
# primary defines the details needed for the primary endpoint. The
# primary endpoint accepts the events from petasos (typically).
# define https://godoc.org/github.com/xmidt-org/webpa-common/v2/server#Basic
primary:
# address provides the port number for the endpoint to bind to.
# ":443" is ideal, but may require some special handling due to it being
# a reserved (by the kernel) port.
address: ":6400"
# HTTPS/TLS
#
# certificateFile provides the public key and CA chain in PEM format if
# TLS is used. Note: the certificate needs to match the fqdn for clients
# to accept without issue.
#
# keyFile provides the private key that matches the certificateFile
# (Optional)
# certificateFile: "/etc/petasos/public.pem"
# keyFile: "/etc/petasos/private.pem"
########################################
# health endpoint Configuration
########################################
# health defines the details needed for the health check endpoint. The
# health check endpoint is generally used by services (like AWS Route53
# or consul) to determine if this particular machine is healthy or not.
# define https://godoc.org/github.com/xmidt-org/webpa-common/v2/server#Health
health:
# address provides the port number for the endpoint to bind to.
# ":80" is ideal, but may require some special handling due to it being
# a reserved (by the kernel) port.
address: ":6401"
# logInterval appears to be present from before we had formal metrics
# (Deprecated)
# logInterval: "60s"
# options appears to be present from before we had formal metrics
# (Deprecated)
# options:
# - "PayloadsOverZero"
# - "PayloadsOverHundred"
# - "PayloadsOverThousand"
# - "PayloadsOverTenThousand"
########################################
# Debugging/pprof Configuration
########################################
# pprof defines the details needed for the pprof debug endpoint.
# define https://godoc.org/github.com/xmidt-org/webpa-common/v2/server#Basic
# (Optional)
pprof:
# address provides the port number for the endpoint to bind to.
address: ":6402"
########################################
# Metrics Configuration
########################################
# metric defines the details needed for the prometheus metrics endpoint
# define https://godoc.org/github.com/xmidt-org/webpa-common/v2/server#Metric
# (Optional)
metric:
# address provides the port number for the endpoint to bind to. Port 6404
# was chosen because it does not conflict with any of the other prometheus
# metrics or other machines in the xmidt cluster. You may use any port you
# wish.
address: ":6403"
# metricsOptions provides the details needed to configure the prometheus
# metric data. Metrics generally have the form:
#
# {namespace}_{subsystem}_{metric}
#
# so if you use the suggested value below, your metrics are prefixed like
# this:
#
# xmidt_petasos_{metric}
#
# (Optional)
metricsOptions:
# namespace is the namespace of the metrics provided
# (Optional)
namespace: "xmidt"
# subsystem is the subsystem of the metrics provided
# (Optional)
subsystem: "petasos"
########################################
# Logging Related Configuration
########################################
# log configures the logging subsystem details
log:
# file is the name of the most recent log file. If set to "stdout" this
# will log to os.Stdout.
# (Optional) defaults to os.TempDir()
# file: "/var/log/petasos/petasos.log"
file: "stdout"
# level is the logging level to use - INFO, DEBUG, WARN, ERROR
# (Optional) defaults to ERROR
level: "DEBUG"
# maxsize is the maximum file size in MB
# (Optional) defaults to max 100MB
maxsize: 50
# maxage is the maximum number of days to retain old log files
# (Optional) defaults to ignore age limit (0)
maxage: 30
# maxbackups is the maximum number of old log files to retain
# (Optional) defaults to retain all (0)
maxbackups: 10
# json is a flag indicating whether JSON logging output should be used.
# (Optional) defaults to false
json: true
zap:
# OutputPaths is a list of URLs or file paths to write logging output to.
outputPaths:
- stdout
# - /var/log/scytale/scytale.log
# Level is the minimum enabled logging level. Note that this is a dynamic
# level, so calling Config.Level.SetLevel will atomically change the log
# level of all loggers descended from this config.
level: DEBUG
# EncoderConfig sets options for the chosen encoder. See
# zapcore.EncoderConfig for details.
errorOutputPaths:
- stderr
# - /var/log/scytale/scytale.log
# EncoderConfig sets options for the chosen encoder. See
# zapcore.EncoderConfig for details.
encoderConfig:
messageKey: message
levelKey: key
levelEncoder: lowercase
# Encoding sets the logger's encoding. Valid values are "json" and
# "console", as well as any third-party encodings registered via
# RegisterEncoder.
encoding: json
########################################
# Service Discovery Configuration
########################################
# service configures the server for service discovery.
# defined https://godoc.org/github.com/xmidt-org/webpa-common/v2/service/servicecfg#Options
# this is required, consul or fixed must be used.
service:
# defaultScheme, used for the registered servers for communication.
# (Optional) defaults to https
defaultScheme: http
# vnodeCount used for consistent hash calculation github.com/billhathaway/consistentHash.
# number of virtual nodes. should be a prime number
# it is a tradeoff of memory and ~ log(N) speed versus how well the hash spreads
# (Optional) defaults to 211
vnodeCount: 211
# disableFilter disables filtering.
# (Deprecated) does not do anything
# disableFilter: false
# fixed is the list of servers in the datacenter.
# (Optional) default to empty list
fixed:
- http://talaria:6200
# # consul configures consul for service discovery.
# # defined https://godoc.org/github.com/xmidt-org/webpa-common/v2/service/consul#Options
# # (Optional) defaults define https://sourcegraph.com/github.com/hashicorp/consul/-/blob/api/api.go#L347
# consul:
# # client is the configuration needed to connect to consul.
# # defined https://godoc.org/github.com/hashicorp/consul/api#Config
# client:
# # address is the address of the consul client or cluster.
# # (Optional) defaults to 127.0.0.1:8500
# address: "consul0:8500"
#
# # scheme is the scheme to use for api calls to the consul agent.
# # (Optional) defaults to http
# scheme: "http"
#
# # waitTime limits how long a Watch will block.
# # (Optional) defaults to 0s, aka wait forever before update
# waitTime: 30s
#
# # DisableGenerateID disables consul from generating the id.
# # (Optional) defaults to false
# disableGenerateID: true
#
# # DatacenterRetries is the number of attempts to get the datacenters
# # (Optional) defaults to 10
# datacenterRetries: 3
#
# # Registrations is a list of service(s) to register with consul.
# # defined https://godoc.org/github.com/hashicorp/consul/api#AgentServiceRegistration
# # (Optional) defaults to empty list
# registrations:
# - # id is the unique id for the service registration.
# id: "petasos-1"
#
# # name is the service name.
# name: "petasos"
#
# # tags are a list of strings that others talking to consul can use to
# # filter services. These are meant to help in grouping similar
# # services in consul.
# # (Optional) defaults to empty list
# tags:
# - "dev"
# - "docker"
# - "stage=dev"
# - "flavor=docker"
#
# # address tells consul where to contact the service.
# address: "https://petasos"
#
# # scheme tells consul what scheme to use to contact the service.
# # This is used with the address for calls to this server.
# scheme: "http"
#
# # port tells consul what port to use to contact the service. This is
# # used with the address for calls to this server.
# port: 6400
#
# # checks is a list of checks to see if the service is healthy.
# # defined https://godoc.org/github.com/hashicorp/consul/api#AgentServiceCheck
# # (Optional) defaults to empty list
# # Warning: if there are no checks, this service will stay around even
# # when it is in a bad state. This will cause other healthy servers
# # to send requests that will fail.
# checks:
# - # CheckID is a unique id for the check.
# checkID: "petasos-1:http"
#
# # http tells consul to check via http rest request at the url
# # provided.
# http: "http://petasos:6401/health"
#
# # interval is how often to check.
# interval: "30s"
#
# # deregisterCriticalServiceAfter is how long to wait before this
# # service is considered bad.
# deregisterCriticalServiceAfter: "70s"
#
# # Watches is a list of service(s) to watch from consul. The address of the
# # of the services are stored in memory. Upon update, the internal memory is
# # updated.
# # defined https://godoc.org/github.com/xmidt-org/webpa-common/v2/service/consul#Watch
# # (Optional) defaults to empty list
# watches:
# - # service name to watch for updates.
# service: "talaria"
#
# # tags is a list of strings that must be attached to the services
# # being watched.
# # (Optional) defaults to empty list
# tags:
# - "dev"
# - "docker"
#
# # passingOnly determines if only services passing the consul check are returned.
# # (Optional) defaults to false
# passingOnly: true
#
# # allDatacenters determines if there is a watch for all datacenter changes.
# # change this to have the devices hash across all datacenters instead of
# # the single datacenter. The datacenter is known by the consul agent who is
# # aware of which datacenter it is in.
# # (Optional) defaults to false, aka only watch for services in the
# # current datacenter.
# allDatacenters: false
#
# # queryOptions are options for the consul query, used in conjunction
# # with passingOnly and allDatacenters.
# # defined by https://godoc.org/github.com/hashicorp/consul/api#QueryOptions
# # (Optional) defaults to empty struct
# # queryOptions:
# # useCache: true
# tracing provides configuration around traces using OpenTelemetry.
# (Optional). By default, a 'noop' tracer provider is used and tracing is disabled.
tracing:
# provider is the name of the trace provider to use. Currently, otlp/grpc, otlp/http, stdout, jaeger and zipkin are supported.
# 'noop' can also be used as provider to explicitly disable tracing.
provider: "noop"
# skipTraceExport only applies when provider is stdout. Set skipTraceExport to true
# so that trace information is not written to stdout.
# skipTraceExport: true
# endpoint is where trace information should be routed. Applies to otlp, zipkin, and jaegar. OTLP/gRPC uses port 4317 by default.
# OTLP/HTTP uses port 4318 by default.
# endpoint: "http://localhost:9411/api/v2/spans"