diff options
author | Gibheer <gibheer+git@zero-knowledge.org> | 2019-01-07 15:50:55 +0100 |
---|---|---|
committer | Gibheer <gibheer+git@zero-knowledge.org> | 2019-01-07 15:50:55 +0100 |
commit | 3b222e06ed63050cb99020d9d74ca0f1e52959d2 (patch) | |
tree | 694fe5ba416682cceed76652d7534e746fc0e926 /moncheck.conf.example | |
parent | 9ea6b0f3436651b2963572e719f534da96f48098 (diff) |
moncheck - make workers configurable
The default worker count was set to 25, which might be too much
depending on the amount of cores available. Now make the default 25 and
let people decide on how many they want to use.
Diffstat (limited to 'moncheck.conf.example')
-rw-r--r-- | moncheck.conf.example | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/moncheck.conf.example b/moncheck.conf.example index 2e8991d..6d8a69a 100644 --- a/moncheck.conf.example +++ b/moncheck.conf.example @@ -1,5 +1,12 @@ { "db": "user=moncheck dbname=monzero", "timeout": "5s", - "wait": "5s" + "wait": "5s", + "path": [ + "/bin", + "/sbin", + "/usr/bin", + "/usr/sbin" + ], + "workers": 25 } |