Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/docker-otel-lgtm
Path: blob/main/examples/dotnet/appsettings.json
401 views
1
{
2
"Logging": {
3
"LogLevel": {
4
"Default": "Information"
5
},
6
"OpenTelemetry": {
7
"IncludeFormattedMessage": true,
8
"IncludeScopes": true,
9
"ParseStateValues": true
10
}
11
},
12
"ServiceName": "rolldice",
13
"AllowedHosts": "*",
14
"HistogramAggregation": "explicit",
15
"AspNetCoreInstrumentation": {
16
"RecordException": "true"
17
},
18
"Kestrel": {
19
"Endpoints": {
20
"Http": {
21
"Url": "http://+:8083"
22
}
23
}
24
},
25
"Otlp": {
26
"Endpoint": "http://localhost:4317"
27
}
28
}
29