Configuration Examples

1. Development

# Development configuration to see all HTTP traffic
# Outputs everything to console for immediate debugging
version: 2

services:
  event_stores:
    - type: stdout
  object_stores:
    - type: stdout

stacks:
  development:
    plugins:
      - type: http_capture
        config:
          level: full       # (none|summary|details|full)
          format: text      # (json|text)

tap:
  direction: all            # (egress|egress-external|egress-internal|ingress|all)
  ignore_loopback: false    # Include localhost traffic
  audit_include_dns: true   # See DNS queries too
  http:
    stack: development

# Test with: curl -X POST https://httpbin.org/post -d "test=data" -H "Content-Type: application/json"

2. API Error Debugging

3. Domain-Specific Monitoring

4. Container-Based Debugging

5. Kubernetes Pod Debugging

6. Security Monitoring

7. API Endpoint Monitoring

8. Method-Based Capture

9. Header-Based Debugging

10. Production with Rulekit Macros

11. Multi-Tenant with Custom Tags

Last updated