This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
forked from raystack/dex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdex_server.yml
70 lines (53 loc) · 2.12 KB
/
dex_server.yml
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
# HTTP/gRPC server configurations.
service:
# host forms the bind address along with port. In container environments
# it might be necessary to set this to 0.0.0.0 (leaving this config empty
# has the same effect)
host: localhost
# port forms the bind address along with host.
port: 8080
log:
# level can be one of debug, info, warn, error.
# This configuration is case-insensitive.
level: info
# instrumentation/metrics related configurations.
telemetry:
# debug_addr is used for exposing the pprof, zpages & `/metrics` endpoints. if
# not set, all of the above are disabled.
debug_addr: "localhost:8081"
# enable_cpu enables collection of runtime CPU metrics. available in `/metrics`.
enable_cpu: true
# enable_memory enables collection of runtime memory metrics. available via `/metrics`.
enable_memory: true
# sampling_fraction indicates the sampling rate for tracing. 1 indicates all traces
# are collected and 0 means no traces.
sampling_fraction: 1
# service_name is the identifier used in trace exports, NewRelic, etc for the
# dex instance.
service_name: "dex"
# enable_newrelic enables exporting NewRelic instrumentation in addition to the
# OpenCensus.
enable_newrelic: false
# newrelic_api_key must be a valid NewRelic License key.
newrelic_api_key: "dummydummydummydummydummydummydummydummy"
# enable_otel_agent enables the OpenTelemetry Exporter for both traces and views.
enable_otel_agent: false
# otel_agent_addr is the addr of OpenTelemetry Collector/Agent. This is where the
# opene-telemetry exporter will publish the collected traces/views to.
otel_agent_addr: "localhost:8088"
# [Shield](https://github.com/goto/shield) client related configurations
shield:
addr: localhost:8000
# [Entropy](https://github.com/goto/entropy) client related configurations
entropy:
addr: http://g-godata-systems-dex.golabs.io
firehose_version: v0.5.0
# [Siren](https://github.com/goto/siren) client related configurations
siren:
addr: localhost:8020
odin:
addr: localhost:8030
compass:
addr: compass-grpc.integration.golabs.io:80
optimus:
addr: optimus.staging.golabs.io:80