Skip to content

[Azure frontdoor] Add Health Probe dataset#20016

Open
herrBez wants to merge 13 commits into
elastic:mainfrom
herrBez:azure-frontdoor-healthprobes
Open

[Azure frontdoor] Add Health Probe dataset#20016
herrBez wants to merge 13 commits into
elastic:mainfrom
herrBez:azure-frontdoor-healthprobes

Conversation

@herrBez

@herrBez herrBez commented Jul 7, 2026

Copy link
Copy Markdown
Contributor

Proposed commit message

Add first support for Frontdoor health probe logs

Checklist

  • I have reviewed tips for building integrations and this pull request is aligned with them.
  • I have verified that all data streams collect metrics or logs.
  • I have added an entry to my package's changelog.yml file.
  • I have verified that Kibana version constraints are current according to guidelines.
  • I have verified that any added dashboard complies with Kibana's Dashboard good practices

Author's Checklist

  • Double check the documentation
  • Decide whether to activate the dataset by default or not (currently it's active by default)

How to test this PR locally

  • Configure an Azure Frontdoor and export the logs to an Eventhub
  • Configure the integration
  • Verify that Health Check logs are collected

Related issues

Screenshots

image

@herrBez herrBez requested review from a team as code owners July 7, 2026 11:41
@github-actions

github-actions Bot commented Jul 7, 2026

Copy link
Copy Markdown
Contributor

✅ Elastic Docs Style Checker (Vale)

No issues found on modified lines!


The Vale linter checks documentation changes against the Elastic Docs style guide. To use Vale locally or report issues, refer to Elastic style guide for Vale.

@andrewkroh andrewkroh added Integration:azure_frontdoor Azure Frontdoor (Community supported) Team:Security-Service Integrations Security Service Integrations team [elastic/security-service-integrations] labels Jul 7, 2026
@infra-vault-gh-plugin-prod

Copy link
Copy Markdown

Pinging @elastic/security-service-integrations (Team:Security-Service Integrations)

@elastic-vault-github-plugin-prod

Copy link
Copy Markdown
Contributor

🚀 Benchmarks report

To see the full report comment with /test benchmark fullreport

@efd6 efd6 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you update the README?

@@ -0,0 +1,40 @@
title: "FrontDoor Health Probe"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Severity: 🟡 Medium confidence: high path: packages/azure_frontdoor/data_stream/health_probe/manifest.yml:1

New health_probe data stream is added but the package README was not updated — it still says Health Probe logs are unsupported and lists only two data streams. Update the docs template to cover the new stream.

Details

This PR adds the health_probe data stream, but no documentation was changed (the README is not in the changed-file set). The rendered docs are built from _dev/build/docs/README.md, which currently contradicts the new functionality: it states "Currently, the integration does not support Activity Logs or Health Probe logs.", says "This integration collects two types of data streams: access log, waf logs", and has no field-reference section for the new stream. After this merges, users will read that health probe collection is unsupported while the integration ships it. (Anchored on the new data stream manifest because the README file itself is unchanged and cannot receive an inline comment.)

Recommendation:

Update packages/azure_frontdoor/_dev/build/docs/README.md: remove the "does not support ... Health Probe logs" statement, list the new stream, and add its generated field reference. For example:

## Data streams

This integration collects the following data streams:

- access log
- waf logs
- health probe logs

## Health Probe Logs

{{fields "health_probe"}}

Also update the introductory sentence that currently reads "Currently, the integration does not support Activity Logs or Health Probe logs." so it no longer excludes Health Probe logs.


🤖 AI-Generated Review | Vera Review Bot | 📚 Knowledge base: integration-skills

⚠️ Automated review — verify suggestions before applying.

@andrewkroh andrewkroh added the documentation Improvements or additions to documentation. Applied to PRs that modify *.md files. label Jul 8, 2026
Comment thread packages/azure_frontdoor/_dev/build/docs/README.md
"type": "logs"
},
"destination": {
"ip": "4.246.53.113"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Severity: 🔵 Low confidence: medium path: packages/azure_frontdoor/data_stream/health_probe/sample_event.json:35

sample_event.json appears hand-authored and inconsistent with the pipeline output — destination.ip has no geo/as enrichment or destination.address. Regenerate it from a system test.

Details

The health_probe pipeline always adds destination.geo, destination.as and (via the originIP handling) destination.address whenever destination.ip is present. This sample_event.json contains destination.ip (4.246.53.113 — an address that appears in none of the pipeline test fixtures) with related.ip populated, but no destination.geo, no destination.as and no destination.address. A system-test-generated sample would carry those enrichments. Combined with the old agent version (8.6.0), this indicates the file was hand-authored rather than produced by elastic-package test system, so it does not accurately represent an ingested document in the Fleet UI.

Recommendation:

Regenerate the sample from a system test so it reflects real pipeline output (geo/ASN enrichment, destination.address):

cd packages/azure_frontdoor
elastic-package test system -v --data-streams health_probe --generate

🤖 AI-Generated Review | Vera Review Bot | 📚 Knowledge base: integration-skills

⚠️ Automated review — verify suggestions before applying.

@elastic-vault-github-plugin-prod

Copy link
Copy Markdown
Contributor

✅ All changelog entries have the correct PR link.

@vera-review-bot

Copy link
Copy Markdown

Reviewed the latest commits b50ddc9 — nothing new beyond already posted comments.

Review summary

Issues found across earlier commits a15ee51 — 2 low
  • 🔵 The README now lists three data streams but the sentence above still says the integration collects "two types". Update the count to "three". (link) (Unresolved)
  • 🔵 sample_event.json appears hand-authored and inconsistent with the pipeline output — destination.ip has no geo/as enrichment or destination.address. Regenerate it from a system test. (link) (Unresolved)
Issues found across earlier commits 9669a03 — 1 medium
  • 🟡 New health_probe data stream is added but the package README was not updated — it still says Health Probe logs are unsupported and lists only two data streams. Update the docs template to cover the new stream. (link) (Unresolved)

A new commit triggers another review — at most once every 15 minutes. I skip the PR while it's approved or has merge conflicts.

🤖 AI-Generated Review | Vera Review Bot | 📚 Knowledge base: integration-skills

⚠️ Automated review — verify suggestions before applying.

@infra-vault-gh-plugin-prod

Copy link
Copy Markdown

💚 Build Succeeded

History

@mergify

mergify Bot commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

Tick the box to add this pull request to the merge queue (same as @mergifyio queue).

  • Queue this pull request

@navnit-elastic navnit-elastic left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, Thanks!

@herrBez

herrBez commented Jul 14, 2026

Copy link
Copy Markdown
Contributor Author

Can you please proceed with the merge? I don't have the rights to do so 😢 (as I used to have)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

documentation Improvements or additions to documentation. Applied to PRs that modify *.md files. Integration:azure_frontdoor Azure Frontdoor (Community supported) Team:Security-Service Integrations Security Service Integrations team [elastic/security-service-integrations]

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants