mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-20 09:35:11 +08:00
11 lines
192 B
Go
11 lines
192 B
Go
package telemetry
|
|
|
|
func IgnoredPaths() map[string]struct{} {
|
|
ignoredPaths := map[string]struct{}{
|
|
"/api/v1/tags": struct{}{},
|
|
"/api/v1/version": struct{}{},
|
|
}
|
|
|
|
return ignoredPaths
|
|
}
|