mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-31 08:32:00 +08:00

*feat: Update query-service Go version to 1.17 #911 *chore: Upgrade to clickhouse versions v2 #751 *feat: Duration sorting in events table of Trace-filter page #826 *feat: Add grpc status code to traces view #975 *feat: added filtering by resource attributes #881
11 lines
176 B
Go
11 lines
176 B
Go
package telemetry
|
|
|
|
func IgnoredPaths() map[string]struct{} {
|
|
ignoredPaths := map[string]struct{}{
|
|
"/api/v1/tags": {},
|
|
"/api/v1/version": {},
|
|
}
|
|
|
|
return ignoredPaths
|
|
}
|