mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-02-09 15:27:11 +00:00
13 lines
165 B
Go
13 lines
165 B
Go
![]() |
package utils
|
||
|
|
||
|
import "strings"
|
||
|
|
||
|
const prefix = "/vmalert/"
|
||
|
|
||
|
func Prefix(path string) string {
|
||
|
if strings.HasPrefix(path, prefix) {
|
||
|
return ""
|
||
|
}
|
||
|
return prefix
|
||
|
}
|