Skip to content

Configure a new telemetry data exporter for external monitoring integration

Request

Requires observability::modify permission and Organization observability feature needs to be enabled.

Security
JWTAuthorizer
Bodyapplication/json

Observability Exporter

uidstring
namestringrequired
enabledbooleanrequired
exporterTypestringrequired
Enum:"splunk""http"
collectionTypesArray of strings
Items Enum:"metrics""node_audits""node_events""changes"
descriptionstring
curl -i -X POST \
  https://apidocs.trustgrid.io/_mock/v2/observability-exporter \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "uid": "string",
    "name": "string",
    "enabled": true,
    "exporterType": "splunk",
    "collectionTypes": [
      "metrics"
    ],
    "description": "string"
  }'

Responses

Observability exporter created

Bodyapplication/json
uidstring
Response
{ "uid": "string" }