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

[Heartbeat] Fix reference yaml format #38584

Merged
merged 5 commits into from Mar 27, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Expand Up @@ -100,6 +100,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
- Fix setuid root when running under cgroups v2. {pull}37794[37794]
- Adjust State loader to only retry when response code status is 5xx {pull}37981[37981]
- Reset prctl dumpable flag after cap drop. {pull}38269[38269]
- Fix reference yaml format. {pull}38584[38584]

*Metricbeat*

Expand Down
2 changes: 1 addition & 1 deletion heartbeat/_meta/config/beat.reference.yml.tmpl
Expand Up @@ -226,7 +226,7 @@ heartbeat.monitors:
# Parses the body as JSON, then checks against the given expression
#json:
#- description: Explanation of what the check does
- # expression: 'myField == "expectedValue"'
# expression: 'myField == "expectedValue"'

# (Deprecated: see 'expression' above) Parses the body as JSON, then checks against the given condition expression
#json:
Expand Down
2 changes: 1 addition & 1 deletion heartbeat/heartbeat.reference.yml
Expand Up @@ -226,7 +226,7 @@ heartbeat.monitors:
# Parses the body as JSON, then checks against the given expression
#json:
#- description: Explanation of what the check does
- # expression: 'myField == "expectedValue"'
# expression: 'myField == "expectedValue"'

# (Deprecated: see 'expression' above) Parses the body as JSON, then checks against the given condition expression
#json:
Expand Down
2 changes: 1 addition & 1 deletion x-pack/heartbeat/heartbeat.reference.yml
Expand Up @@ -226,7 +226,7 @@ heartbeat.monitors:
# Parses the body as JSON, then checks against the given expression
#json:
#- description: Explanation of what the check does
- # expression: 'myField == "expectedValue"'
# expression: 'myField == "expectedValue"'

# (Deprecated: see 'expression' above) Parses the body as JSON, then checks against the given condition expression
#json:
Expand Down