GetAllJobDetails
See javadoc - uk.gov.gchq.gaffer.operation.impl.job.GetAllJobDetails
Available since Gaffer version 1.0.0
Gets all running and historic job details
Required fields
No required fields
Examples
Get all job details
Using this directed graph:
--> 4 <--
/ ^ \
/ | \
1 --> 2 --> 3
\
--> 5
Java
JSON
Full JSON
Python
final GetAllJobDetails operation = new GetAllJobDetails();
{
"class" : "GetAllJobDetails"
}
{
"class" : "uk.gov.gchq.gaffer.operation.impl.job.GetAllJobDetails"
}
g.GetAllJobDetails()
Result:
Java
JSON
JobDetail[jobId=2fb617cf-0c6f-4db4-80fe-ef28f20e5005,user=User[userId=user01,dataAuths=[],opAuths=[]],status=RUNNING,startTime=1665484756560,opChain=OperationChain[GetAllJobDetails]]
[ {
"jobId" : "2fb617cf-0c6f-4db4-80fe-ef28f20e5005",
"user" : {
"userId" : "user01",
"dataAuths" : [ ],
"opAuths" : [ ]
},
"status" : "RUNNING",
"startTime" : 1665484756560,
"opChain" : "OperationChain[GetAllJobDetails]"
} ]