We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f143c8f commit f52bfb6Copy full SHA for f52bfb6
airbyte-metrics/reporter/src/main/java/io/airbyte/metrics/reporter/ToEmit.java
@@ -52,7 +52,7 @@ public enum ToEmit {
52
NUM_ABNORMAL_SCHEDULED_SYNCS(countMetricEmission(() -> {
53
final var count = ReporterApp.configDatabase.query(MetricQueries::numOfJobsNotRunningOnSchedule);
54
MetricClientFactory.getMetricClient().gauge(OssMetricsRegistry.NUM_ABNORMAL_SCHEDULED_SYNCS, count);
55
- })),
+ }), 1, TimeUnit.HOURS),
56
OVERALL_JOB_RUNTIME_IN_LAST_HOUR_BY_TERMINAL_STATE_SECS(countMetricEmission(() -> {
57
final var times = ReporterApp.configDatabase.query(MetricQueries::overallJobRuntimeForTerminalJobsInLastHour);
58
for (Pair<JobStatus, Double> pair : times) {
0 commit comments