forked from census-ecosystem/opencensus-scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreference.conf
43 lines (34 loc) · 1.1 KB
/
reference.conf
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
opencensus-scala {
trace {
// The probability of which a trace gets sampled, the default is 1/10000
sampling-probability = 0.0001,
exporters {
stackdriver {
// Wether the Stackdriver exporter should be enabled
enabled = false
// The project id of the google cloud project to which the traces should be associated to
project-id = ""
// optional credentials file to authenticate via auth2, if not set the default authentication will be used
credentials-file = null
}
logging {
// Wether the logging exporter should be enabled
enabled = false
}
zipkin {
// Wether the Zipkin exporter should be enabled
enabled = false
// Example http://127.0.0.1:9411/api/v2/spans
v-2-url = ""
// the local service name of the process
service-name = ""
}
instana {
// Wether the Instana exporter should be enabled
enabled = false
// Example http://localhost:42699/com.instana.plugin.generic.trace
agent-endpoint = ""
}
}
}
}