Skip to main content

GetIndexerLogs

Retrieves the logging output (stdout) of a running indexer.

The output from the indexer must be in a UTF-8 encoding.

Request Parameters

  • indexer_id (required)

    The ID of the indexer to retrieve the logs from.

Response

  • logs (string)

    The logging output of the indexer.

Example Request

{
"jsonrpc": "2.0",
"method": "dyndexer_getIndexerLogs",
"params": [
{
"indexer_id": "indexer-123456"
}
],
}

Example Response

{
"jsonrpc": "2.0",
"result": {
"logs": "..."
}
}