Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark system.raid metricset as beta #6710

Merged
merged 2 commits into from
Apr 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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