Skip to content

Commit 3ea6129

Browse files
Merge pull request #157 from rh-amarin/HYPERFLEET-1114
HYPERFLEET-1114 - feat: disable tracing by default
2 parents e5a64d4 + 327afb0 commit 3ea6129

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

charts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The following table lists the configurable parameters of the Sentinel chart and
8080
|-----------|-------------|---------|
8181
| `config.sentinel.name` | Sentinel component name (supports Helm templates) | `hyperfleet-sentinel-{{ .Values.config.resourceType }}` |
8282
| `config.debugConfig` | Log the full merged configuration after load | `false` |
83-
| `config.tracingEnabled` | Enable OpenTelemetry tracing | `true` |
83+
| `config.tracingEnabled` | Enable OpenTelemetry tracing | `false` |
8484
| `config.log.level` | Log level: `debug`, `info`, `warn`, `error` | `info` |
8585
| `config.log.format` | Log format: `text`, `json` | `json` |
8686
| `config.log.output` | Log output: `stdout`, `stderr` | `stdout` |

charts/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ monitoring:
235235
for: 1m
236236

237237
tracing:
238-
enabled: true
238+
enabled: false
239239
serviceName: "hyperfleet-sentinel"
240240
# OTLP exporter endpoint (traces go to stdout if not set)
241241
otlpEndpoint: ""

docs/config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ sentinel:
2323
name: hyperfleet-sentinel-clusters
2424

2525
debug_config: false
26-
tracing_enabled: true
26+
tracing_enabled: false
2727

2828
log:
2929
level: "info"
@@ -56,7 +56,7 @@ message_data:
5656
5757
- `sentinel.name` (string, required): Sentinel component name/identifier.
5858
- `debug_config` (bool, optional): Log the merged config after load. Default: `false`.
59-
- `tracing_enabled` (bool, optional): Enable OpenTelemetry distributed tracing. Default: `true`.
59+
- `tracing_enabled` (bool, optional): Enable OpenTelemetry distributed tracing. Default: `false`.
6060

6161
### Logging (`log`)
6262

docs/runbook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Sentinel supports OpenTelemetry distributed tracing, which is useful for debuggi
173173

174174
### Enabling Tracing
175175

176-
Tracing is enabled by default. If not, it can be enabled by setting the `HYPERFLEET_TRACING_ENABLED` environment variable:
176+
Tracing is disabled by default. Enable it by setting the `HYPERFLEET_TRACING_ENABLED` environment variable:
177177

178178
```bash
179179
HYPERFLEET_TRACING_ENABLED=true

0 commit comments

Comments
 (0)