We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e8bdac commit 8316a20Copy full SHA for 8316a20
dumper/app/src/main/java/com/google/edwmigration/dumper/application/dumper/metrics/TaskRunMetrics.java
@@ -26,6 +26,8 @@ public class TaskRunMetrics implements TelemetryPayload {
26
27
@JsonProperty private String name;
28
29
+ @JsonProperty private EventType eventType = EventType.TASK_RUN_METRICS;
30
+
31
@JsonProperty private String overallStatus;
32
33
@JsonProperty private Instant measureStartInstance;
@@ -51,8 +53,8 @@ public TaskRunMetrics(
51
53
this.error = error;
52
54
}
55
- public String getId() {
- return name;
56
+ public EventType getEventType() {
57
+ return eventType;
58
59
60
public String getName() {
0 commit comments