Skip to content

Commit

Permalink
Clarify example of how to configure modules (elastic#3012)
Browse files Browse the repository at this point in the history
  • Loading branch information
dedemorton authored and ruflin committed Nov 16, 2016
1 parent b5011ab commit 6129326
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion metricbeat/docs/gettingstarted.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,23 @@ metricbeat.modules:
cpu_ticks: false
-------------------------------------

The following example shows how to configure the Apache HTTPD module:
The following example shows how to configure two modules: the system module
and the Apache HTTPD module:

[source, shell]
-------------------------------------
metricbeat.modules:
- module: system
metricsets:
- cpu
- filesystem
- memory
- network
- process
enabled: true
period: 10s
processes: ['.*']
cpu_ticks: false
- module: apache
metricsets: ["status"]
enabled: true
Expand Down

0 comments on commit 6129326

Please sign in to comment.