get_edge_logs
Retrieve edge/CDN logs for an entire project in Optimizely DXP, enabling detailed monitoring and analysis across Integration, Preproduction, and Production environments. Requires API credentials and support enablement.
Instructions
Get edge/CDN logs for entire project (BETA - requires enablement by Optimizely support)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | ||
apiSecret | No | ||
environment | No | ||
hours | No | ||
projectId | No | ||
projectName | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": "string"
},
"apiSecret": {
"type": "string"
},
"environment": {
"enum": [
"Integration",
"Preproduction",
"Production"
],
"type": "string"
},
"hours": {
"default": 1,
"type": "number"
},
"projectId": {
"type": "string"
},
"projectName": {
"type": "string"
}
},
"type": "object"
}