Skip to main content
Monitoring & Collection/Logging
POSTLoggingSince 1.0SynchronousAuth Required

IngestLog

Ingest a single log entry into the trace log pipeline

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

Body Fields

  • platformUuidStringRequired

    UUID of the platform to ingest this log entry into

    Example: plat-001-abc

  • serviceNameStringRequired

    Name of the service emitting this log entry

    Example: payment-service

  • levelStringRequired

    Severity level of the log entry

    Example: info

  • messageStringRequired

    Human-readable log message content

    Example: Order 9912 processed successfully

  • sourceStringRequired

    Log source path or stream identifier

    Example: stdout

Responses

200 OK

On success, this API returns an empty JSON object {}.

Endpoint

POST/api/v1/logging/traces/ingest

/api/v1/logging/traces/ingest

Operation ID

IngestLog

Permalink

Request Example

curl -X POST '{host}/api/v1/logging/traces/ingest' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"platformUuid":"plat-001-abc","serviceName":"payment-service","level":"info","message":"Order 9912 processed successfully","source":"stdout","traceId":"abc123def456","metadata":"(nested object)"}'

Response Example

200
{}

Change History

This API has no change history records yet.

View all change history