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
`otelcol.receiver.awss3` receives traces previously stored in S3 by the [AWS S3 Exporter](./otelcol.exporter.awss3.md).
15
+
`otelcol.receiver.awss3` receives traces stored in S3 by the [AWS S3 Exporter](./otelcol.exporter.awss3.md).
16
16
17
17
{{< admonition type="warning" >}}
18
18
`otelcol.receiver.awss3` is a wrapper over the upstream OpenTelemetry Collector [`awss3`][] receiver.
@@ -24,9 +24,9 @@ Bug reports or feature requests will be redirected to the upstream repository, i
24
24
The receiver has two modes of operation:
25
25
26
26
-**Time Range Mode** - Specify start and end to fetch data from a specific time range.
27
-
-**SQS Message Mode** - Subscribe to SQS messages to process new objects as they arrive.
27
+
-**SQS Message Mode** - Subscribe to SQS messages to process objects as they arrive.
28
28
29
-
The receiver supports following encodings:
29
+
The receiver supports the following encodings:
30
30
31
31
- otlp_json (OpenTelemetry Protocol format represented as json) with a suffix of `.json`
32
32
- otlp_proto (OpenTelemetry Protocol format represented as Protocol Buffers) with a suffix of `.binpb`
@@ -66,10 +66,10 @@ You can use the following arguments with `otelcol.receiver.awss3`:
66
66
|`start_time`|`string`| The time at which to start retrieving data. || Required if fetching by time. |
67
67
|`end_time`|`string`| The time at which to stop retrieving data. || Required if fetching by time. |
68
68
69
-
The `start_time` and `end_time` fields time format is either RFC3339, `YYYY-MM-DD HH:MM` or simply `YYYY-MM-DD`, in which case the time is assumed to be`00:00`.
69
+
The `start_time` and `end_time` fields use one of the following time formats: RFC3339, `YYYY-MM-DD HH:MM`, or `YYYY-MM-DD`. When using `YYYY-MM-DD`, the time defaults to`00:00`.
70
70
71
71
{{< admonition type="note" >}}
72
-
Time-based configuration (`start_time` and `end_time` arguments) cannot be combined together with [`sqs`][] block.
72
+
Time-based configuration (`start_time` and `end_time` arguments) can't be combined together with [`sqs`][] block.
73
73
74
74
[`sqs`]: #sqs
75
75
@@ -95,7 +95,7 @@ You can use the following blocks with `otelcol.receiver.awss3`:
95
95
96
96
{{< badge text="Required" >}}
97
97
98
-
The `s3downloader` block contains AWS S3 downloader related config to control things like bucket, prefix, batching, connections, retries, etc.
98
+
The `s3downloader` block contains AWS S3 downloader related configuration to control things like bucket, prefix, batching, connections, retries, etc.
99
99
100
100
The following arguments are supported:
101
101
@@ -108,7 +108,7 @@ The following arguments are supported:
108
108
|`file_prefix`|`string`| File prefix defined by user. || no |
109
109
|`endpoint`|`string`| Overrides the endpoint used by the exporter instead of constructing it from `region` and `s3_bucket`. || no |
110
110
|`endpoint_partition_id`|`string`| Partition id to use if `endpoint` is specified. |`"aws"`| no |
111
-
|`s3_force_path_style`|`bool`|Wnen enabled, forces the request to use [path-style addressing][s3-force-path-style-ref]. |`false`| no |
111
+
|`s3_force_path_style`|`bool`|When enabled, forces the request to use [path-style addressing][s3-force-path-style-ref]. |`false`| no |
@@ -127,7 +127,8 @@ The following arguments are supported:
127
127
|`wait_time_seconds`|`int`| Wait time in seconds for long polling SQS requests. |`20`| no |
128
128
129
129
{{< admonition type="note" >}}
130
-
You must configure your S3 bucket to send event notifications to the SQS queue. Time-based configuration (`start_time`/`end_time`) and SQS configuration cannot be used together.
130
+
You must configure your S3 bucket to send event notifications to the SQS queue.
131
+
Time-based configuration (`start_time`/`end_time`) and SQS configuration can't be used together.
0 commit comments