Skip to content

Commit 1a7893a

Browse files
committed
example config files
1 parent 23a80bd commit 1a7893a

File tree

3 files changed

+62
-1
lines changed

3 files changed

+62
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,5 @@ configuration.local.json
125125
/src/ClientUI/ClientUI.csproj.user
126126

127127
# docs
128-
/mkdocs/site
128+
/mkdocs/site
129+
*.user
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"Observability": {
3+
4+
"Prometheus": {
5+
"Enabled": false
6+
},
7+
8+
"Jaeger": {
9+
"Enabled": false,
10+
"AgentHost": "localhost",
11+
"AgentPort": 6831
12+
},
13+
14+
"Serilog": {
15+
"Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.File" ],
16+
"MinimumLevel": {
17+
"Default": "Information",
18+
"Override": {
19+
"Microsoft": "Error",
20+
"System": "Error"
21+
}
22+
},
23+
"WriteTo": [
24+
{ "Name": "Console" }
25+
]
26+
}
27+
}
28+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"Api": {
3+
"HostUrl": "http://p2g-api:8080"
4+
},
5+
6+
"Observability": {
7+
8+
"Prometheus": {
9+
"Enabled": false
10+
},
11+
12+
"Jaeger": {
13+
"Enabled": false,
14+
"AgentHost": "localhost",
15+
"AgentPort": 6831
16+
},
17+
18+
"Serilog": {
19+
"Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.File" ],
20+
"MinimumLevel": {
21+
"Default": "Information",
22+
"Override": {
23+
"Microsoft": "Error",
24+
"System": "Error"
25+
}
26+
},
27+
"WriteTo": [
28+
{ "Name": "Console" }
29+
]
30+
}
31+
}
32+
}

0 commit comments

Comments
 (0)