[#493] cmd/node: Add profiler section to config

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2021-06-01 14:12:25 +03:00 committed by Alex Vanin
parent 922d29ff88
commit 561c809fa5
5 changed files with 88 additions and 1 deletions

View file

@ -1 +1,4 @@
NEOFS_LOGGER_LEVEL=debug
NEOFS_LOGGER_LEVEL=debug
NEOFS_PROFILER_ADDRESS=127.0.0.1:6060
NEOFS_PROFILER_SHUTDOWN_TIMEOUT=15s

View file

@ -1,5 +1,9 @@
{
"logger": {
"level": "debug"
},
"profiler": {
"address": "127.0.0.1:6060",
"shutdown_timeout": "15s"
}
}

View file

@ -1,2 +1,5 @@
logger:
level: debug
profiler:
address: 127.0.0.1:6060
shutdown_timeout: 15s