Skip to content

Cloud Datum Stream Poll Task List

Show Cloud Datum Stream Poll Task entities matching a search filter.

Usage

s10k cloud-integrations datum-streams poll-tasks list
    [-stream=datumStreamId[,datumStreamId...]]...
    [-node=nodeId[,nodeId...]]...
    [-state=jobState[,jobState...]]...
    [-M=max]
    [-O=<resultOffset>]
    [-mode=<displayMode>]
Option Long Version Description
-stream= --stream-id= the datum stream ID(s) to show tasks for
-node= --node-id= the node ID of datum streams to show tasks for (matching against datum stream objectId values)
-state= --job-state= the claimable job state names to show tasks for, for example Queued or Completed
-M= --max= the maximum number of results to return
-O= --offset= start returning results from this offset, 0 being the first result
-mode= --display-mode= the format to display the data as, one of CSV, JSON, or PRETTY; defaults to PRETTY

Output

A listing of matching poll tasks.

Examples

s10k cloud-integrations datum-streams poll-tasks list

You can use c2c instead of cloud-integrations and ds instead of datum-streams and polls instead of poll-tasks:

s10k c2c ds polls list
+-----------------+-------+----------------------+----------------------+--------------------------------------------------------------------------------+
| Datum Stream ID | State | Execute At           | Start At             | Message                                                                        |
+-----------------+-------+----------------------+----------------------+--------------------------------------------------------------------------------+
|            1000 | q     | 2026-06-26T07:00:00Z | 2026-06-26T06:45:00Z |                                                                                |
+-----------------+-------+----------------------+----------------------+--------------------------------------------------------------------------------+
|            1001 | q     | 2026-06-26T07:01:00Z | 2026-06-17T20:45:00Z | Error executing poll task. 429 Too Many Requests on GET request for            |
|                 |       |                      |                      | "https://api.enphaseenergy.com/api/v4/systems/0000000/telemetry/production_mic |
|                 |       |                      |                      | ro": "{"message":"Too Many Requests","details":"Usage limit exceeded for plan  |
|                 |       |                      |                      | Kilowatt","code":429}"                                                         |
+-----------------+-------+----------------------+----------------------+--------------------------------------------------------------------------------+
Datum Stream ID,State,Execute At,Start At,Message
1000,q,2026-06-26T07:30:00Z,2026-06-26T07:15:00Z,
1001,q,2026-06-26T07:01:00Z,2026-06-17T20:45:00Z,"Error executing poll task. 429 Too Many Requests on GET request for ""https://api.enphaseenergy.com/api/v4/systems/0000000/telemetry/production_micro"": ""{""message"":""Too Many Requests"",""details"":""Usage limit exceeded for plan Kilowatt"",""code"":429}"""
[
    {
        "datumStreamId": 1000,
        "state": "q",
        "executeAt": "2026-06-26 07:30:00Z",
        "startAt": "2026-06-26 07:15:00Z"
    },
    {
        "datumStreamId": 1001,
        "state": "q",
        "executeAt": "2026-06-26 07:01:00Z",
        "startAt": "2026-06-17 20:45:00Z",
        "message": "Error executing poll task.",
        "serviceProperties": {
            "message": "429 Too Many Requests on GET request for \"https://api.enphaseenergy.com/api/v4/systems/0000000/telemetry/production_micro\": \"{\"message\":\"Too Many Requests\",\"details\":\"Usage limit exceeded for plan Kilowatt\",\"code\":429}\"",
            "errorCount": 16
        }
    }
]