Skip to content

Receiver

Same shape as Reporter advisor — discovery snapshot plus choices yield a structured install plan. Two differences: the Receiver actively modifies events in flight (mute / sample), and an optimize flag turns on lossless Compact mode — ~20–40× volume reduction per event.

Example

"Receiver into logging, fluent-bit, optimize=true, ship to Splunk"

# values.yaml
tenx:
  optimize: true
log10x:
  apiKey: lx_live_...
  destination: splunk
  outputHost: splunk-hec.acme.com:8088
  splunkHecToken: xxxx
helm upgrade --install my-receiver log10x/fluent-bit-10x \
  --namespace logging -f values.yaml

# Verify compact output is flowing
kubectl -n logging logs ds/my-receiver -c log10x-sidecar | grep '"log":"~'
  # expect: lines starting with "~<templateHash>,<ts>,..."

More to ask

  • "plain Receiver, no optimize, mock destination, smoke test"
  • "Receiver into obs namespace, ship to CloudWatch"
  • "verify probes for my-receiver"

Prerequisites

A fresh snapshot_id from Discover env.

Tool schema (advanced)
Field Type Required Default Description
snapshot_id string yes ID returned by Discover env. Cached for 30 min.
forwarder string no detected fluentbit / fluentd / filebeat / logstash / otel-collector.
release_name string no my-receiver Helm release name.
namespace string no snapshot's suggested namespace Target namespace.
api_key string no Log10x license key. Required for complete install plan.
destination string no auto, mock if none mock / elasticsearch / splunk / datadog / cloudwatch. Auto-detected from env when exactly one set of log-analyzer creds is present; falls back to mock when nothing is detected; returns "ambiguous" when multiple are detected.
output_host string no Host for non-mock destinations.
splunk_hec_token string when destination=splunk HEC token.
optimize boolean no false Emit compact encoded events (~20–40× volume reduction). Supported on all 5 forwarders.
action string no all install, verify, teardown, all.

Optimize-flag mechanics: the rendered values.yaml sets tenx.optimize: true. The chart wires tenx-optimize.lua and tenx-optimize-unix.conf from the engine image; the engine reads the flag and turns on encodeObjects=true in its regulate config. The plan emits the receiverOptimize=true env var on the forwarder container.

Optimize support: all 5 forwarders — fluentbit, fluentd, filebeat, logstash, otel-collector. Other blockers (missing api_key, filebeat with output.console corrupting the stdout pipe) behave as in the Reporter advisor.