We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b2a23e commit 4880997Copy full SHA for 4880997
1 file changed
report_github_metrics.rb
@@ -42,7 +42,7 @@ def submit_metrics(metrics, datadog_client, metric_prefix)
42
metric = metric_prefix + metric
43
puts "#{metric}, #{value}, #{tags}"
44
datadog_client.emit_point(metric, value, :tags => tags, :type => 'gauge')
45
- datadog_client.emit_point(metric + ".count", 1, :tags => tags, :type => 'counter')
+ datadog_client.emit_point(metric + ".count", 1, :tags => tags, :type => 'count')
46
end
47
48
0 commit comments