Skip to content

Commit db1a531

Browse files
committed
chore: add dd tracking for missing timeline event item (#13932)
1 parent 8944018 commit db1a531

File tree

1 file changed

+2
-0
lines changed
  • airbyte-webapp/src/pages/connections/ConnectionTimelinePage/components

1 file changed

+2
-0
lines changed

airbyte-webapp/src/pages/connections/ConnectionTimelinePage/components/EventLineItem.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { InferType } from "yup";
33
import { Box } from "components/ui/Box";
44

55
import { ConnectionEvent } from "core/api/types/AirbyteClient";
6+
import { trackError } from "core/utils/datadog";
67
import { useExperiment } from "hooks/services/Experiment";
78

89
import { ClearEventItem } from "./ClearEventItem";
@@ -93,5 +94,6 @@ export const EventLineItem: React.FC<{ event: ConnectionEvent | InferType<typeof
9394
);
9495
}
9596

97+
trackError(new Error("Invalid connection timeline event"), { event });
9698
return null;
9799
};

0 commit comments

Comments
 (0)