Skip to content

Commit

Permalink
[refinery] bump app version to 1.17.0 (#188)
Browse files Browse the repository at this point in the history
## Which problem is this PR solving?

- [Refinery 1.18.0 is
released!](https://github.com/honeycombio/refinery/releases/tag/v1.18.0)
- Updates refinery configuration options to be in line with what was
added in refinery 1.17.0 and 1.18.0
- closes #187 

## How to verify that this has the expected result

Installed the Refinery helm chart locally with the new config values 👍
  • Loading branch information
TylerHelmuth authored Oct 13, 2022
1 parent c4c79ca commit 70b1334
Show file tree
Hide file tree
Showing 2 changed files with 23 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.14.0
appVersion: 1.17.0
appVersion: 1.18.0
keywords:
- refinery
- honeycomb
Expand Down
22 changes: 22 additions & 0 deletions charts/refinery/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,20 @@ config:
# Not eligible for live reload.
EnvironmentCacheTTL: "1h"

# QueryAuthToken, if specified, provides a token that must be specified with
# the header "X-Honeycomb-Refinery-Query" in order for a /query request to succeed.
# These /query requests are intended for debugging refinery installations and
# are not typically needed in normal operation.
# Can be specified in the environment as REFINERY_QUERY_AUTH_TOKEN.
# If left unspecified, the /query endpoints are inaccessible.
# Not eligible for live reload.
# QueryAuthToken: "some-random-value"

# AddRuleReasonToTrace causes traces that are sent to Honeycomb to include the field `meta.refinery.reason`.
# This field contains text indicating which rule was evaluated that caused the trace to be included.
# Eligible for live reload.
AddRuleReasonToTrace: true

# 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.
Expand All @@ -133,6 +147,14 @@ config:
AdditionalErrorFields:
- trace.span_id

# AddSpanCountToRoot adds a new metadata field, `meta.span_count` to root spans to indicate
# the number of child spans on the trace at the time the sampling decision was made.
# This value is available to the rules-based sampler, making it possible to write rules that
# are dependent upon the number of spans in the trace.
# Default is false.
# Eligible for live reload.
AddSpanCountToRoot: false

# 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 70b1334

Please sign in to comment.