Skip to content

Commit

Permalink
Update Filebeat modules development guide (#7242)
Browse files Browse the repository at this point in the history
* remove unreleased `--update-pipeline` flag && add `setup --pipelines` command to update Ingest pipelines
* add a section about `make update`
  • Loading branch information
kvch authored and ruflin committed Jun 4, 2018
1 parent 9c7619b commit d2a0de2
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions docs/devguide/modules-dev-guide.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,10 @@ While developing the pipeline definition, we recommend making use of the
{elasticsearch}/simulate-pipeline-api.html[Simulate Pipeline API] for testing
and quick iteration.

By default Filebeat does not update Ingest pipelines if already loaded. If you want to force updating your pipeline
during development, use `--update-pipelines` flag. This uploads pipelines even if they are already available on the node.
By default Filebeat does not update Ingest pipelines if already loaded. If you
want to force updating your pipeline during development, use
`./filebeat setup --pipelines` command. This uploads pipelines even if they
are already available on the node.

[float]
==== _meta/fields.yml
Expand Down Expand Up @@ -350,6 +352,14 @@ make create-fields MODULE={module} FILESET={fileset}
Please, always check the generated file and make sure the fields are correct.
Documenatation of fields must be added manually.

If the fields are correct, it is time to generate documentation, configuration
and Kibana index patterns.

[source,bash]
----
make update
----

[float]
==== test

Expand Down

0 comments on commit d2a0de2

Please sign in to comment.