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

Add note that there is no warranty or support for generator code #28797

Merged
merged 2 commits into from
Nov 30, 2021
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: 2 additions & 0 deletions docs/devguide/create-metricset.asciidoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[[creating-metricsets]]
=== Creating a Metricset

include::generator-support-note.asciidoc[tag=metricset-generator]

A metricset is the part of a Metricbeat module that fetches and structures the
data from the remote service. Each module can have multiple metricsets. In this guide, you learn how to create your own metricset.

Expand Down
13 changes: 13 additions & 0 deletions docs/devguide/generator-support-note.asciidoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// tag::metricset-generator[]
IMPORTANT: Elastic provides no warranty or support for the code used to generate
metricsets. The generator is mainly offered as guidance for developers who want
to create their own data shippers.

// end::metricset-generator[]

// tag::filebeat-generator[]
IMPORTANT: Elastic provides no warranty or support for the code used to generate
modules and filesets. The generator is mainly offered as guidance for developers
who want to create their own data shippers.

// end::filebeat-generator[]
2 changes: 2 additions & 0 deletions docs/devguide/modules-dev-guide.asciidoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[[filebeat-modules-devguide]]
== Creating a New Filebeat Module

include::generator-support-note.asciidoc[tag=filebeat-generator]

This guide will walk you through creating a new Filebeat module.

All Filebeat modules currently live in the main
Expand Down