-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add default monitoring configuration as enforced by initTracer with N…
…othing nix patch
- Loading branch information
1 parent
e03c561
commit 84f0c6f
Showing
4 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# this is a default logging configuration of cli | ||
|
||
# global filter; messages must have at least this severity to pass: | ||
minSeverity: Debug | ||
|
||
# here we set up outputs of logging in 'katip': | ||
setupScribes: | ||
- scKind: StdoutSK | ||
scFormat: ScText | ||
scName: text | ||
- scKind: StdoutSK | ||
scFormat: ScJson | ||
scName: json | ||
|
||
# if not indicated otherwise, then log output is directed to this: | ||
defaultScribes: | ||
- - StdoutSK | ||
- text | ||
|
||
# this is probably a bug of parsing, cannot enforce cgBindAddrPrometheus = Nothing | ||
#hasPrometheus: ["",0] | ||
#hasPrometheus: | ||
|
||
# these backends are initialized: | ||
setupBackends: [AggregationBK, KatipBK] | ||
|
||
# if not indicated otherwise, then messages are passed to these backends: | ||
defaultBackends: | ||
- KatipBK | ||
|
||
# more options which can be passed as key-value pairs: | ||
options: | ||
mapSubtrace: | ||
"#messagecounters.monitoring": | ||
subtrace: NoTrace | ||
"#messagecounters.ekgview": | ||
subtrace: NoTrace | ||
"#messagecounters.aggregation": | ||
subtrace: NoTrace | ||
"#messagecounters.graylog": | ||
subtrace: NoTrace | ||
"#messagecounters.katip": | ||
subtrace: NoTrace | ||
"#messagecounters.switchboard": | ||
subtrace: NoTrace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters