22 lines
742 B
Text
22 lines
742 B
Text
{
|
|
// The type of "log reader" to use for retrieving log messages. The chosen
|
|
// reader needs to be configured using its own dedicated parameters.
|
|
"reader" : "file",
|
|
|
|
// File reader parameters
|
|
"file": {
|
|
// The path to the file the "file" reader should read logs from.
|
|
"path" : "/var/log/tlog-session-recordings.json",
|
|
|
|
// The recording id of the recording the "file" reader should seek to
|
|
// for playback.
|
|
// "match" : ""
|
|
},
|
|
|
|
// If true, ignore any keyboard-generated signals and the quit key.
|
|
// "persist" : false,
|
|
|
|
// If true, ignore missing (dropped, or lost) log messages.
|
|
// Otherwise report an error and abort when a message is missing.
|
|
"lax" : false
|
|
}
|