Skip to content

Commit

Permalink
adopt redaction processor into our distro
Browse files Browse the repository at this point in the history
  • Loading branch information
jvoravong committed May 3, 2024
1 parent e5d06c5 commit 498f582
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### 🚀 New components 🚀

- (Splunk) Add Redaction processor ([#4766}(https://github.com/signalfx/splunk-otel-collector/pull/4766))

## v0.99.0

### 🛑 Breaking changes 🛑
Expand Down
3 changes: 2 additions & 1 deletion docs/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,13 @@ The distribution offers support for the following components.
| [memorylimiter](https://github.com/open-telemetry/opentelemetry-collector/blob/main/processor/memorylimiterprocessor) | [beta] |
| [metricstransform](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/metricstransformprocessor) | [beta] |
| [probabilisticsampler](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/probabilisticsamplerprocessor) | [beta] |
| [redaction](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/redactionprocessor) | [beta] |
| [resourcedetection](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/resourcedetectionprocessor) | [beta] |
| [resource](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/resourceprocessor) | [beta] |
| [routing](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/routingprocessor) | [beta] |
| [span](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/spanprocessor) | [alpha] |
| [tail_sampling](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/tailsamplingprocessor) | [beta] |
| [timestamp](../pkg/processor/timestampprocessor) | [in development] |
| [timestamp](../pkg/processor/timestampprocessor) | [in development] |
| [transform](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/transformprocessor) | [alpha] |

</div>
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ require (
github.com/open-telemetry/opentelemetry-collector-contrib/processor/logstransformprocessor v0.99.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/metricstransformprocessor v0.99.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/probabilisticsamplerprocessor v0.99.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/redactionprocessor v0.99.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourcedetectionprocessor v0.99.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor v0.99.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/routingprocessor v0.99.0
Expand Down
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1349,6 +1349,7 @@ github.com/open-telemetry/opentelemetry-collector-contrib/processor/metricstrans
github.com/open-telemetry/opentelemetry-collector-contrib/processor/metricstransformprocessor v0.99.0/go.mod h1:+Z4a3Yt3PjqtGI5pdNmQ4AyvdB7aFxBoq2sjN1RJNVQ=
github.com/open-telemetry/opentelemetry-collector-contrib/processor/probabilisticsamplerprocessor v0.99.0 h1:HH+sX8uN+JkqCOuoA/4FVqqGdJS93NSicB/PgTLELZM=
github.com/open-telemetry/opentelemetry-collector-contrib/processor/probabilisticsamplerprocessor v0.99.0/go.mod h1:BwSpsu4+Xk3+Le4sqjs6eVZd5xJ+dZ0mZqoX9+sBbUc=
github.com/open-telemetry/opentelemetry-collector-contrib/processor/redactionprocessor v0.99.0/go.mod h1:Dw7Gw4gdxwNWHV9aB+DrnyDNWN6ujJsm00+O3jhN9bc=
github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourcedetectionprocessor v0.99.0 h1:Z9wCwf4PV0RLqYAMhM7AXKmdF7lHEq/yElEgTYV24Ow=
github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourcedetectionprocessor v0.99.0/go.mod h1:ZEfo92OtOsUC8A85caKlUWP3sXULpAfJphxAJYAmVXA=
github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor v0.99.0 h1:MfB6sf60dyDu1x3Zvo+FC95lUa2DXBJ0tnnTTho426Y=
Expand Down
1 change: 1 addition & 0 deletions internal/components/components_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ func TestDefaultComponents(t *testing.T) {
"memory_limiter",
"metricstransform",
"probabilistic_sampler",
"redaction",
"resource",
"resourcedetection",
"routing",
Expand Down

0 comments on commit 498f582

Please sign in to comment.