Documentation
DrDroid Docs 2025
method: POST url: https://api.example.com/endpoint headers: Content-Type: application/json Authorization: Bearer ${API_KEY} body: | { "key": "value", "timestamp": "${CURRENT_TIMESTAMP}" }
#!/bin/bash # Get current CPU load LOAD=$(uptime | awk -F'[a-z]:' '{ print $2 }') # Send to monitoring system curl -X POST https://monitor.example.com/api/events \ -H "Authorization: Bearer ${API_KEY}" \ -d "{\"load\": \"$LOAD\"}"
action: kubernetes execute: delete-pod namespace: ${NAMESPACE} pod: ${POD_NAME}
action: aws service: s3 command: ls s3://${BUCKET_NAME}/