List logging destinations
/observability-destination
Requires `logging:view` and the `logging_destinations` plan feature.
Query Parameters
Case-insensitive substring match on the destination's name. LIKE wildcards are matched literally. Max 200 characters.
Response Body
Non-secret provider settings.
3 properties
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' \
-H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
-H 'Content-Type: application/json'const response = await fetch('https://api.elaichi.ai/observability-destination', {
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"
headers = {
"Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
"Content-Type": "application/json",
}
response = requests.get(url, headers=headers)
print(response.json())