-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[HA Agent] Add datadog.agent.ha_agent.integration_runs #33233
Merged
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
6203116
Add config version tag in metric
coignetp 027ba6a
Use fleet policies dir instead
coignetp b5634e7
Cleaner
coignetp 7e52c66
Fix
coignetp b198953
Rename
coignetp bf0993b
Change to configid
coignetp 3c0593c
Fixed tag
coignetp 609e43c
[HA Agent] add config_id tag to datadog.agent.ha_agent.running metric
AlexandreYang b772211
Revert "Revert "update e2e test to assert config_id""
AlexandreYang 6a06cd3
rename agent_state to ha_agent_state
AlexandreYang e66ec05
add config_id tag
AlexandreYang 28d02d4
fix test
AlexandreYang a1e484a
[HA Agent] add integration metrics
AlexandreYang c2f69ca
refactor
AlexandreYang 0e99be9
revert pkg/collector/worker/worker_test.go
AlexandreYang 8e41da0
move to stats.go
AlexandreYang d627206
sort import
AlexandreYang 8d28957
fix guiimpl/checks.go
AlexandreYang c4f766e
fix pkg/cli/subcommands/check/command.go
AlexandreYang 0a62fb6
update to config_id
AlexandreYang 3e5b66e
Address reviews
coignetp acd7ada
Update aggregator.go
coignetp 6a75ed5
Update config.go
coignetp b5a9cb7
Update config.go
coignetp 52a18fc
remove fixed comment
AlexandreYang 9b7689f
Merge branch 'main' into paul/fa-add-tag-config-v
AlexandreYang 072f212
Merge branch 'paul/fa-add-tag-config-v' into NDMII-3313-datadog-agent…
AlexandreYang ed96e97
Merge branch 'NDMII-3313-datadog-agent-ha-agent-running' into NDMII-3…
AlexandreYang e18aa87
Merge branch 'main' into NDMII-3313-datadog-agent-ha-agent-running
AlexandreYang 050dfa0
Merge branch 'NDMII-3313-datadog-agent-ha-agent-running' into NDMII-3…
AlexandreYang b5001c3
Merge branch 'main' into NDMII-3313-integration-metric
AlexandreYang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you think we could include the
haagent.Enabled()
check inIsHaIntegration
to simplify usage ?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hum, I think it's not ideal since they mean different things. Can be misleading to have
haagent.Enabled()
check inIsHaIntegration()
since a check can be flagged as HA, but HA Agent feature can be disabled.