mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 23:47:12 +00:00
10 lines
156 B
Go
10 lines
156 B
Go
|
|
package telemetry
|
||
|
|
|
||
|
|
func IgnoredPaths() map[string]struct{} {
|
||
|
|
ignoredPaths := map[string]struct{}{
|
||
|
|
"/api/v1/tags": struct{}{},
|
||
|
|
}
|
||
|
|
|
||
|
|
return ignoredPaths
|
||
|
|
}
|