I used the Infinity plugin to make a call to REST API.
The following is the JSON response with timestamp (epoch) and values.
{
"report": [
{
"timeWindow": {
"entityEpochSecUTC": 1625788800,
"entityTimeDurationSec": "SECOND",
"entityTimeField": "kafka_ingestion_time"
},
"entity": {
"entityType": "hive",
"entityNamespace": "db",
"entityName": "b_table",
"entityInstance": "server-ams4",
"dataAssetRef": "hive.db.b_table-v_1.0"
},
"reportItems": [
{
"checkName": "Check for cc info",
"checkLevel": "Error",
"checkStatus": "Success",
"constraintName": "containsCreditCardNumber",
"constraintStatus": "Success",
"constraintMessage": "string"
}
]
}
]
}
I am unable to get the values under reportItems
. I tried to do reportItems.checkStatus
, reportItems[].checkStatus
and reportItems[1].checkStatus
Apparently reportItems[1].checkStatus
do work in Grafana, however i need it to get all the records and and not just the first record.
Any help would be great.