Administrator
- Administrator
- All Products
<server URI>/sisvc/monitor/v1/statistics/dataflows/<dataflow ID>
Parameter
| Type
| Required
| Description
|
---|---|---|---|
intervals
| Integer
| Yes
| Time, in seconds, to display statistics for a streaming ingestion job. For example, if you specify 30 seconds, the response displays job statistics for the last 30 seconds.
|
overall
| Boolean
| No
| Displays the statistics from the time the job is deployed.
|
POST https://usw1-ing.dm2-us.informaticacloud.com/sisvc/monitor/v1/statistics/dataflows/7f1daca9-3983-4677-930f-a9529802c56b?intervals=30&overall=true Content-Type: application/json Accept:application/json IDS-SESSION-ID:2l0oeVx22Rujiej7yTokmT
Parameter
| Type
| Description
|
---|---|---|
dataflowId
| String
| ID of the
streaming ingestion and replication job.
|
dataflowRunId
| Integer
| Run ID of the
streaming ingestion and replication job.
|
startTime
| Integer
| Start time of the streaming ingestion job, in milliseconds.
|
stopTime
| Integer
| Stop time of the streaming ingestion job, in milliseconds.
|
inMessages
| Integer
| The number of messages that arrive at a node. A node is a source, transformation, or target, that is used in the streaming ingestion task.
The value is zero for a source node.
|
outMessages
| Integer
| The number of messages that transfer from a node.
The value is zero for a target node.
|
inBytes
| Integer
| The total size of incoming messages in bytes.
The value is zero for a source node.
|
outBytes
| Integer
| The total size of outgoing messages in bytes.
The value is zero for a target node.
|
nodes
| Array
| Information about streaming data in the source and the target used in the task.
|
intervals
| Integer
| The statistics of the job for the time interval you specify in the request. Applies when you set an interval.
|
{ "dataflowId": "7f1daca9-3983-4677-930f-a9529802c56b", "dataflowName": "newnew", "dataflowVersion": 1, "dataflowRunId": 54231, "snapshotCount": 171, "overall": { "dataflowId": "7f1daca9-3983-4677-930f-a9529802c56b", "dataflowName": "newnew", "dataflowVersion": 1, "dataflowRunId": 54231, "traits": {}, "interval": 6007, "startTime": 1646649995000, "stopTime": 1646656000000, "nodes": [ { "name": "newnew_newnew_source", "id": "17a51cdf-1f27-481e-81b8-d2e8ff60ec28", "inMessages": 0, "outMessages": 0, "inBytes": 0, "outBytes": 0, "nodeType": "Unknown" }, { "name": "newnew_newnew_target", "id": "c30d6db4-6a3b-40d3-adfb-88779a972098", "inMessages": 0, "outMessages": 0, "inBytes": 0, "outBytes": 0, "nodeType": "Unknown" } ] }, "intervals": { "30": { "dataflowId": "7f1daca9-3983-4677-930f-a9529802c56b", "dataflowName": "newnew", "dataflowVersion": null, "dataflowRunId": 54231, "traits": {}, "interval": 30, "startTime": 1646655972683, "stopTime": 1646656002683, "nodes": [] } } }