DataSphere Jobs API v2, gRPC: ProjectJobService.ReadStdLogs
Статья создана
Обновлена 26 ноября 2024 г.
Returns stream of job logs.
gRPC request
rpc ReadStdLogs (ReadProjectJobStdLogsRequest) returns (stream ReadProjectJobStdLogsResponse)
ReadProjectJobStdLogsRequest
{
"job_id": "string",
"offset": "int64"
}
|
Field |
Description |
|
job_id |
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.
|