ListDIJobMetrics
Monitor and analyze data integration task performance on DataWorks MCP Server by querying specific metrics for given task instances within a defined time range.
Instructions
查看数据集成同步任务运行指标
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| DIJobId | No | 实例ID | |
| EndTime | No | 结束时间 | |
| MetricName | Yes | 需要查询的指标列表 | |
| StartTime | No | 起始时间 |
Input Schema (JSON Schema)
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "DIJobId": { "description": "实例ID" }, "EndTime": { "description": "结束时间" }, "MetricName": { "description": "需要查询的指标列表", "items": { "type": "string" }, "type": "array" }, "StartTime": { "description": "起始时间" } }, "required": [ "MetricName" ], "type": "object" }