mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-22 01:31:40 +08:00
14 lines
311 B
Go
14 lines
311 B
Go
package telemetry
|
|
|
|
func IgnoredPaths() map[string]struct{} {
|
|
ignoredPaths := map[string]struct{}{
|
|
"/api/v1/tags": {},
|
|
"/api/v1/version": {},
|
|
"/api/v1/query_range": {},
|
|
"/api/v2/metrics/query_range": {},
|
|
"/api/v1/services/list": {},
|
|
}
|
|
|
|
return ignoredPaths
|
|
}
|