mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00: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
|
|
}
|