SymetryML Documentation
Streams

Get stream error log

Return the accumulated list of error messages logged by a running stream's consumer task. Requires the stream to currently be running — a stopped or never-started stream returns a `500`, not an empty log.

GET
/{user}/projects/{project}/streams/{dsName}/errorLog

Return the accumulated list of error messages logged by a running stream's consumer task. Requires the stream to currently be running — a stopped or never-started stream returns a 500, not an empty log.

Authorization

SymetryMLAuth
AuthorizationBearer <token>

HMAC-SHA256 signature-based authentication: requests are signed with your secret key and sent with the Customer-ID, Sym-date, Authorization, Content-MD5 and sym-version headers. See SymetryML REST API Security for the signature algorithm and a complete example.

In: header

Path Parameters

user*string

User/Customer identifier

project*string

Project identifier

dsName*string

Data source name

Response Body

application/json

application/json

curl -X GET "https://example.com/c1/projects/nbra_prj_iris/streams/nbra_ds_sftp_iris/errorLog"

{  "statusCode": 200,  "statusString": "OK",  "values": {    "stringList": {      "values": [        "no error"      ]    }  }}

{  "statusCode": 500,  "statusString": "Generic Exception [java.lang.Exception: No such Stream [nosuchstream] running:kafka_stream_0::c1==prj0]",  "values": {}}