mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-12 10:19:10 +08:00
fix(apiserver): remove redundant logs by default (#7375)
This commit is contained in:
parent
fc03303c29
commit
e04e58d8b3
@ -82,6 +82,8 @@ apiserver:
|
|||||||
# List of routes to exclude from request responselogging.
|
# List of routes to exclude from request responselogging.
|
||||||
excluded_routes:
|
excluded_routes:
|
||||||
- /api/v1/health
|
- /api/v1/health
|
||||||
|
- /api/v1/version
|
||||||
|
- /
|
||||||
|
|
||||||
|
|
||||||
##################### TelemetryStore #####################
|
##################### TelemetryStore #####################
|
||||||
|
@ -43,6 +43,8 @@ func newConfig() factory.Config {
|
|||||||
Logging: Logging{
|
Logging: Logging{
|
||||||
ExcludedRoutes: []string{
|
ExcludedRoutes: []string{
|
||||||
"/api/v1/health",
|
"/api/v1/health",
|
||||||
|
"/api/v1/version",
|
||||||
|
"/",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user