Skip to content

Commit 652f70b

Browse files
authored
Merge branch 'master' into nick/account_config_schema_migration
2 parents fdb3cf1 + a5c1ee5 commit 652f70b

24 files changed

Lines changed: 301 additions & 20 deletions

File tree

.in-toto/tag.ec45eb9d.link

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

avast/assets/account_config.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"supported_auth_methods": [],
3+
"additional_config_fields": [
4+
{
5+
"key": "client_id",
6+
"label": "Client ID",
7+
"help": "Your Avast Business Hub client ID",
8+
"required": true,
9+
"editable": true,
10+
"text": {}
11+
},
12+
{
13+
"key": "client_secret",
14+
"label": "Client Secret",
15+
"help": "Your Avast Business Hub client secret",
16+
"required": true,
17+
"editable": true,
18+
"password": {}
19+
}
20+
],
21+
"dataflow_config": [
22+
{
23+
"dataflow_id": "avast-logs",
24+
"additional_config_fields": []
25+
}
26+
]
27+
}

avast/assets/dataflows.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
provides:
2+
- id: avast-logs
3+
always_on: true
4+
granular: true
5+
data_type: logs
6+
direction: inbound

datadog_checks_base/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
<!-- towncrier release notes start -->
44

5+
## 37.41.0 / 2026-06-30
6+
7+
***Added***:
8+
9+
* Lazy load the validation package (core, security, utils) on import of datadog_checks.checks. ([#23936](https://github.com/DataDog/integrations-core/pull/23936))
10+
* Add configuration discovery runtime (Service/Port types, candidate_ports, probing harness, and discovery entry points). ([#23963](https://github.com/DataDog/integrations-core/pull/23963))
11+
* Add ``include_internal`` and ``include_db`` options to ``TagManager.get_tags`` so DBM checks can exclude internal resource tags (``dd.internal.*``) and the per-database ``db`` tag from tag views that should not carry them. ([#23976](https://github.com/DataDog/integrations-core/pull/23976))
12+
* Add report_issue and resolve_issue for Agent Health reporting from integrations. ([#24016](https://github.com/DataDog/integrations-core/pull/24016))
13+
* Implement the ``agent_hostname`` property on the ``DatabaseCheck`` base class. ([#24243](https://github.com/DataDog/integrations-core/pull/24243))
14+
* Implement the `DatabaseCheck.tags` property backed by a shared `TagManager` so DBM integrations can consolidate tag handling. ([#24244](https://github.com/DataDog/integrations-core/pull/24244))
15+
* Provide a default `database_identifier` implementation on the `DatabaseCheck` base class that is built (and cached) from the `database_identifier_template` and `database_identifier_params` hooks, so integrations no longer need to reimplement the database identifier templating logic. ([#24250](https://github.com/DataDog/integrations-core/pull/24250))
16+
517
## 37.40.1 / 2026-06-18
618

719
***Fixed***:

datadog_checks_base/changelog.d/23936.added

Lines changed: 0 additions & 1 deletion
This file was deleted.

datadog_checks_base/changelog.d/23963.added

Lines changed: 0 additions & 1 deletion
This file was deleted.

datadog_checks_base/changelog.d/23976.added

Lines changed: 0 additions & 1 deletion
This file was deleted.

datadog_checks_base/changelog.d/24016.added

Lines changed: 0 additions & 1 deletion
This file was deleted.

datadog_checks_base/changelog.d/24243.added

Lines changed: 0 additions & 1 deletion
This file was deleted.

datadog_checks_base/changelog.d/24244.added

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)