DataSphere Jobs API v2, gRPC: ProjectJobService.ReadStdLogs
Written by
Updated at October 17, 2024
Returns stream of job logs.
gRPC request
rpc ReadStdLogs (ReadProjectJobStdLogsRequest) returns (stream ReadProjectJobStdLogsResponse)
ReadProjectJobStdLogsRequest
{
"jobId": "string",
"offset": "int64"
}
Field |
Description |
jobId |
string ID of the job. |
offset |
int64 Log offset. |
ReadProjectJobStdLogsResponse
{
"logs": [
{
"content": "bytes",
"type": "Type"
}
],
"offset": "int64"
}
Field |
Description |
logs[] |
|
offset |
int64 Log offset. |
StdLog
Field |
Description |
content |
bytes Log contents. |
type |
enum Type Log type.
|