Custom device Log Monitoring API - GET analysis job status
Gets the status of the specified log analysis job.
The request produces an application/json
payload.
GET |
|
Authentication
To execute this request, you need the Read log content (LogExport
) permission assigned to your API token. To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
customDeviceId | string |
The Dynatrace entity ID of the required custom device. |
path | required |
jobId | string |
The ID of the required log analysis job. You can retrieve it from the response of the POST analysis job request. |
path | required |
Response
Response codes
Code | Description |
---|---|
200 | Success |
400 | Failed. See the response body for details |
Response body
The LogJobStatusResult object
The status the log analysis job.
Element | Type | Description |
---|---|---|
logAnalysisStatus | string | The status of the log analysis job. |
statusChangeTimestamp | integer | The timestamp of the last status change, in UTC milliseconds. |
logHandlingError | string | The cause of the job failure. A successful job has the |
recordsTotal | integer | The number of analyzed log entries. |
sortableFields | string[] | The map of the log entry sortable fields. |
filterableFields | string[] | The map of the log entry filterable fields. |
{
"logAnalysisStatus": "AGENT_PROCESSING",
"statusChangeTimestamp": 0,
"logHandlingError": "AGENT_VERSION_NOT_SUPPORTING_DOCKER",
"recordsTotal": 0,
"sortableFields": [
"string"
],
"filterableFields": [
"string"
]
}