Skip to content

Commit

Permalink
Remove experimental tags from Ceph metricsets (#9708)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoriano authored Dec 20, 2018
1 parent 893fdcb commit 2d445df
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha1...v7.0.0-alpha2[Check the
- Add freebsd support for the uptime metricset. {pull}9413[9413]
- Add `host.os.name` field to add_host_metadata processor. {issue}8948[8948] {pull}9405[9405]
- Add more TCP statuses to `socket_summary` metricset. {pull}9430[9430]
- Remove experimental tag from ceph metricsets. {pull}9708[9708]
==== Deprecated
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/docs/modules/ceph/osd_df.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This file is generated! See scripts/docs_collector.py
[[metricbeat-metricset-ceph-osd_df]]
=== Ceph osd_df metricset

experimental[]
beta[]

include::../../../module/ceph/osd_df/_meta/docs.asciidoc[]

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/docs/modules_list.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This file is generated! See scripts/docs_collector.py
|<<metricbeat-metricset-ceph-cluster_health,cluster_health>> beta[]
|<<metricbeat-metricset-ceph-cluster_status,cluster_status>> beta[]
|<<metricbeat-metricset-ceph-monitor_health,monitor_health>> beta[]
|<<metricbeat-metricset-ceph-osd_df,osd_df>> experimental[]
|<<metricbeat-metricset-ceph-osd_df,osd_df>> beta[]
|<<metricbeat-metricset-ceph-osd_tree,osd_tree>> beta[]
|<<metricbeat-metricset-ceph-pool_disk,pool_disk>> beta[]
|<<metricbeat-module-couchbase,Couchbase>> beta[] |image:./images/icon-no.png[No prebuilt dashboards] |
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/ceph/fields.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion metricbeat/module/ceph/osd_df/_meta/fields.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- name: osd_df
type: group
release: experimental
release: beta
description: >
ceph osd disk usage information
fields:
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/ceph/osd_df/osd_df.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type MetricSet struct {
}

func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
cfgwarn.Experimental("The ceph osd_df metricset is experimental")
cfgwarn.Beta("The ceph osd_df metricset is beta")

http, err := helper.NewHTTP(base)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/ceph/pool_disk/pool_disk.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type MetricSet struct {
}

func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
cfgwarn.Experimental("The ceph pool_disk metricset is experimental")
cfgwarn.Beta("The ceph pool_disk metricset is beta")

http, err := helper.NewHTTP(base)
if err != nil {
Expand Down

0 comments on commit 2d445df

Please sign in to comment.