Get a logging destination
/observability-destination/{id}
Requires `logging:view`. Secrets are never included.
Path Parameters
Logging destination id (ldst_…).
Response Body
Non-secret provider settings.
Which slices of the audit trail to forward: tool_call = MCP/tool executions, auth = membership, role, invite and credential events, admin = everything else.
tool_callauthadmin
Datadog site.
us1us3us5euap1
Logging destination id (ldst_…).
Paused destinations keep their config but forward nothing.
okfailednull
Immutable after creation — to switch providers, create a new destination.
datadogsplunk_hecsentinel
curl -X GET 'https://api.elaichi.ai/observability-destination/<id>' \
-H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
-H 'Content-Type: application/json'const response = await fetch('https://api.elaichi.ai/observability-destination/<id>', {
method: 'GET',
headers: {
'Authorization': 'Bearer ' + process.env.ELAICHI_API_TOKEN,
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);import os
import requests
url = "https://api.elaichi.ai/observability-destination/<id>"
headers = {
"Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
"Content-Type": "application/json",
}
response = requests.get(url, headers=headers)
print(response.json())