(shard string, count int64)
| 371 | } |
| 372 | |
| 373 | func (m *kclDatadogMetrics) IncrBytesProcessed(shard string, count int64) { |
| 374 | m.metricsClient.DeltaCountWithTags("processed_bytes", count, []string{"shard:" + shard}) |
| 375 | } |
| 376 | |
| 377 | func (m *kclDatadogMetrics) MillisBehindLatest(shard string, ms float64) { |
| 378 | m.metricsClient.GaugeWithTags("ms_behind_latest_milliseconds", ms, []string{"shard:" + shard}) |
nothing calls this directly
no test coverage detected