You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/ninja-workshops/3-opentelemetry-collector-workshops/2-advanced-collector/2-gateway/2-2-configure-agent.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ weight: 2
9
9
**Add the `otlphttp` exporter**: The [**OTLP/HTTP Exporter**](https://docs.splunk.com/observability/en/gdi/opentelemetry/components/otlphttp-exporter.html) is used to send data from the agent to the gateway using the **OTLP/HTTP** protocol.
10
10
11
11
1. Switch to your **Agent terminal** window.
12
-
2. Validate that `gateway-logs.out`, `gateway-metrics.out`, and `gateway-traces.out` files are present in the directory.
12
+
2. Validate that the newly generated `gateway-logs.out`, `gateway-metrics.out`, and `gateway-traces.out` are present in the directory.
13
13
3. Open the `agent.yaml` file in your editor.
14
14
4. Add the `otlphttp` exporter configuration to the `exporters:` section:
Copy file name to clipboardExpand all lines: content/en/ninja-workshops/3-opentelemetry-collector-workshops/2-advanced-collector/2-gateway/_index.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,9 @@ service: # Service configuration
103
103
- file/logs
104
104
```
105
105
106
+
> [!NOTE]
107
+
> When the `gateway` is started it will generate three files: `gateway-traces.out`, `gateway-metrics.out`, and `gateway-logs.out`. These files will eventually contain the telemetry data received by the gateway.
Copy file name to clipboardExpand all lines: content/en/ninja-workshops/3-opentelemetry-collector-workshops/2-advanced-collector/8-routing-data/8-2-pipelines.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,36 +23,36 @@ weight: 2
23
23
24
24
**Add both the `standard` and `security` traces pipelines**:
25
25
26
-
1. **Add the Standard pipeline**: This pipeline processes all spans that do not match the routing rule.
27
-
This pipeline is using `routing` as its receiver. Place it below the existing `traces:` pipeline, keeping its configuration unchanged for now:
26
+
1. **Configure the Security pipeline**: This pipeline will handle all spans that match the routing rule for `security`.
27
+
This uses `routing` as its receiver. Place it below the existing `traces:` pipeline:
28
28
29
29
```yaml
30
-
traces/standard: # Default pipeline for unmatched spans
30
+
traces/security: # New Security Traces/Spans Pipeline
31
31
receivers:
32
32
- routing # Receive data from the routing connector
0 commit comments