Skip to content

Commit

Permalink
SNOW-84467: make sure ctx_tags are lowercase in telemetry events
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-stakeda authored and ankit-bhatnagar167 committed Jul 1, 2019
1 parent e2cdbd8 commit 75c74de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public Builder(Class<T> builderClass)
Object val = context.get(key);
if (val != null)
{
tags.put("ctx_" + key, val.toString());
tags.put("ctx_" + key.toLowerCase(), val.toString());
}
}
}
Expand Down

0 comments on commit 75c74de

Please sign in to comment.