Made slow queries logging disabled by default.
This commit is contained in:
parent
3e9e7178bc
commit
08c0f09bad
2 changed files with 8 additions and 2 deletions
|
|
@ -855,7 +855,11 @@ config :pleroma, ConcurrentLimiter, [
|
|||
]
|
||||
|
||||
config :pleroma, :telemetry,
|
||||
slow_queries_logging: [exclude_sources: [nil, "oban_jobs"], min_duration: 500_000]
|
||||
slow_queries_logging: [
|
||||
enabled: false,
|
||||
min_duration: 500_000,
|
||||
exclude_sources: [nil, "oban_jobs"]
|
||||
]
|
||||
|
||||
# Import environment specific config. This must remain at the bottom
|
||||
# of this file so it overrides the configuration defined above.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue