in sandbox/CWMetricStreamExporter/lambda/main.go [110:128]
func sanitize(text string) string {
replacer := strings.NewReplacer(
" ", "_",
",", "_",
"\t", "_",
"/", "_",
"\\", "_",
".", "_",
"-", "_",
":", "_",
"=", "_",
"“", "_",
"@", "_",
"<", "_",
">", "_",
"%", "_percent",
)
return replacer.Replace(text)
}