Get Deriver Logs
GET/api/v1/derivers/:deriverId/logs
Get Deriver Logs
Request
Path Parameters
deriverId integerrequired
Possible values: > 0
ID
of the Deriver
Responses
- 200
- 400
- 401
- 404
200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
logsPerPod
object[]
required
podName stringrequired
flowLogs stringrequired
processorLogs stringrequired
{
"logsPerPod": [
{
"podName": "string",
"flowLogs": "string",
"processorLogs": "string"
}
]
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
status stringrequired
Possible values: [Validation Error
]
errors
object[]
required
error stringrequired
location stringrequired
Possible values: [body
, query
, path
, headers
]
{
"status": "Validation Error",
"errors": [
{
"error": "string",
"location": "body"
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
status stringrequired
Possible values: [Unauthorized
]
{
"status": "Unauthorized"
}
404
- application/json
- Schema
- Example (from schema)
Schema
status stringrequired
{
"status": "string"
}
Loading...