Add slug after the namespace, that makes more sense (#3274)

This commit is contained in:
Peter Hedenskog 2021-02-08 08:39:29 +01:00 committed by GitHub
parent 6d0f3eed0b
commit c248f8d736
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ function keyPathFromMessage(message, options, includeQueryParams, alias) {
}
if (options.graphite && options.graphite.addSlugToKey) {
typeParts.splice(1, 0, options.slug);
typeParts.unshift(options.slug);
}
return typeParts.join('.');