Get Destinations
client.workers.observability.destinations.list(DestinationListParams { account_id, order, orderBy, 2 more } params, RequestOptionsoptions?): SinglePage<DestinationListResponse { configuration, enabled, name, 2 more } >
GET/accounts/{account_id}/workers/observability/destinations
List your Workers Observability Telemetry Destinations.
Security
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
User Service Key
Used when interacting with the Origin CA certificates API. View/change your key.
Example:
Accepted Permissions (at least one required)
Get Destinations
import Cloudflare from 'cloudflare';
const client = new Cloudflare({
apiEmail: process.env['CLOUDFLARE_EMAIL'], // This is the default and can be omitted
apiKey: process.env['CLOUDFLARE_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const destinationListResponse of client.workers.observability.destinations.list({
account_id: 'account_id',
})) {
console.log(destinationListResponse.configuration);
}{
"errors": [
{
"message": "message"
}
],
"messages": [
{
"message": "Successful request"
}
],
"result": [
{
"configuration": {
"destination_conf": "destination_conf",
"headers": {
"foo": "string"
},
"jobStatus": {
"error_message": "error_message",
"last_complete": "last_complete",
"last_error": "last_error"
},
"logpushDataset": "opentelemetry-traces",
"type": "logpush",
"url": "url"
},
"enabled": true,
"name": "name",
"scripts": [
"string"
],
"slug": "slug"
}
],
"success": true
}Returns Examples
{
"errors": [
{
"message": "message"
}
],
"messages": [
{
"message": "Successful request"
}
],
"result": [
{
"configuration": {
"destination_conf": "destination_conf",
"headers": {
"foo": "string"
},
"jobStatus": {
"error_message": "error_message",
"last_complete": "last_complete",
"last_error": "last_error"
},
"logpushDataset": "opentelemetry-traces",
"type": "logpush",
"url": "url"
},
"enabled": true,
"name": "name",
"scripts": [
"string"
],
"slug": "slug"
}
],
"success": true
}