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

docs: mark objects as not enabled #2056

Merged
merged 2 commits into from
Apr 2, 2019
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 NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--------------------------------------------------------------------
Dependency: github.com/elastic/beats
Version: 6.6
Revision: 9d5f9a93f21d9ba7f6f3ca24bc4ac36900d20005
Revision: cc64201cf64ed2d2e15e168864dca0418085cd73
License type (autodetected): Apache-2.0
./vendor/github.com/elastic/beats/LICENSE.txt:
--------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion _beats/libbeat/docs/version.asciidoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:stack-version: 6.6.1
:stack-version: 6.6.2
:doc-branch: 6.6
:go-version: 1.10.8
:release-state: released
Expand Down
4 changes: 2 additions & 2 deletions _beats/libbeat/scripts/generate_fields_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def document_field(output, field, field_path):
if not field["index"]:
output.write("{}\n\n".format("Field is not indexed."))

if "enable" in field:
if not field["enable"]:
if "enabled" in field:
if not field["enabled"]:
output.write("{}\n\n".format("Object is not enabled."))

if "multi_fields" in field:
Expand Down
2 changes: 1 addition & 1 deletion _beats/testing/environments/args.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ services:
build:
args:
DOWNLOAD_URL: https://snapshots.elastic.co/downloads
ELASTIC_VERSION: 6.6.1-SNAPSHOT
ELASTIC_VERSION: 6.6.2-SNAPSHOT
CACHE_BUST: 2018072
16 changes: 16 additions & 0 deletions docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,8 @@ Any arbitrary contextual information regarding the event, captured by the agent,
--
type: object

Object is not enabled.

--


Expand Down Expand Up @@ -334,34 +336,44 @@ Software agent acting in behalf of a user, eg. a web browser / OS combination.
--
type: object

Object is not enabled.

--

*`context.request.cookies`*::
+
--
type: object

Object is not enabled.

--

*`context.request.headers`*::
+
--
type: object

Object is not enabled.

--

*`context.request.env`*::
+
--
type: object

Object is not enabled.

--

*`context.request.socket`*::
+
--
type: object

Object is not enabled.

--

[float]
Expand Down Expand Up @@ -477,6 +489,8 @@ The http method of the request leading to this event.
--
type: object

Object is not enabled.

--

*`context.response.headers_sent`*::
Expand Down Expand Up @@ -567,6 +581,8 @@ Information pertaining to the running process where the data was collected
--
type: object

Object is not enabled.

--

*`context.process.pid`*::
Expand Down
Loading