Add 13 Datadog evidence fetchers#16
Merged
Merged
Conversation
Ports all Datadog fetchers from evidence-fetchers into the prmfy-fetchers framework. Creates fetchers/datadog/ with 13 single-target Python fetchers covering: SIEM detection rules, signals, and configuration; log pipelines, indexes, and archives; monitors; agent hosts, containers, and infra agent checks; APM services; incidents list and timelines. Each fetcher was ported to the v0.x contract: removed parse_fetcher_args in favor of load_dotenv + EVIDENCE_DIR, switched status output to logger.info/logger.warning, and added fetcher.yaml with secrets, evidence_set block, and EVD-DD-* reference IDs. Fixed two fetchers (agent_hosts, infra_agent_checks) to re-raise HTTPError so auth failures surface as non-zero exits. Added not_available to the exit-0 set in the three SIEM fetchers. Renamed analysis → summary in all output payloads for consistency. Adds fetchers/_categories/datadog.yaml and fetchers/datadog/README.md with setup, permissions, manifest wiring, and credential rotation instructions.
21tmccauley
approved these changes
Jul 16, 2026
21tmccauley
left a comment
Collaborator
There was a problem hiding this comment.
These look good to me, all tests passed so the orchestration should handle them fine. I'm not going to worry about getting these in the first round of mapping KSI -> fetchers but will mark them for the next round.
Do validators exist for these?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Ports all Datadog fetchers from evidence-fetchers into the prmfy-fetchers framework. Creates fetchers/datadog/ with 13 single-target Python fetchers
covering: SIEM detection rules, signals, and configuration; log pipelines, indexes, and archives; monitors; agent hosts, containers, and infra agent
checks; APM services; incidents list and timelines.
Each fetcher was ported to the v0.x contract: removed parse_fetcher_args in favor of load_dotenv + EVIDENCE_DIR, switched status output to
logger.info/logger.warning, and added fetcher.yaml with secrets, evidence_set block, and EVD-DD-* reference IDs. Fixed two fetchers (agent_hosts,
infra_agent_checks) to re-raise HTTPError so auth failures surface as non-zero exits. Added not_available to the exit-0 set in the three SIEM
fetchers. Adds fetchers/_categories/datadog.yaml and fetchers/datadog/README.md
with setup, permissions, manifest wiring, and credential rotation instructions.