Skip to content

Commit

Permalink
[exporter/influxdb] Change status to beta
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobmarble committed Oct 17, 2022
1 parent c9e646b commit 1588105
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
16 changes: 16 additions & 0 deletions .chloggen/maintain-influxdbexporter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: deprecation

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: exporter/influxdb

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: change status to beta

# One or more tracking issues related to the change
issues: [14098]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
1 change: 0 additions & 1 deletion .github/ALLOWLIST
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
cmd/configschema
examples/demo/client
examples/demo/server
exporter/influxdbexporter
exporter/parquetexporter
extension/fluentbitextension
extension/httpforwarder
Expand Down
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ exporter/googlecloudexporter/ @open-telemetry/collector-c
exporter/googlemanagedprometheusexporter/ @open-telemetry/collector-contrib-approvers @aabmass @dashpole @jsuereth @punya @tbarker25 @damemi
exporter/googlecloudpubsubexporter/ @open-telemetry/collector-contrib-approvers @alexvanboxel
exporter/humioexporter/ @open-telemetry/collector-contrib-approvers @xitric
exporter/influxdbexporter/ @open-telemetry/collector-contrib-approvers @jacobmarble
exporter/instanaexporter/ @open-telemetry/collector-contrib-approvers @jpkrohling @hickeyma
exporter/jaegerexporter/ @open-telemetry/collector-contrib-approvers @jpkrohling
exporter/jaegerthrifthttpexporter/ @open-telemetry/collector-contrib-approvers @jpkrohling @pavolloffay
Expand Down
6 changes: 3 additions & 3 deletions exporter/influxdbexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

| Status | |
| ------------------------ |-----------------------|
| Stability | [unmaintained] |
| Stability | [beta] |
| Supported pipeline types | traces, logs, metrics |
| Distributions | [contrib] |

Expand All @@ -19,7 +19,7 @@ The following configuration options are supported:
- header `User-Agent` is `OpenTelemetry -> Influx` by default
- if `token` (below) is set, then header `Authorization` will overridden with the given token
* `org` (required) Name of InfluxDB organization that owns the destination bucket
* `bucket` (required) InfluxDB bucket name to where signals will
* `bucket` (required) name of InfluxDB bucket to which signals will be written
* `token` (optional) The authentication token for InfluxDB
* `metrics_schema` (default = telegraf-prometheus-v1) The chosen metrics schema to write; must be one of:
* `telegraf-prometheus-v1`
Expand Down Expand Up @@ -121,5 +121,5 @@ logs fluent.tag="fluent.debug",instance=1720i,queue_size=0i,stage_size=0i 161376
logs fluent.tag="fluent.info",worker=0i 1613769568896515100
```
[unmaintained]:https://github.com/open-telemetry/opentelemetry-collector#unmaintained
[beta]:https://github.com/open-telemetry/opentelemetry-collector#beta
[contrib]:https://github.com/open-telemetry/opentelemetry-collector-releases/tree/main/distributions/otelcol-contrib
2 changes: 1 addition & 1 deletion exporter/influxdbexporter/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const (
// The value of "type" key in configuration.
typeStr = "influxdb"
// The stability level of the exporter.
stability = component.StabilityLevelUnmaintained
stability = component.StabilityLevelBeta
)

// Config defines configuration for the InfluxDB exporter.
Expand Down

0 comments on commit 1588105

Please sign in to comment.