Add print line after finishing upload of DD metrics

This commit is contained in:
David Dworken 2023-10-21 17:14:49 -07:00
parent b6885cca98
commit ff0d2c34d6
No known key found for this signature in database

View File

@ -48,6 +48,7 @@ func main() {
for testId, count := range NUM_TEST_RETRIES {
GLOBAL_STATSD.Distribution("test_retry_count", float64(count), []string{"test:" + testId, "os:" + runtime.GOOS}, 1.0)
}
fmt.Printf("Uploaded data about %d tests to datadog\n", len(NUM_TEST_RETRIES))
}
type eventHandler struct{}