mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 23:47:12 +00:00
71 lines
1.8 KiB
YAML
71 lines
1.8 KiB
YAML
|
|
##################### SigNoz Configuration Example #####################
|
||
|
|
#
|
||
|
|
# Do not modify this file
|
||
|
|
#
|
||
|
|
|
||
|
|
##################### Instrumentation #####################
|
||
|
|
instrumentation:
|
||
|
|
logs:
|
||
|
|
level: info
|
||
|
|
enabled: false
|
||
|
|
processors:
|
||
|
|
batch:
|
||
|
|
exporter:
|
||
|
|
otlp:
|
||
|
|
endpoint: localhost:4317
|
||
|
|
traces:
|
||
|
|
enabled: false
|
||
|
|
processors:
|
||
|
|
batch:
|
||
|
|
exporter:
|
||
|
|
otlp:
|
||
|
|
endpoint: localhost:4317
|
||
|
|
metrics:
|
||
|
|
enabled: true
|
||
|
|
readers:
|
||
|
|
pull:
|
||
|
|
exporter:
|
||
|
|
prometheus:
|
||
|
|
host: "0.0.0.0"
|
||
|
|
port: 9090
|
||
|
|
|
||
|
|
##################### Web #####################
|
||
|
|
web:
|
||
|
|
# Whether to enable the web frontend
|
||
|
|
enabled: true
|
||
|
|
# The prefix to serve web on
|
||
|
|
prefix: /
|
||
|
|
# The directory containing the static build files.
|
||
|
|
directory: /etc/signoz/web
|
||
|
|
|
||
|
|
##################### Cache #####################
|
||
|
|
cache:
|
||
|
|
# specifies the caching provider to use.
|
||
|
|
provider: memory
|
||
|
|
# memory: Uses in-memory caching.
|
||
|
|
memory:
|
||
|
|
# Time-to-live for cache entries in memory. Specify the duration in ns
|
||
|
|
ttl: 60000000000
|
||
|
|
# The interval at which the cache will be cleaned up
|
||
|
|
cleanupInterval: 1m
|
||
|
|
# redis: Uses Redis as the caching backend.
|
||
|
|
redis:
|
||
|
|
# The hostname or IP address of the Redis server.
|
||
|
|
host: localhost
|
||
|
|
# The port on which the Redis server is running. Default is usually 6379.
|
||
|
|
port: 6379
|
||
|
|
# The password for authenticating with the Redis server, if required.
|
||
|
|
password:
|
||
|
|
# The Redis database number to use
|
||
|
|
db: 0
|
||
|
|
|
||
|
|
##################### SQLStore #####################
|
||
|
|
sqlstore:
|
||
|
|
# specifies the SQLStore provider to use.
|
||
|
|
provider: sqlite
|
||
|
|
# The maximum number of open connections to the database.
|
||
|
|
max_open_conns: 100
|
||
|
|
sqlite:
|
||
|
|
# The path to the SQLite database file.
|
||
|
|
path: /var/lib/signoz/signoz.db
|