Get Info on Jobs in last 24 hours
This API returns the information regarding Jobs in past 24 hours.
The number of jobs that are running, completed successfully, completed with errors or warnings and failed, and the number of events related to those jobs in the previous 24 hours.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- cacheId string
Report dataset cache Id
- offset integer
Denotes the starting point or index from which the requested data begins
- limit integer
Total number of records in the response
- totalRecordCount integer
Total Records in the response
columns object[]
List of columns in the dataset
name stringColumn Name
dataField stringData field name
displayName stringDisplay Name of the column
type stringData type
precision integerDecimal point precision
scale integer- recordsCount integer
Total Records in the rows
- records string[]
Rows containing the output
- failures object
- warnings object
{
"cacheId": "string",
"offset": 0,
"limit": 0,
"totalRecordCount": 0,
"columns": [
{
"name": "string",
"dataField": "string",
"displayName": "string",
"type": "string",
"precision": 0,
"scale": 0
}
],
"recordsCount": 0,
"records": [
"string"
],
"failures": {},
"warnings": {}
}
{
"cacheId": "7c987beabb70475fbe7913fda4fb5ace",
"offset": 0,
"limit": 0,
"totalRecordCount": 7,
"columns": [
{
"name": "sys_rowid",
"dataField": "sys_rowid",
"displayName": "$row_number$",
"type": "Long",
"precision": 64,
"scale": 0
},
{
"name": "Data Source",
"dataField": "Data Source",
"displayName": "Data Source",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "Name",
"dataField": "Name",
"displayName": "Name",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "CurrentCount",
"dataField": "CurrentCount",
"displayName": "CurrentCount",
"type": "Integer",
"precision": 32,
"scale": 0
},
{
"name": "Yesterday",
"dataField": "Yesterday",
"displayName": "Yesterday",
"type": "Integer",
"precision": 32,
"scale": 0
},
{
"name": "Lastweek",
"dataField": "Lastweek",
"displayName": "Lastweek",
"type": "Integer",
"precision": 32,
"scale": 0
}
],
"recordsCount": 7,
"records": [
[
1,
"bdcsrvtest05",
"Completed",
99,
12,
2
],
[
2,
"bdcsrvtest05",
"Failed",
26,
11,
17
],
[
3,
"bdcsrvtest05",
"Killed",
0,
1,
0
],
[
4,
"bdcsrvtest05",
"Running",
5,
0,
0
],
[
5,
"bdcsrvtest05",
"Events",
1,
0,
0
],
[
6,
"bdcsrvtest05",
"CWE",
4,
3,
0
],
[
7,
"bdcsrvtest05",
"CWW",
0,
0,
0
]
],
"failures": {},
"warnings": {}
}
Loading...