Source File
sanitize.go
Belonging Package
contrib.go.opencensus.io/exporter/stackdriver
package stackdriver
import (
)
const labelKeySizeLimit = 100
func ( string) string {
if len() == 0 {
return
}
if len() > labelKeySizeLimit {
= [:labelKeySizeLimit]
}
= strings.Map(sanitizeRune, )
if unicode.IsDigit(rune([0])) {
= "key_" +
}
if [0] == '_' {
= "key" +
}
return
}
return '_'
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |