Skip to content
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 x-pack/auditbeat/include/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ package include
import (
// Include all Auditbeat modules so that they register their
// factories with the global registry.
_ "github.com/elastic/beats/x-pack/auditbeat/module/sysinfo/host"
_ "github.com/elastic/beats/x-pack/auditbeat/module/system/host"
)
4 changes: 0 additions & 4 deletions x-pack/auditbeat/module/sysinfo/_meta/fields.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{ if .Reference -}}
{{ end -}}
- module: sysinfo
- module: system
{{ if eq .GOOS "darwin" -}}
metricsets:
- host
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
== Sysinfo Module
== System Module

The `sysinfo` module ... TODO.
The `system` module ... TODO.

The module is implemented for Linux, macOS (Darwin), and Windows.

Expand All @@ -16,7 +16,7 @@ TODO

[source,yaml]
----
- module: sysinfo
- module: system
----

*`some_option`*:: TODO
4 changes: 4 additions & 0 deletions x-pack/auditbeat/module/system/_meta/fields.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- key: system
title: System
description: These are the fields generated by the system module.
fields:
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The Sysinfo `host` metricset provides ... TODO.
The System `host` metricset provides ... TODO.

The module is implemented for Linux, macOS (Darwin), and Windows.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
)

const (
moduleName = "sysinfo"
moduleName = "system"
metricsetName = "host"
)

Expand Down