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
**Description:**
* set OTLP as default format
* add support for OTLP format
* do not support metadata attributes
* do not support source headers
**Link to tracking Issue:** open-telemetry#32315
**Testing:**
* unit tests
**Documentation:**
* inline comments
* readme
---------
Signed-off-by: Dominik Rosiek <[email protected]>
Copy file name to clipboardExpand all lines: exporter/sumologicexporter/README.md
+11-32
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
19
19
For some time we have been developing the [new Sumo Logic exporter](https://github.com/SumoLogic/sumologic-otel-collector/tree/main/pkg/exporter/sumologicexporter#sumo-logic-exporter) and now we are in the process of moving it into this repository.
20
20
21
-
The following options are deprecated for logs and already do not work for metrics:
21
+
The following options are no longer supported:
22
22
23
23
-`metric_format: {carbon2, graphite}`
24
24
-`metadata_attributes: [<regex>]`
@@ -30,7 +30,7 @@ The following options are deprecated for logs and already do not work for metric
30
30
After the new exporter will be moved to this repository:
31
31
32
32
-`carbon2` and `graphite` are no longer supported and `prometheus` or `otlp` format should be used
33
-
- all resource level attributes are going to be treated (are treated for metrics) as `metadata_attributes`. You can use [Group by Attributes processor](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/groupbyattrsprocessor) to move attributes from record level to resource level. For example:
33
+
- all resource level attributes are treated as `metadata_attributes` so this option is no longer supported. You can use [Group by Attributes processor](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/groupbyattrsprocessor) to move attributes from record level to resource level. For example:
34
34
35
35
```yaml
36
36
# before switch to new collector
@@ -45,7 +45,7 @@ After the new exporter will be moved to this repository:
45
45
- my_attribute
46
46
```
47
47
48
-
- Source templates (`source_category`, `source_name` and `source_host`) are going to be removed from the exporter and sources may be set using `_sourceCategory`, `sourceName` or `_sourceHost` resource attributes. This feature has been already disabled for metrics. We recommend to use [Transform Processor](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/transformprocessor/). For example:
48
+
- Source templates (`source_category`, `source_name` and `source_host`) are no longer supported. We recommend to use [Transform Processor](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/transformprocessor/). For example:
49
49
50
50
```yaml
51
51
# before switch to new collector
@@ -88,12 +88,12 @@ exporters:
88
88
# List of regexes for attributes which should be send as metadata
0 commit comments