[#1602] config: Enable metrics
and profiler
services with a flag
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
12dc5c3395
commit
ac46d1a11f
16 changed files with 53 additions and 15 deletions
|
@ -82,9 +82,11 @@ NEOFS_IR_CONTRACTS_ALPHABET_DOBRO=e6122b65d45c8feeb04455d67814394c147ed4d1
|
|||
NEOFS_IR_CONTRACTS_ALPHABET_YEST=cdbca5cb5d48a4472923844d0e3ee6328cf86d38
|
||||
NEOFS_IR_CONTRACTS_ALPHABET_ZHIVETE=f584699bc2ff457d339fb09f16217042c1a42101
|
||||
|
||||
NEOFS_IR_PROFILER_ENABLED=true
|
||||
NEOFS_IR_PROFILER_ADDRESS=localhost:6060
|
||||
NEOFS_IR_PROFILER_SHUTDOWN_TIMEOUT=30s
|
||||
|
||||
NEOFS_IR_METRICS_ENABLED=true
|
||||
NEOFS_IR_METRICS_ADDRESS=localhost:9090
|
||||
NEOFS_IR_METRICS_SHUTDOWN_TIMEOUT=30s
|
||||
|
||||
|
|
|
@ -124,10 +124,12 @@ contracts:
|
|||
zhivete: f584699bc2ff457d339fb09f16217042c1a42101 # Optional: override address of zhivete contract in sidechain
|
||||
|
||||
profiler:
|
||||
enabled: true
|
||||
address: localhost:6060 # Endpoint for application pprof profiling; disabled by default
|
||||
shutdown_timeout: 30s # Timeout for profiling HTTP server graceful shutdown
|
||||
|
||||
metrics:
|
||||
enabled: true
|
||||
address: localhost:9090 # Endpoint for application prometheus metrics; disabled by default
|
||||
shutdown_timeout: 30s # Timeout for metrics HTTP server graceful shutdown
|
||||
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
NEOFS_LOGGER_LEVEL=debug
|
||||
|
||||
NEOFS_PROFILER_ENABLED=true
|
||||
NEOFS_PROFILER_ADDRESS=localhost:6060
|
||||
NEOFS_PROFILER_SHUTDOWN_TIMEOUT=15s
|
||||
|
||||
NEOFS_METRICS_ENABLED=true
|
||||
NEOFS_METRICS_ADDRESS=localhost:9090
|
||||
NEOFS_METRICS_SHUTDOWN_TIMEOUT=15s
|
||||
|
||||
|
|
|
@ -3,10 +3,12 @@
|
|||
"level": "debug"
|
||||
},
|
||||
"profiler": {
|
||||
"enabled": true,
|
||||
"address": "localhost:6060",
|
||||
"shutdown_timeout": "15s"
|
||||
},
|
||||
"metrics": {
|
||||
"enabled": true,
|
||||
"address": "localhost:9090",
|
||||
"shutdown_timeout": "15s"
|
||||
},
|
||||
|
|
|
@ -2,10 +2,12 @@ logger:
|
|||
level: debug # logger level: one of "debug", "info" (default), "warn", "error", "dpanic", "panic", "fatal"
|
||||
|
||||
profiler:
|
||||
enabled: true
|
||||
address: localhost:6060 # endpoint for Node profiling
|
||||
shutdown_timeout: 15s # timeout for profiling HTTP server graceful shutdown
|
||||
|
||||
metrics:
|
||||
enabled: true
|
||||
address: localhost:9090 # endpoint for Node metrics
|
||||
shutdown_timeout: 15s # timeout for metrics HTTP server graceful shutdown
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue