Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

document transmit_decoded_records configuration option #307

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -56,6 +56,7 @@ For ease of installation and operation, run Fleet Telemetry on Kubernetes or a s
"json_log_enable": bool,
"namespace": string - kafka topic prefix,
"reliable_ack": bool - for use with reliable datastores, recommend setting to true with kafka,
"transmit_decoded_records": bool - if true, transmit JSON to dispatchers instead of proto.
"monitoring": {
"prometheus_metrics_port": int,
"profiler_port": int,
1 change: 1 addition & 0 deletions config/config.go
Original file line number Diff line number Diff line change
@@ -90,6 +90,7 @@ type Config struct {
Records map[string][]telemetry.Dispatcher `json:"records,omitempty"`

// TransmitDecodedRecords if true decodes proto message before dispatching it to supported datastores
// when vehicle configuration has prefer_typed set to true, enum fields will have a prefix
TransmitDecodedRecords bool `json:"transmit_decoded_records,omitempty"`

// MetricCollector collects metrics for the application