apiVersion: apps/v1 kind: Deployment metadata: name: busybox-logs-deployment labels: app: busybox spec: replicas: 1 selector: matchLabels: app: busybox template: metadata: labels: app: busybox annotations: io.opentelemetry.discovery.logs.lazybox/enabled: "true" io.opentelemetry.discovery.logs.lazybox/config: | operators: - id: some type: add field: attributes.tag value: hints-lazybox io.opentelemetry.discovery.logs.busybox/enabled: "true" io.opentelemetry.discovery.logs.busybox/config: | operators: - id: some type: add field: attributes.tag value: hints-busybox spec: containers: - name: busybox image: busybox args: - /bin/sh - -c - while true; do echo "otel logs from busybox at $(date +%H:%M:%S)" && sleep 5s; done - name: lazybox image: busybox args: - /bin/sh - -c - while true; do echo "otel logs from lazybox at $(date +%H:%M:%S)" && sleep 25s; done