Skip to content

Commit

Permalink
Mark system.raid metricset as beta
Browse files Browse the repository at this point in the history
There are no intentions to remove this metricset. Marking it as beta now.
  • Loading branch information
ruflin committed Mar 30, 2018
1 parent 3f3fb57 commit 657c210
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@ https://github.com/elastic/beats/compare/v6.0.0-beta2...master[Check the HEAD di
- Set `namespace` as default metricset in Aerospike module. {pull}6669[6669]
- Set `service` as default metricset in Windows module. {pull}6675[6675]
- Set all metricsets as default metricsets in uwsgi module. {pull}6688[6688]
- Mark system.raid metricset as beta. {pull}6710[6710]

*Packetbeat*

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/docs/modules/system/raid.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-system-raid]]
=== System raid metricset

experimental[]
beta[]

include::../../../module/system/raid/_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 @@ -112,7 +112,7 @@ This file is generated! See scripts/docs_collector.py
|<<metricbeat-metricset-system-network,network>>
|<<metricbeat-metricset-system-process,process>>
|<<metricbeat-metricset-system-process_summary,process_summary>>
|<<metricbeat-metricset-system-raid,raid>> experimental[]
|<<metricbeat-metricset-system-raid,raid>> beta[]
|<<metricbeat-metricset-system-socket,socket>> beta[]
|<<metricbeat-metricset-system-uptime,uptime>>
|<<metricbeat-module-uwsgi,uwsgi>> experimental[] |
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/system/raid/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
type: group
description: >
raid
release: experimental
release: beta
fields:
- name: name
type: keyword
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/system/raid/raid.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type MetricSet struct {

// New creates a new instance of the raid metricset.
func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
cfgwarn.Experimental("The system raid metricset is experimental")
cfgwarn.Beta("The system raid metricset is beta")

systemModule, ok := base.Module().(*system.Module)
if !ok {
Expand Down

0 comments on commit 657c210

Please sign in to comment.