Skip to content

Commit

Permalink
[refinery] bump app version to 1.17.0 (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
vreynolds authored Sep 19, 2022
1 parent 7911596 commit 23a5cdc
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/refinery/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: refinery
description: Chart to deploy Honeycomb Refinery
type: application
version: 1.13.0
appVersion: 1.16.0
appVersion: 1.17.0
keywords:
- refinery
- honeycomb
Expand Down
15 changes: 15 additions & 0 deletions charts/refinery/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ config:
# immediate sends.
SendDelay: 2s

# BatchTimeout dictates how frequently to send unfulfilled batches. By default
# this will use the DefaultBatchTimeout in libhoney as its value, which is 100ms.
# Eligible for live reload.
BatchTimeout: 1s

# TraceTimeout is a long timer; it represents the outside boundary of how long
# to wait before sending an incomplete trace. Normally traces are sent when the
# root span arrives. Sometimes the root span never arrives (due to crashes or
Expand All @@ -118,6 +123,16 @@ config:
# Not eligible for live reload.
EnvironmentCacheTTL: "1h"

# AdditionalErrorFields should be a list of span fields that should be included when logging
# errors that happen during ingestion of events (for example, the span too large error).
# This is primarily useful in trying to track down misbehaving senders in a large installation.
# The fields `dataset`, `apihost`, and `environment` are always included.
# If a field is not present in the span, it will not be present in the error log.
# Default is ["trace.span_id"].
# Eligible for live reload.
AdditionalErrorFields:
- trace.span_id

# Configure how Refinery peers are discovered and managed
PeerManagement:
# The type should always be redis when deployed to Kubernetes environments
Expand Down

0 comments on commit 23a5cdc

Please sign in to comment.