ListTaskInstanceOperationLogs
Retrieve operation logs for task instances in DataWorks by specifying instance ID, date, and pagination parameters. Supports querying logs from the past 31 days.
Instructions
获取任务实例的操作日志列表
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| Date | No | 操作日期(精确到天),默认查询当天。支持查询过去31天内的操作日志。格式为时间戳 | |
| Id | No | 任务实例ID | |
| PageNumber | No | 页码,从1开始,默认为1 | |
| PageSize | No | 每页的条目数,默认为10 | 
Input Schema (JSON Schema)
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "Date": { "description": "操作日期(精确到天),默认查询当天。支持查询过去31天内的操作日志。格式为时间戳" }, "Id": { "description": "任务实例ID" }, "PageNumber": { "description": "页码,从1开始,默认为1" }, "PageSize": { "description": "每页的条目数,默认为10" } }, "type": "object" }