Skip to content

Commit

Permalink
[exporter/influxdb] Change status to unmaintained (#14100)
Browse files Browse the repository at this point in the history
See #12794
  • Loading branch information
djaglowski committed Sep 13, 2022
1 parent 5eb9736 commit a7a81ef
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/ALLOWLIST
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
cmd/configschema
examples/demo/client
examples/demo/server
exporter/influxdbexporter
exporter/parquetexporter
extension/fluentbitextension
extension/httpforwarder
Expand Down
1 change: 0 additions & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ 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
8 changes: 4 additions & 4 deletions exporter/influxdbexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

Expand All @@ -18,7 +18,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) InfluxDB bucket name to where signals will
* `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 All @@ -32,7 +32,7 @@ The following configuration options are supported:
* `initial_interval` (default = 5s) Time to wait after the first failure before retrying
* `max_interval` (default = 30s) Upper bound on backoff interval
* `max_elapsed_time` (default = 120s) Maximum amount of time (including retries) spent trying to send a request/batch

The full list of settings exposed for this exporter are documented in [config.go](config.go).

Example:
Expand Down Expand Up @@ -120,5 +120,5 @@ logs fluent.tag="fluent.debug",instance=1720i,queue_size=0i,stage_size=0i 161376
logs fluent.tag="fluent.info",worker=0i 1613769568896515100
```
[beta]:https://github.com/open-telemetry/opentelemetry-collector#beta
[unmaintained]:https://github.com/open-telemetry/opentelemetry-collector#unmaintained
[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.StabilityLevelBeta
stability = component.StabilityLevelUnmaintained
)

// Config defines configuration for the InfluxDB exporter.
Expand Down
16 changes: 16 additions & 0 deletions unreleased/unmaintain-influxdb-exporter.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 unmaintained

# 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:

0 comments on commit a7a81ef

Please sign in to comment.