Entity Monitoring API
Learn about monitoring entities using the Entity Monitoring API.
Request
GET {{hub-url}}/api/tenants/{tenantId}/monitoring/_entityMonitoring
Where hub-url is your tenant environment-data-pipeline-hub.reltio.com
.
Parameters | Required | Details |
---|---|---|
entityId | Yes | The entity for which you want to check event details. |
from | No, will be 1 day be default | The %timeinterval; is in milliseconds (UNIX Epoch). Use to check consistency. |
to | No | The %timeinterval; is in milliseconds. (UNIX Epoch). Use to check consistency. |
max | No, will be 10 by default. | The limit of incomplete events returned in the response. |
Response
Returns the event transferred for a tenant ID.
Sample Request
GET {{test-usg-data-pipeline-hub.reltio.com}}/api/tenants/{tenantId}/monitoring/_entityMonitoring
Sample Response
{
"events": [
{
"eventId": "1673605259655_00Ouu74",
"eventType": "ENTITY_CHANGED",
"eventState": "CREATED",
"objectUri": "1vnYEJjM",
"timestamp": 1673605260312
},
{
"eventId": "1673605259655_00Ouu74",
"eventType": "ENTITY_CHANGED",
"eventState": "RECEIVED",
"objectUri": "1vnYEJjM",
"timestamp": 1673605264328
},
{
"eventId": "1673605259655_00Ouu74",
"eventType": "ENTITY_CHANGED",
"eventState": "DATAPIPELINE_PROCESSED",
"objectUri": "1vnYEJjM",
"timestamp": 1673605265107,
"checksum": 117440512,
"data_pipeline_checksum": 117440512,
"data_pipeline_file_name": "tst-01/TestTenant/data-pipeline-hub-db46d669f-vfchg_1673605264835_1.gz"
}
],
"total_events_count": 3,
"total_incomplete_events_count": 0
}
To validate the complete event details, match the timestamp in the event ID and the object URI in your Snowflake UI.