Traffic Logging

With the TrafficLogging policy you can configure access logging on every Envoy data-plane belonging to the Mesh. These logs can then be collected by any agent to be inserted into systems like Splunk, ELK and Datadog.

On Universal:

  1. type: Mesh
  2. name: default
  3. logging:
  4. accessLogs:
  5. enabled: true
  6. filePath: "/tmp/access.log"

On Kubernetes:

  1. apiVersion: kuma.io/v1alpha1
  2. kind: Mesh
  3. metadata:
  4. namespace: kuma-system
  5. name: default
  6. spec:
  7. logging:
  8. accessLogs:
  9. enabled: true
  10. filePath: "/tmp/access.log"