Matheus Barbosa
04/22/2024, 5:13 PMJoey Benamy
04/22/2024, 5:17 PMMatheus Barbosa
04/22/2024, 5:32 PMJoey Benamy
04/22/2024, 5:49 PMMalik Diarra (Airbyte)
04/22/2024, 7:12 PMdata
node with a json dictionary containing detailed information about the event. It would be very similar to what we send to customerio. e.g for a job failure:
{
...
"data": {
"workspace": {
"id": "69de1f06-4fc0-44b0-9592-4cb72ef1c211",
"name": "workspace-name",
"url": "<http://link/to/workspace>"
},
"connection": {
"id": "a9b541c1-22a2-44f3-b6b0-98663a82e657",
"name": "connection-name",
"url": "<http://link/to/connection>"
},
"source": {
"id": "196757e2-511d-4430-a0a8-1343869d267d",
"name": "source-name",
"url": "<http://link/to/source>"
},
"destination": {
"id": "47cd577f-088e-49db-8125-204aae6af7b0",
"name": "destination-name",
"url": "<http://link/to/destination>"
},
"jobId": 100,
"startedAt": "1970-01-12T13:46:40Z",
"finishedAt": "1970-01-13T09:13:20Z",
"bytesEmitted": 1000,
"bytesEmittedFormatted": "1000 B",
"bytesCommitted": 9000,
"bytesCommittedFormatted": "8 kB",
"recordsEmitted": 50,
"recordsCommitted": 48,
"errorMessage": "Connection to the source failed",
"durationInSeconds": 70000,
"durationFormatted": "19 hours 26 min",
"success": false
}
...
}
Let me know if this is what you would expect here.Joey Benamy
04/22/2024, 7:14 PMMatheus Barbosa
04/23/2024, 8:05 PM