@cryptotaxi247 / netdata-1 / commits / 7bca3ff53

Switch to git-cliff for changelog generation. (#21218)

* Switch to git-cliff for changelog generation. This should completely eliminate the reliability issues in changelog generation for nightly builds and releases, as git-cliff only inspects Git history and does not rely on GitHub’s REST API. Note that this _does not_ require us to switch to using Conventional Commits for our commit messages (git-cliff provides special additional handling for commits with messages conforming to this format, but works acceptably well without that additional handling). This also makes it extremely easy to generate a changelog locally if needed, and significantly improves performance of the changelog generation process (it should now take less than a minute instead of almost 10 minutes). The new changelog format is similar, but not identical, to the old format, but properly tracks changes in a way that doesn’t result in a tiny and largely useless file. This involves the following significant changes to the generated changelogs: - No authorship information on the changelog entries. If we decide this is desirable we can add this, but not doing it means we don’t have to rely on GitHub’s APIs, which seem to be the major performance and reliability bottleneck with our current changelog generation. - A given branch’s changelog will now only track the changes and tags in that branch. This means that the main branch will not include commits for patch releases in it’s changelog, and the release branches will not include changes from the main branch since the release branch was created that have not made it into a patch release on that branch. As part of this, the changelog for versions prior to version 2.0.0 has been split to it’s own file. This helps limit the overall size of the changelog file (together, it’s over 1 MiB in size), and also speeds up the generation process as it limits how many commits need to be processed. * Fix missing step ID in workflow. * Assorted fixes in git-cliff config.

Austin S. Hemmelgarn committed Oct 30, 2025 at 11:08 UTC 7bca3ff53dde28183e7fca298a3b65ec5ce8d1d3
5 files changed +11040 -996
.github/workflows/release.yml
+8 -65
@@ -43,69 +43,14 @@ jobs:
43 ${{ github.event.inputs.type }} \
44 ${{ github.event.inputs.version }} \
45 ${{ secrets.NETDATA_RELEASE_TEST }}
46 - - name: Generate Nightly Changelog (attempt 1)
47 - id: nightly-changelog1
48 - if: steps.target.outputs.run == 'true' && steps.target.outputs.type == 'nightly'
49 - continue-on-error: true
50 - uses: heinrichreimer/github-changelog-generator-action@v2.4
51 - with:
52 - bugLabels: IGNOREBUGS
53 - excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
54 - issues: false
55 - sinceTag: v1.10.0
56 - token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
57 - unreleasedLabel: "**Next release**"
58 - verbose: true
59 - maxIssues: 500
60 - - name: Delay Retry
61 - id: delay1
62 - if: steps.target.outputs.run == 'true' && steps.target.outputs.type == 'nightly' && steps.nightly-changelog1.outcome == 'failure'
63 - run: sleep 300
64 - - name: Generate Nightly Changelog (attempt 2)
65 - id: nightly-changelog2
66 - if: steps.target.outputs.run == 'true' && steps.target.outputs.type == 'nightly' && steps.nightly-changelog1.outcome == 'failure'
67 - continue-on-error: true
68 - uses: heinrichreimer/github-changelog-generator-action@v2.4
69 - with:
70 - bugLabels: IGNOREBUGS
71 - excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
72 - issues: false
73 - sinceTag: v1.10.0
74 - token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
75 - unreleasedLabel: "**Next release**"
76 - verbose: true
77 - maxIssues: 500
78 - - name: Delay Retry
79 - id: delay2
80 - if: steps.target.outputs.run == 'true' && steps.target.outputs.type == 'nightly' && steps.nightly-changelog2.outcome == 'failure'
81 - run: sleep 300
82 - - name: Generate Nightly Changelog (attempt 3)
83 - id: nightly-changelog3
84 - if: steps.target.outputs.run == 'true' && steps.target.outputs.type == 'nightly' && steps.nightly-changelog2.outcome == 'failure'
85 - uses: heinrichreimer/github-changelog-generator-action@v2.4
86 - with:
87 - bugLabels: IGNOREBUGS
88 - excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
89 - issues: false
90 - sinceTag: v1.10.0
91 - token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
92 - unreleasedLabel: "**Next release**"
93 - verbose: true
94 - maxIssues: 500
46 + - name: Set up git-cliff
47 + id: setup-git-cliff
48 + if: steps.target.outputs.run == 'true'
49 + uses: kenji-miyake/setup-git-cliff@v1
50 - name: Generate Release Changelog
51 id: release-changelog
97 - if: steps.target.outputs.run == 'true' && steps.target.outputs.type != 'nightly'
98 - uses: heinrichreimer/github-changelog-generator-action@v2.4
99 - with:
100 - bugLabels: IGNOREBUGS
101 - excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
102 - futureRelease: ${{ github.event.inputs.version }}
103 - issues: false
104 - sinceTag: v1.10.0
105 - token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
106 - unreleasedLabel: "**Next release**"
107 - verbose: true
108 - maxIssues: 500
52 + if: steps.target.outputs.run == 'true'
53 + run: packaging/generate-changelog.sh
54 - name: Commit Changes
55 id: commit
56 if: steps.target.outputs.run == 'true'
@@ -138,10 +83,8 @@ jobs:
83 ${{ github.repository }}: Failed to prepare changelog.
84 Checkout: ${{ steps.checkout.outcome }}
85 Prepare base ref: ${{ steps.target.outcome }}
141 - Generate nightly changelog (attempt 1): ${{ steps.nightly-changelog1.outcome }}
142 - Generate nightly changelog (attempt 2): ${{ steps.nightly-changelog2.outcome }}
143 - Generate nightly changelog (attempt 3): ${{ steps.nightly-changelog3.outcome }}
144 - Generate release changelog: ${{ steps.release-changelog.outcome }}
86 + Setup git-cliff: ${{ steps.setup-git-cliff.outcome }}
87 + Generate changelog: ${{ steps.release-changelog.outcome }}
88 Commit changes: ${{ steps.commit.outcome }}
89 SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
90 if: failure()
CHANGELOG-V1.md new
+8584
@@ -0,0 +1,8584 @@
1 +## [1.47.0] - 2024-08-22
2 +
3 +### Merged Pull Requests:
4 +
5 +- Fix space percentage calculation in dbengine retention chart ([#17963](https://github.com/netdata/netdata/issues/17963))
6 +- Go.d replace colon in job name ([#17967](https://github.com/netdata/netdata/issues/17967))
7 +- Go.d postgres index name replace space ([#17968](https://github.com/netdata/netdata/issues/17968))
8 +- Cgroups: bring back "use unified cgroups" option ([#17969](https://github.com/netdata/netdata/issues/17969))
9 +- Go.d dyncfg add job name validation ([#17971](https://github.com/netdata/netdata/issues/17971))
10 +- Fix go.d rspamd unexpected response check ([#17974](https://github.com/netdata/netdata/issues/17974))
11 +- Go.d docker respect DOCKER_HOST env var ([#17979](https://github.com/netdata/netdata/issues/17979))
12 +- Docs: add "For Netdata running in a Docker container" to go.d/smartcl ([#17980](https://github.com/netdata/netdata/issues/17980))
13 +- Regenerate integrations.js ([#17981](https://github.com/netdata/netdata/issues/17981))
14 +- Improve ping_host_reachable alert calc ([#17982](https://github.com/netdata/netdata/issues/17982))
15 +- Make cgroups version detection more reliable ([#17973](https://github.com/netdata/netdata/issues/17973))
16 +- Change logging to debug ([#17983](https://github.com/netdata/netdata/issues/17983))
17 +- Docs: update "What's New and Coming?" ([#17984](https://github.com/netdata/netdata/issues/17984))
18 +- Docs: smartctl: add the "no_check_power_mode" option ([#17985](https://github.com/netdata/netdata/issues/17985))
19 +- Regenerate integrations.js ([#17986](https://github.com/netdata/netdata/issues/17986))
20 +- Bump docker/build-push-action from 5 to 6 ([#17998](https://github.com/netdata/netdata/issues/17998))
21 +- Health convert value to days in calc in whoisquery/x509check alarms ([#17999](https://github.com/netdata/netdata/issues/17999))
22 +- Go.d whoisquery change default days until expiration 90/30 => 30/15 ([#18000](https://github.com/netdata/netdata/issues/18000))
23 +- Apps.plugin: remove "Normalization Ratio" internal charts ([#18004](https://github.com/netdata/netdata/issues/18004))
24 +- Docs: add Troubleshoot->Getting Logs section to collectors ([#18005](https://github.com/netdata/netdata/issues/18005))
25 +- Regenerate integrations.js ([#18006](https://github.com/netdata/netdata/issues/18006))
26 +- Update netdata global stats and enable them by default ([#18001](https://github.com/netdata/netdata/issues/18001))
27 +- Fix small typo ([#17875](https://github.com/netdata/netdata/issues/17875))
28 +- Fix RPM repoconfig naming ([#18003](https://github.com/netdata/netdata/issues/18003))
29 +- Detect on startup if the netdata-meta.db file is not a valid database file ([#17924](https://github.com/netdata/netdata/issues/17924))
30 +- Tidy-up build related CI jobs. ([#17962](https://github.com/netdata/netdata/issues/17962))
31 +- Sign DEB packages in the GHA runners that build them. ([#17949](https://github.com/netdata/netdata/issues/17949))
32 +- Fix typo in packaging workflows.
33 +- Fix DEB package signing issues.
34 +- Fix Slack error reporting for packaging workflows. ([#18011](https://github.com/netdata/netdata/issues/18011))
35 +- Enforce proper include ordering for vendored libraries. ([#18008](https://github.com/netdata/netdata/issues/18008))
36 +- Explicitly disable logsmanagement plugin on known-broken environments. ([#18002](https://github.com/netdata/netdata/issues/18002))
37 +- Fix key identification for DEB package signing.
38 +- Fix key ID handling for DEB package signing.
39 +- Rrdlabels: allow uppercase A-Z in label name ([#18013](https://github.com/netdata/netdata/issues/18013))
40 +- Go.d snmp: add collecting network interface stats ([#18014](https://github.com/netdata/netdata/issues/18014))
41 +- Regenerate integrations.js ([#18016](https://github.com/netdata/netdata/issues/18016))
42 +- Ping meta fix configuring ping_group_range ([#18020](https://github.com/netdata/netdata/issues/18020))
43 +- Go.d snmp: add config options to filter interfaces by name and type ([#18023](https://github.com/netdata/netdata/issues/18023))
44 +- Fix grep warning in kickstart ([#18021](https://github.com/netdata/netdata/issues/18021))
45 +- Regenerate integrations.js ([#18022](https://github.com/netdata/netdata/issues/18022))
46 +- Alert prototype: set default "after" to -600 ([#18025](https://github.com/netdata/netdata/issues/18025))
47 +- Sysinfo (WinAPI) ([#17857](https://github.com/netdata/netdata/issues/17857))
48 +- Fix proxy connect response ([#18017](https://github.com/netdata/netdata/issues/18017))
49 +- Port postfix collector from python to go ([#18026](https://github.com/netdata/netdata/issues/18026))
50 +- Go.d k8state: skip jobs/cronjobs Pods ([#18028](https://github.com/netdata/netdata/issues/18028))
51 +- Improve global statistics thread shutdown ([#18018](https://github.com/netdata/netdata/issues/18018))
52 +- Go.d/postfix: simplify and fix tests ([#18029](https://github.com/netdata/netdata/issues/18029))
53 +- Regenerate integrations.js ([#18030](https://github.com/netdata/netdata/issues/18030))
54 +- Add Win CPU interrupts ([#17753](https://github.com/netdata/netdata/issues/17753))
55 +- Troubleshooter must be assigned to rooms docs ([#18031](https://github.com/netdata/netdata/issues/18031))
56 +- Fix Coverity scan CI. ([#18024](https://github.com/netdata/netdata/issues/18024))
57 +- Bump repository config fetched by kickstart to latest version. ([#18034](https://github.com/netdata/netdata/issues/18034))
58 +- Fix diskspace plugin in Docker ([#18035](https://github.com/netdata/netdata/issues/18035))
59 +- Docs: fix go.d/weblog parser config ([#18037](https://github.com/netdata/netdata/issues/18037))
60 +- Regenerate integrations.js ([#18038](https://github.com/netdata/netdata/issues/18038))
61 +- Fix installing netdata-updater svc/timer for native packages ([#18032](https://github.com/netdata/netdata/issues/18032))
62 +- Diskspace: update exclude paths/filesystems ([#18039](https://github.com/netdata/netdata/issues/18039))
63 +- Proc/diskstats: Increase accuracy of average IO operation time ([#18040](https://github.com/netdata/netdata/issues/18040))
64 +- Bump github.com/gofrs/flock from 0.8.1 to 0.11.0 in /src/go/collectors/go.d.plugin ([#18045](https://github.com/netdata/netdata/issues/18045))
65 +- Bump go.mongodb.org/mongo-driver from 1.15.1 to 1.16.0 in /src/go/collectors/go.d.plugin ([#18048](https://github.com/netdata/netdata/issues/18048))
66 +- Bump actions/add-to-project from 1.0.1 to 1.0.2 ([#18043](https://github.com/netdata/netdata/issues/18043))
67 +- Bump github.com/docker/docker from 27.0.0+incompatible to 27.0.2+incompatible in /src/go/collectors/go.d.plugin ([#18047](https://github.com/netdata/netdata/issues/18047))
68 +- Bump github.com/likexian/whois-parser from 1.24.16 to 1.24.18 in /src/go/collectors/go.d.plugin ([#18046](https://github.com/netdata/netdata/issues/18046))
69 +- Bump github.com/prometheus/common from 0.54.0 to 0.55.0 in /src/go/collectors/go.d.plugin ([#18049](https://github.com/netdata/netdata/issues/18049))
70 +- Update role-based-access-model.md ([#18050](https://github.com/netdata/netdata/issues/18050))
71 +- Docs: deploy docker add host root mount ([#18051](https://github.com/netdata/netdata/issues/18051))
72 +- Regenerate integrations.js ([#18052](https://github.com/netdata/netdata/issues/18052))
73 +- Go.d update packages ([#18054](https://github.com/netdata/netdata/issues/18054))
74 +- Go.d chrony add serverstats query (disabled for now) ([#18055](https://github.com/netdata/netdata/issues/18055))
75 +- Ndsudo add 'chronyc serverstats' ([#18056](https://github.com/netdata/netdata/issues/18056))
76 +- Freeipmi: add "no-restart" ([#17931](https://github.com/netdata/netdata/issues/17931)) ([#18057](https://github.com/netdata/netdata/issues/18057))
77 +- Run the agent as a Windows service. ([#17766](https://github.com/netdata/netdata/issues/17766))
78 +- Restructure go.d ([#18058](https://github.com/netdata/netdata/issues/18058))
79 +- Go.d vsphere add update_every ui:help ([#18060](https://github.com/netdata/netdata/issues/18060))
80 +- Fix prometeus export: missing comma before "instance" label ([#18061](https://github.com/netdata/netdata/issues/18061))
81 +- Go.d postgres github.com/jackc/pgx/v5 ([#18062](https://github.com/netdata/netdata/issues/18062))
82 +- Remove hard-coded url from python.d puppet chart plugin ([#18064](https://github.com/netdata/netdata/issues/18064))
83 +- Disable health thread on windows ([#18066](https://github.com/netdata/netdata/issues/18066))
84 +- Go.d set sensitive props to "password" widget ([#18068](https://github.com/netdata/netdata/issues/18068))
85 +- Update golang version in netdata.spec ([#18069](https://github.com/netdata/netdata/issues/18069))
86 +- Port ipfs from python to Go ([#18070](https://github.com/netdata/netdata/issues/18070))
87 +- Regenerate integrations.js ([#18073](https://github.com/netdata/netdata/issues/18073))
88 +- Go.d ipfs fix tests ([#18074](https://github.com/netdata/netdata/issues/18074))
89 +- Health add alarm docker container down ([#18075](https://github.com/netdata/netdata/issues/18075))
90 +- Proc: collect ksm/swap/cma/zswap only when feature enabled ([#18076](https://github.com/netdata/netdata/issues/18076))
91 +- Bump golang.org/x/net from 0.26.0 to 0.27.0 in /src/go ([#18078](https://github.com/netdata/netdata/issues/18078))
92 +- Bump github.com/gofrs/flock from 0.11.0 to 0.12.0 in /src/go ([#18077](https://github.com/netdata/netdata/issues/18077))
93 +- Go.d fail2ban: add docker support ([#18081](https://github.com/netdata/netdata/issues/18081))
94 +- Netdata.spec/plugin-go: added weak dependency for lm_sensors ([#18067](https://github.com/netdata/netdata/issues/18067))
95 +- Relax strict version constraints for DEB package dependencies. ([#17681](https://github.com/netdata/netdata/issues/17681))
96 +- Remove Debian 10 from supported platforms. ([#18083](https://github.com/netdata/netdata/issues/18083))
97 +- Remove Ubuntu 23.10 from supported platforms. ([#18082](https://github.com/netdata/netdata/issues/18082))
98 +- Switch to legacy images for CentOS 7 CI. ([#18085](https://github.com/netdata/netdata/issues/18085))
99 +- Update go.d path in docs and ci ([#18087](https://github.com/netdata/netdata/issues/18087))
100 +- Regenerate integrations.js ([#18086](https://github.com/netdata/netdata/issues/18086))
101 +- Track LTS for Debian EOL status. ([#18084](https://github.com/netdata/netdata/issues/18084))
102 +- Go.d fix compiling for windows ([#18091](https://github.com/netdata/netdata/issues/18091))
103 +- Go.d megacli: return error if no adapters found (parsing failed) ([#18090](https://github.com/netdata/netdata/issues/18090))
104 +- Semaphore (common context) ([#18041](https://github.com/netdata/netdata/issues/18041))
105 +- Ndsudo set uid/gid/egid to 0 before executing command ([#18093](https://github.com/netdata/netdata/issues/18093))
106 +- Go.d use pgx v4 for pgbouncer ([#18097](https://github.com/netdata/netdata/issues/18097))
107 +- Update securing-netdata-agents.md ([#18096](https://github.com/netdata/netdata/issues/18096))
108 +- Fix network sent dimensions ([#18099](https://github.com/netdata/netdata/issues/18099))
109 +- Spawn server (Windows support for external plugins) ([#17866](https://github.com/netdata/netdata/issues/17866))
110 +- Add authorization to spawn requests ([#18103](https://github.com/netdata/netdata/issues/18103))
111 +- Docs: deploy docker add host root mount (stable) ([#18105](https://github.com/netdata/netdata/issues/18105))
112 +- Regenerate integrations.js ([#18106](https://github.com/netdata/netdata/issues/18106))
113 +- Fix detection of Coverity archive in scan script. ([#18104](https://github.com/netdata/netdata/issues/18104))
114 +- Add port service names to network viewer ([#18107](https://github.com/netdata/netdata/issues/18107))
115 +- Move "api key" option in stream.conf ([#18108](https://github.com/netdata/netdata/issues/18108))
116 +- Port puppet collector from Python to Go ([#18088](https://github.com/netdata/netdata/issues/18088))
117 +- Regenerate integrations.js ([#18110](https://github.com/netdata/netdata/issues/18110))
118 +- EBPF cgroup and mutex ([#17915](https://github.com/netdata/netdata/issues/17915))
119 +- Regenerate integrations.js ([#18114](https://github.com/netdata/netdata/issues/18114))
120 +- Spawn server improvements ([#18115](https://github.com/netdata/netdata/issues/18115))
121 +- Make claiming work again ([#18116](https://github.com/netdata/netdata/issues/18116))
122 +- Spawn server fixes 3 ([#18117](https://github.com/netdata/netdata/issues/18117))
123 +- Log in the same line ([#18118](https://github.com/netdata/netdata/issues/18118))
124 +- Go.d smartctl: add scsi read/write/verify error rate ([#18119](https://github.com/netdata/netdata/issues/18119))
125 +- Regenerate integrations.js ([#18124](https://github.com/netdata/netdata/issues/18124))
126 +- Go.d whoisquery fix "days until" in config_schema.json ([#18121](https://github.com/netdata/netdata/issues/18121))
127 +- Go.d filecheck fix dir existence chart label ([#18126](https://github.com/netdata/netdata/issues/18126))
128 +- Spawn server fixes No 4 ([#18127](https://github.com/netdata/netdata/issues/18127))
129 +- Spawn server improvements 5 ([#18131](https://github.com/netdata/netdata/issues/18131))
130 +- Go.d fix url path overwrite ([#18132](https://github.com/netdata/netdata/issues/18132))
131 +- Docs: go.d mysql: remove unix sockets from auto_detection ([#18134](https://github.com/netdata/netdata/issues/18134))
132 +- Regenerate integrations.js ([#18135](https://github.com/netdata/netdata/issues/18135))
133 +- Spawn server fixes 6 ([#18136](https://github.com/netdata/netdata/issues/18136))
134 +- Go.d smartctl add "extra_devices" option ([#18140](https://github.com/netdata/netdata/issues/18140))
135 +- Regenerate integrations.js ([#18141](https://github.com/netdata/netdata/issues/18141))
136 +- Ndsudo add smartctl scan-open ([#18143](https://github.com/netdata/netdata/issues/18143))
137 +- Go.d smartctl: do scan only once on startup if interval is 0 ([#18144](https://github.com/netdata/netdata/issues/18144))
138 +- Regenerate integrations.js ([#18145](https://github.com/netdata/netdata/issues/18145))
139 +- Go.d smartctl: use scan-open when "no_check_power_mode" is "never" ([#18146](https://github.com/netdata/netdata/issues/18146))
140 +- Bump github.com/likexian/whois from 1.15.3 to 1.15.4 in /src/go ([#18169](https://github.com/netdata/netdata/issues/18169))
141 +- Bump github.com/lmittmann/tint from 1.0.4 to 1.0.5 in /src/go ([#18167](https://github.com/netdata/netdata/issues/18167))
142 +- Fix detection of Coverity archive path in scan script. ([#18112](https://github.com/netdata/netdata/issues/18112))
143 +- Stop a bit more quickly on a failure when using Ninja. ([#18101](https://github.com/netdata/netdata/issues/18101))
144 +- Bump CMake supported versions. ([#18102](https://github.com/netdata/netdata/issues/18102))
145 +- Fix issue in platform EOL check workflow. ([#18171](https://github.com/netdata/netdata/issues/18171))
146 +- Fix logic bug in platform EOL check code. ([#18172](https://github.com/netdata/netdata/issues/18172))
147 +- Add support for sending Telegram notifications to topics ([#18173](https://github.com/netdata/netdata/issues/18173))
148 +- Regenerate integrations.js ([#18174](https://github.com/netdata/netdata/issues/18174))
149 +- Docs: add "install smartmontools" for Docker netdata ([#18175](https://github.com/netdata/netdata/issues/18175))
150 +- Regenerate integrations.js ([#18176](https://github.com/netdata/netdata/issues/18176))
151 +- Addition to postfix meta ([#18177](https://github.com/netdata/netdata/issues/18177))
152 +- Go.d smarctl simplify scan open ([#18180](https://github.com/netdata/netdata/issues/18180))
153 +- Port AP collector to Go ([#18170](https://github.com/netdata/netdata/issues/18170))
154 +- Regenerate integrations.js ([#18181](https://github.com/netdata/netdata/issues/18181))
155 +- Docs: go.d/ap update data_collection description ([#18182](https://github.com/netdata/netdata/issues/18182))
156 +- Regenerate integrations.js ([#18183](https://github.com/netdata/netdata/issues/18183))
157 +- Create release branches for major releases as well. ([#18184](https://github.com/netdata/netdata/issues/18184))
158 +- Personalize installer and uninstaller Windows (Control Panel) ([#18147](https://github.com/netdata/netdata/issues/18147))
159 +- Ndsudo setuid before looking for command ([#18189](https://github.com/netdata/netdata/issues/18189))
160 +- Remove logs-management plugin. ([#18186](https://github.com/netdata/netdata/issues/18186))
161 +- Improve alerts ([#18080](https://github.com/netdata/netdata/issues/18080))
162 +- Port Icecast collector to Go ([#18190](https://github.com/netdata/netdata/issues/18190))
163 +- Regenerate integrations.js ([#18193](https://github.com/netdata/netdata/issues/18193))
164 +- Go.d icecast single source response ([#18195](https://github.com/netdata/netdata/issues/18195))
165 +- Remove fluent-bit submodule ([#18196](https://github.com/netdata/netdata/issues/18196))
166 +- Add Widnows CI jobs. ([#18187](https://github.com/netdata/netdata/issues/18187))
167 +- Skip building ndsudo when it’s not actually needed. ([#18191](https://github.com/netdata/netdata/issues/18191))
168 +- Do not include REMOVED status in the alert snapshot ([#18197](https://github.com/netdata/netdata/issues/18197))
169 +- Do not rely on the queued flag to queue a context ([#18198](https://github.com/netdata/netdata/issues/18198))
170 +- Fix RPM dependency issue with old logs management plugin package.
171 +- Docs: simplify "Disk Requirements and Retention" ([#18205](https://github.com/netdata/netdata/issues/18205))
172 +- Bump k8s.io/client-go from 0.30.2 to 0.30.3 in /src/go ([#18208](https://github.com/netdata/netdata/issues/18208))
173 +- Go.d megacli: add bbu capacity degradation % ([#18211](https://github.com/netdata/netdata/issues/18211))
174 +- Regenerate integrations.js ([#18212](https://github.com/netdata/netdata/issues/18212))
175 +- Dont install test bash scripts by default ([#18214](https://github.com/netdata/netdata/issues/18214))
176 +- Port memcached collector to Go ([#18209](https://github.com/netdata/netdata/issues/18209))
177 +- Go.d chrony fix client read/write timeout ([#18215](https://github.com/netdata/netdata/issues/18215))
178 +- Regenerate integrations.js ([#18216](https://github.com/netdata/netdata/issues/18216))
179 +- Go.d drop using cancelreader ([#18219](https://github.com/netdata/netdata/issues/18219))
180 +- Go.d fix netdata dir path on win under msys ([#18221](https://github.com/netdata/netdata/issues/18221))
181 +- Port Tomcat collector to Go ([#18220](https://github.com/netdata/netdata/issues/18220))
182 +- Regenerate integrations.js ([#18225](https://github.com/netdata/netdata/issues/18225))
183 +- Improve windows agent ([#18227](https://github.com/netdata/netdata/issues/18227))
184 +- Windows build fix ([#18231](https://github.com/netdata/netdata/issues/18231))
185 +- Bump github.com/gofrs/flock from 0.12.0 to 0.12.1 in /src/go ([#18235](https://github.com/netdata/netdata/issues/18235))
186 +- Bump github.com/prometheus-community/pro-bing from 0.4.0 to 0.4.1 in /src/go ([#18237](https://github.com/netdata/netdata/issues/18237))
187 +- Bump github.com/vmware/govmomi from 0.38.0 to 0.39.0 in /src/go ([#18236](https://github.com/netdata/netdata/issues/18236))
188 +- Bump github.com/docker/docker from 27.0.3+incompatible to 27.1.1+incompatible in /src/go ([#18234](https://github.com/netdata/netdata/issues/18234))
189 +- Update libbpf (1.45.0) ([#18226](https://github.com/netdata/netdata/issues/18226))
190 +- Fix up CMake feature handling for Windows. ([#18229](https://github.com/netdata/netdata/issues/18229))
191 +- Default to release with debug symbols for Windows builds. ([#18230](https://github.com/netdata/netdata/issues/18230))
192 +- Support IPV6 when establishing MQTT connection to the cloud ([#18217](https://github.com/netdata/netdata/issues/18217))
193 +- Update node info payload ([#18240](https://github.com/netdata/netdata/issues/18240))
194 +- Bump github.com/tidwall/gjson from 1.17.1 to 1.17.3 in /src/go ([#18244](https://github.com/netdata/netdata/issues/18244))
195 +- Clean up unneeded depencdencies. ([#18242](https://github.com/netdata/netdata/issues/18242))
196 +- Fix OS detection messages in CMake. ([#18243](https://github.com/netdata/netdata/issues/18243))
197 +- Update Cloud MSTeam documentation ([#18224](https://github.com/netdata/netdata/issues/18224))
198 +- Docs: add a note that the min dbengine tier size is 256 MB ([#18256](https://github.com/netdata/netdata/issues/18256))
199 +- Update README.md ([#18246](https://github.com/netdata/netdata/issues/18246))
200 +- Docs: improve "Settings on Microsoft Teams" description ([#18257](https://github.com/netdata/netdata/issues/18257))
201 +- Regenerate integrations.js ([#18258](https://github.com/netdata/netdata/issues/18258))
202 +- Update Installer Code (Services) ([#18253](https://github.com/netdata/netdata/issues/18253))
203 +- Go.d x509check add not_revoked dimension ([#18261](https://github.com/netdata/netdata/issues/18261))
204 +- Regenerate integrations.js ([#18262](https://github.com/netdata/netdata/issues/18262))
205 +- Don’t install netdata-updater code on Windows. ([#18251](https://github.com/netdata/netdata/issues/18251))
206 +- Apps conf add beanstalkd ([#18267](https://github.com/netdata/netdata/issues/18267))
207 +- Go.d beanstalk ([#18263](https://github.com/netdata/netdata/issues/18263))
208 +- Fix CI issues in build workflow. ([#18266](https://github.com/netdata/netdata/issues/18266))
209 +- Remove python.d/beanstalk ([#18259](https://github.com/netdata/netdata/issues/18259))
210 +- Go.d smartctl: improve checking scsi-sat in scan ([#18269](https://github.com/netdata/netdata/issues/18269))
211 +- Regenerate integrations.js ([#18268](https://github.com/netdata/netdata/issues/18268))
212 +- Go.d smartctl: undo extra_devices skip from #18269 ([#18270](https://github.com/netdata/netdata/issues/18270))
213 +- Go.d fix dimension id check ([#18272](https://github.com/netdata/netdata/issues/18272))
214 +- Go.d snmp: adjust max repetitions automatically ([#18274](https://github.com/netdata/netdata/issues/18274))
215 +- Set GOPROXY when building go.d.plugin ([#18275](https://github.com/netdata/netdata/issues/18275))
216 +- Add detailed reporting of failed checksums in kickstart script. ([#18265](https://github.com/netdata/netdata/issues/18265))
217 +- Add code signing for Windows executables. ([#18222](https://github.com/netdata/netdata/issues/18222))
218 +- Fix typos in code signing steps in Windows build job.
219 +- Add go.d/rethinkdb ([#18278](https://github.com/netdata/netdata/issues/18278))
220 +- Remove python.d/rethinkdb ([#18277](https://github.com/netdata/netdata/issues/18277))
221 +- Regenerate integrations.js ([#18280](https://github.com/netdata/netdata/issues/18280))
222 +- Inital commit for Go squid ([#18279](https://github.com/netdata/netdata/issues/18279))
223 +- Squid collector port to Go ([#18276](https://github.com/netdata/netdata/issues/18276))
224 +- Regenerate integrations.js ([#18282](https://github.com/netdata/netdata/issues/18282))
225 +- Bump go.mongodb.org/mongo-driver from 1.16.0 to 1.16.1 in /src/go ([#18286](https://github.com/netdata/netdata/issues/18286))
226 +- Bump github.com/gosnmp/gosnmp from 1.37.0 to 1.38.0 in /src/go ([#18287](https://github.com/netdata/netdata/issues/18287))
227 +- Bump golang.org/x/net from 0.27.0 to 0.28.0 in /src/go ([#18284](https://github.com/netdata/netdata/issues/18284))
228 +- Bump google-github-actions/upload-cloud-storage from 2.1.0 to 2.1.2 ([#18283](https://github.com/netdata/netdata/issues/18283))
229 +- Bump google-github-actions/setup-gcloud from 2.1.0 to 2.1.1 ([#18285](https://github.com/netdata/netdata/issues/18285))
230 +- Go.d rethinkdb fix cluster_servers_stats_request ([#18289](https://github.com/netdata/netdata/issues/18289))
231 +- Remove python.d/alarms ([#18290](https://github.com/netdata/netdata/issues/18290))
232 +- Regenerate integrations.js ([#18292](https://github.com/netdata/netdata/issues/18292))
233 +- Remove python.d/gearman ([#18291](https://github.com/netdata/netdata/issues/18291))
234 +- Add go.d/gearman ([#18294](https://github.com/netdata/netdata/issues/18294))
235 +- Go.d gearman fix meta ([#18298](https://github.com/netdata/netdata/issues/18298))
236 +- Regenerate integrations.js ([#18299](https://github.com/netdata/netdata/issues/18299))
237 +- Add nsd-control to ndsudo ([#18301](https://github.com/netdata/netdata/issues/18301))
238 +- Remove python.d/nsd ([#18300](https://github.com/netdata/netdata/issues/18300))
239 +- Add go.d/nsd ([#18302](https://github.com/netdata/netdata/issues/18302))
240 +- Regenerate integrations.js ([#18303](https://github.com/netdata/netdata/issues/18303))
241 +- Add exim to ndsudo ([#18304](https://github.com/netdata/netdata/issues/18304))
242 +- Add go.d/exim ([#18306](https://github.com/netdata/netdata/issues/18306))
243 +- Remove python.d/exim ([#18305](https://github.com/netdata/netdata/issues/18305))
244 +- Regenerate integrations.js ([#18308](https://github.com/netdata/netdata/issues/18308))
245 +- Go.d nvidia_smi remove "csv" mode ([#18311](https://github.com/netdata/netdata/issues/18311))
246 +- Regenerate integrations.js ([#18312](https://github.com/netdata/netdata/issues/18312))
247 +- Go.d nvidia_smi: add loop mode ([#18313](https://github.com/netdata/netdata/issues/18313))
248 +- Use system certificate configuration for Yum/DNF repos. ([#18293](https://github.com/netdata/netdata/issues/18293))
249 +- Go.d nvidia_smi: enable by default ([#18315](https://github.com/netdata/netdata/issues/18315))
250 +- Remove python.d/nvidia_smi ([#18316](https://github.com/netdata/netdata/issues/18316))
251 +- Regenerate integrations.js ([#18317](https://github.com/netdata/netdata/issues/18317))
252 +- Handle GOROOT inside build system instead of outside. ([#18296](https://github.com/netdata/netdata/issues/18296))
253 +- Go.d redis: fix default "address" in config_schema.json ([#18320](https://github.com/netdata/netdata/issues/18320))
254 +- Add go.d dovecot ([#18321](https://github.com/netdata/netdata/issues/18321))
255 +- Remove python.d/dovecot ([#18322](https://github.com/netdata/netdata/issues/18322))
256 +- Regenerate integrations.js ([#18324](https://github.com/netdata/netdata/issues/18324))
257 +- Remove python.d/uwsgi ([#18325](https://github.com/netdata/netdata/issues/18325))
258 +- Add go.d/uwsgi ([#18326](https://github.com/netdata/netdata/issues/18326))
259 +- Regenerate integrations.js ([#18328](https://github.com/netdata/netdata/issues/18328))
260 +- Add trigger to clean up chart labels and charts ([#18248](https://github.com/netdata/netdata/issues/18248))
261 +- Remove python.d/riakkv ([#18329](https://github.com/netdata/netdata/issues/18329))
262 +- Go.d riakkv ([#18330](https://github.com/netdata/netdata/issues/18330))
263 +- Ensure files in /usr/lib/netdata/system are not executable. ([#18318](https://github.com/netdata/netdata/issues/18318))
264 +- Regenerate integrations.js ([#18333](https://github.com/netdata/netdata/issues/18333))
265 +- Add dashboard v2 license to readme ([#18334](https://github.com/netdata/netdata/issues/18334))
266 +- Add i2pd to apps_groups.conf ([#18335](https://github.com/netdata/netdata/issues/18335))
267 +- Bump k8s.io/client-go from 0.30.3 to 0.31.0 in /src/go ([#18336](https://github.com/netdata/netdata/issues/18336))
268 +- Bump github.com/miekg/dns from 1.1.61 to 1.1.62 in /src/go ([#18337](https://github.com/netdata/netdata/issues/18337))
269 +- Bump github.com/docker/docker from 27.1.1+incompatible to 27.1.2+incompatible in /src/go ([#18340](https://github.com/netdata/netdata/issues/18340))
270 +- Bump github.com/vmware/govmomi from 0.39.0 to 0.40.0 in /src/go ([#18338](https://github.com/netdata/netdata/issues/18338))
271 +- Add license to readmes menu ([#18345](https://github.com/netdata/netdata/issues/18345))
272 +- Fix sending CLEAR notifications with critical severity modifier ([#18347](https://github.com/netdata/netdata/issues/18347))
273 +- Remove python.d/monit ([#18343](https://github.com/netdata/netdata/issues/18343))
274 +- Add missing initial slashes for internal documation links ([#18348](https://github.com/netdata/netdata/issues/18348))
275 +- Add go.d/monit ([#18344](https://github.com/netdata/netdata/issues/18344))
276 +- Regenerate integrations.js ([#18350](https://github.com/netdata/netdata/issues/18350))
277 +- EBPF memory ([#18232](https://github.com/netdata/netdata/issues/18232))
278 +- Go.d httpcheck: add status description to docs ([#18351](https://github.com/netdata/netdata/issues/18351))
279 +- Regenerate integrations.js ([#18353](https://github.com/netdata/netdata/issues/18353))
280 +- Remove python.d lm_sensors.py ([#18356](https://github.com/netdata/netdata/issues/18356))
281 +- Remove python.d/retroshare ([#18355](https://github.com/netdata/netdata/issues/18355))
282 +- Regenerate integrations.js ([#18357](https://github.com/netdata/netdata/issues/18357))
283 +- Update README.md
284 +- Remove python.d/tor ([#18358](https://github.com/netdata/netdata/issues/18358))
285 +- Add go.d/tor ([#18361](https://github.com/netdata/netdata/issues/18361))
286 +- Regenerate integrations.js ([#18363](https://github.com/netdata/netdata/issues/18363))
287 +- Bump github.com/axiomhq/hyperloglog from 0.0.0-20240507144631-af9851f82b27 to 0.1.0 in /src/go ([#18367](https://github.com/netdata/netdata/issues/18367))
288 +- Bump github.com/vmware/govmomi from 0.40.0 to 0.42.0 in /src/go ([#18366](https://github.com/netdata/netdata/issues/18366))
289 +- EBPF (reduce CPU and memory usage) ([#18365](https://github.com/netdata/netdata/issues/18365))
290 +- Go.d squidlog: improve parser init and parsing ([#18368](https://github.com/netdata/netdata/issues/18368))
291 +- Remove python.d/example ([#18369](https://github.com/netdata/netdata/issues/18369))
292 +- Remove python.d/changefinder ([#18370](https://github.com/netdata/netdata/issues/18370))
293 +- Regenerate integrations.js ([#18373](https://github.com/netdata/netdata/issues/18373))
294 +- Go.d dnsmasq: query metrics individually to handle v2.90+ SERVFAIL ([#18376](https://github.com/netdata/netdata/issues/18376))
295 +- Add SCIM integration docs ([#18094](https://github.com/netdata/netdata/issues/18094))
296 +- Regenerate integrations.js ([#18377](https://github.com/netdata/netdata/issues/18377))
297 +- Ci gen integrations: add cloud-authentication dir ([#18378](https://github.com/netdata/netdata/issues/18378))
298 +- Go.d docs: add a note that debug mode not supported for Dyncfg jobs ([#18379](https://github.com/netdata/netdata/issues/18379))
299 +- Regenerate integrations.js ([#18380](https://github.com/netdata/netdata/issues/18380))
300 +- Remove host immediately on stale node removal ([#18381](https://github.com/netdata/netdata/issues/18381))
301 +- Switch to DEB822 format for APT repository configuration. ([#18374](https://github.com/netdata/netdata/issues/18374))
302 +- Remove debug message ([#18382](https://github.com/netdata/netdata/issues/18382))
303 +- Origin-sign all DEB packages regardless of upload target. ([#18372](https://github.com/netdata/netdata/issues/18372))
304 +- Go.d zfspool: collect vdev health state ([#18383](https://github.com/netdata/netdata/issues/18383))
305 +- Regenerate integrations.js ([#18387](https://github.com/netdata/netdata/issues/18387))
306 +- Update windows installer ([#18385](https://github.com/netdata/netdata/issues/18385))
307 +- Remove proc zfspools ([#18389](https://github.com/netdata/netdata/issues/18389))
308 +- Modify CLI command remove-stale-node to accept hostname ([#18386](https://github.com/netdata/netdata/issues/18386))
309 +- Regenerate integrations.js ([#18391](https://github.com/netdata/netdata/issues/18391))
310 +- Go.d dnsmsasq_dhcp: improve parsing of dhcp ranges ([#18394](https://github.com/netdata/netdata/issues/18394))
311 +- Fix issues with file-check for build workflow.
312 +
313 +## [1.46.0] - 2024-06-19
314 +
315 +### Merged Pull Requests:
316 +
317 +- Add -Wno-builtin-macro-redefined to compiler flags. ([#17209](https://github.com/netdata/netdata/issues/17209))
318 +- Fix job depdendencies in Docker workflow. ([#17215](https://github.com/netdata/netdata/issues/17215))
319 +- Add warning on old custom dashboards and rephrase existing page ([#17214](https://github.com/netdata/netdata/issues/17214))
320 +- Bump github.com/docker/docker from 25.0.4+incompatible to 25.0.5+incompatible in /src/go/collectors/go.d.plugin ([#17211](https://github.com/netdata/netdata/issues/17211))
321 +- Go.d: local-listeners sd: fix mariadbd comm ([#17218](https://github.com/netdata/netdata/issues/17218))
322 +- Reduce flush operations during journal build ([#17220](https://github.com/netdata/netdata/issues/17220))
323 +- Go.d: mysql: disable session query log and slow query log ([#17219](https://github.com/netdata/netdata/issues/17219))
324 +- Fixing the helm login command for the onprem installation ([#17222](https://github.com/netdata/netdata/issues/17222))
325 +- Update flowchart cloud-onprem ([#17227](https://github.com/netdata/netdata/issues/17227))
326 +- Feat: add netdata cloud api-tokens docs ([#17225](https://github.com/netdata/netdata/issues/17225))
327 +- Fix html ([#17228](https://github.com/netdata/netdata/issues/17228))
328 +- Update README.md
329 +- Dbengine: cache bug-fix when under pressure ([#17231](https://github.com/netdata/netdata/issues/17231))
330 +- Updated dbengine unittest ([#17232](https://github.com/netdata/netdata/issues/17232))
331 +- DBENGINE: use gorilla by default ([#17234](https://github.com/netdata/netdata/issues/17234))
332 +- Code cleanup ([#17237](https://github.com/netdata/netdata/issues/17237))
333 +- Fix MRG Metric refcount issue ([#17239](https://github.com/netdata/netdata/issues/17239))
334 +- DBENGINE: support ZSTD compression ([#17244](https://github.com/netdata/netdata/issues/17244))
335 +- Bump github.com/docker/docker from 25.0.5+incompatible to 26.0.0+incompatible in /src/go/collectors/go.d.plugin ([#17248](https://github.com/netdata/netdata/issues/17248))
336 +- Bump actions/add-to-project from 0.6.0 to 0.6.1 ([#17245](https://github.com/netdata/netdata/issues/17245))
337 +- Bump github.com/prometheus/common from 0.50.0 to 0.51.1 in /src/go/collectors/go.d.plugin ([#17247](https://github.com/netdata/netdata/issues/17247))
338 +- Go.d: sd local-listeners: discover /proc/net/tcp6 only apps ([#17252](https://github.com/netdata/netdata/issues/17252))
339 +- Remove USR1 "Save internal DB to disk" ([#17249](https://github.com/netdata/netdata/issues/17249))
340 +- Go.d: sd local-listeners: drop docker-proxy targets ([#17254](https://github.com/netdata/netdata/issues/17254))
341 +- Go.d: job manager: set config defaults ([#17255](https://github.com/netdata/netdata/issues/17255))
342 +- Add dbengine compression info in -W buildinfo ([#17257](https://github.com/netdata/netdata/issues/17257))
343 +- Try finding OpenSSL using pkg-config first on macOS. ([#17250](https://github.com/netdata/netdata/issues/17250))
344 +- Assorted macOS build fixes. ([#17216](https://github.com/netdata/netdata/issues/17216))
345 +- Include reachability alert fields ([#17258](https://github.com/netdata/netdata/issues/17258))
346 +- Update whats new ([#17251](https://github.com/netdata/netdata/issues/17251))
347 +- Docs: update pagerduty meta ([#17264](https://github.com/netdata/netdata/issues/17264))
348 +- Regenerate integrations.js ([#17261](https://github.com/netdata/netdata/issues/17261))
349 +- Reset database connection handle on close ([#17266](https://github.com/netdata/netdata/issues/17266))
350 +- Fix duplicate chart context ([#17267](https://github.com/netdata/netdata/issues/17267))
351 +- Regenerate integrations.js ([#17268](https://github.com/netdata/netdata/issues/17268))
352 +- Go.d: config schemas update: prohibit additional properties ([#17269](https://github.com/netdata/netdata/issues/17269))
353 +- Add additional fields to webhook reachability notifications ([#17271](https://github.com/netdata/netdata/issues/17271))
354 +- Go.d: dyncfg: allow "name" additional property ([#17272](https://github.com/netdata/netdata/issues/17272))
355 +- Regenerate integrations.js ([#17273](https://github.com/netdata/netdata/issues/17273))
356 +- Trigger subsequent workflows for Helmchart and MSI ([#17224](https://github.com/netdata/netdata/issues/17224))
357 +- Minor fix in monitor releases workflow ([#17256](https://github.com/netdata/netdata/issues/17256))
358 +- Enable sentry on all Debian and Ubuntu versions. ([#17259](https://github.com/netdata/netdata/issues/17259))
359 +- Correctly propagate errors from child scripts in kickstart.sh. ([#17263](https://github.com/netdata/netdata/issues/17263))
360 +- Apps_proc_pid_fd: ignore kf_sock_inpcb on modern FreeBSD ([#17243](https://github.com/netdata/netdata/issues/17243))
361 +- REFERENCE - Fix small unligned typo ([#17274](https://github.com/netdata/netdata/issues/17274))
362 +- Revert "Enable sentry on all Debian and Ubuntu versions." ([#17279](https://github.com/netdata/netdata/issues/17279))
363 +- Correctly handle libyaml linking for log2journal. ([#17276](https://github.com/netdata/netdata/issues/17276))
364 +- Go.d: socket package: don't set client on connect() err ([#17283](https://github.com/netdata/netdata/issues/17283))
365 +- Go.d: sd docker: create multiple nginx configs ([#17285](https://github.com/netdata/netdata/issues/17285))
366 +- Go.d: set User-Agent automatically when creating HTTP req ([#17286](https://github.com/netdata/netdata/issues/17286))
367 +- Fix conditional for Amazon Linux 2023 in repoconfig spec file. ([#17056](https://github.com/netdata/netdata/issues/17056))
368 +- Bump Wandalen/wretry.action from 1 to 2 ([#17246](https://github.com/netdata/netdata/issues/17246))
369 +- Update Codeowners ([#17270](https://github.com/netdata/netdata/issues/17270))
370 +- Fix action lints ([#17120](https://github.com/netdata/netdata/issues/17120))
371 +- Go.d: don't create jobs with unknown module ([#17289](https://github.com/netdata/netdata/issues/17289))
372 +- Fix positive and negative matches on labels ([#17290](https://github.com/netdata/netdata/issues/17290))
373 +- Fix rrdlabels traversal ([#17292](https://github.com/netdata/netdata/issues/17292))
374 +- Add label for cgroup ([#17156](https://github.com/netdata/netdata/issues/17156))
375 +- Compatibility with Prometheus HELP ([#17191](https://github.com/netdata/netdata/issues/17191))
376 +- Bump tj-actions/changed-files from 43 to 44 ([#17296](https://github.com/netdata/netdata/issues/17296))
377 +- Update hpssa.chart.py ([#17294](https://github.com/netdata/netdata/issues/17294))
378 +- Bump github.com/go-sql-driver/mysql from 1.8.0 to 1.8.1 in /src/go/collectors/go.d.plugin ([#17299](https://github.com/netdata/netdata/issues/17299))
379 +- Bump github.com/vmware/govmomi from 0.36.1 to 0.36.2 in /src/go/collectors/go.d.plugin ([#17300](https://github.com/netdata/netdata/issues/17300))
380 +- Go.d: sd local listeners: add unix socket job ([#17304](https://github.com/netdata/netdata/issues/17304))
381 +- Fix repoconfig publishing. ([#17288](https://github.com/netdata/netdata/issues/17288))
382 +- Add Fedora 40 to CI, packages, and support policy. ([#17282](https://github.com/netdata/netdata/issues/17282))
383 +- Go.d: sd ll: add mysql socket jobs ([#17305](https://github.com/netdata/netdata/issues/17305))
384 +- Bump Wandalen/wretry.action from 2 to 3 ([#17297](https://github.com/netdata/netdata/issues/17297))
385 +- Bump actions/add-to-project from 0.6.1 to 1.0.0 ([#17298](https://github.com/netdata/netdata/issues/17298))
386 +- Fix handling of post-release workflows triggered by Docker workflow. ([#17306](https://github.com/netdata/netdata/issues/17306))
387 +- Update metadata frequency ([#17307](https://github.com/netdata/netdata/issues/17307))
388 +- Fix SWAP pages ([#17295](https://github.com/netdata/netdata/issues/17295))
389 +- Dyncfg function on parents should not require any access rights ([#17310](https://github.com/netdata/netdata/issues/17310))
390 +- Fix assorted issues in the Docker build process. ([#17312](https://github.com/netdata/netdata/issues/17312))
391 +- Drop legacy dbengine support ([#17315](https://github.com/netdata/netdata/issues/17315))
392 +- Set min thread stack size to 1 MB ([#17317](https://github.com/netdata/netdata/issues/17317))
393 +- Add basic support for dinit in our system service handling code. ([#16836](https://github.com/netdata/netdata/issues/16836))
394 +- Drop generic bitmap implementation. ([#17322](https://github.com/netdata/netdata/issues/17322))
395 +- Remove old overview infrastructure and add home tab doc ([#17323](https://github.com/netdata/netdata/issues/17323))
396 +- Go.d: schemas: add missing "body" and "method" ([#17325](https://github.com/netdata/netdata/issues/17325))
397 +- Bump github.com/likexian/whois from 1.15.1 to 1.15.2 in /src/go/collectors/go.d.plugin ([#17337](https://github.com/netdata/netdata/issues/17337))
398 +- Bump github.com/prometheus/common from 0.51.1 to 0.52.2 in /src/go/collectors/go.d.plugin ([#17335](https://github.com/netdata/netdata/issues/17335))
399 +- Bump github.com/vmware/govmomi from 0.36.2 to 0.36.3 in /src/go/collectors/go.d.plugin ([#17336](https://github.com/netdata/netdata/issues/17336))
400 +- Fix proc-power-supply charts family ([#17338](https://github.com/netdata/netdata/issues/17338))
401 +- Remove unused install_go.sh ([#17339](https://github.com/netdata/netdata/issues/17339))
402 +- Go.d: schema windows: fix url placeholder scheme ([#17326](https://github.com/netdata/netdata/issues/17326))
403 +- Fix invalid var in prepare_offline_install_source() ([#17342](https://github.com/netdata/netdata/issues/17342))
404 +- Call with resize true when dictionary has DICT_OPTION_INDEX_HASHTABLE ([#17316](https://github.com/netdata/netdata/issues/17316))
405 +- Increase number of pages per extent in dbengine ([#17343](https://github.com/netdata/netdata/issues/17343))
406 +- Add intel_gpu_top collector ([#17344](https://github.com/netdata/netdata/issues/17344))
407 +- Add try except ([#17352](https://github.com/netdata/netdata/issues/17352))
408 +- Regenerate integrations.js ([#17353](https://github.com/netdata/netdata/issues/17353))
409 +- Add intel_gpu_top to apps_groups.conf ([#17354](https://github.com/netdata/netdata/issues/17354))
410 +- Add prerequisites to go.d/intelgpu meta ([#17355](https://github.com/netdata/netdata/issues/17355))
411 +- Regenerate integrations.js ([#17356](https://github.com/netdata/netdata/issues/17356))
412 +- Check for Snappy only when required. ([#17319](https://github.com/netdata/netdata/issues/17319))
413 +- Enable Sentry for Ubuntu and Debian native packages. ([#17327](https://github.com/netdata/netdata/issues/17327))
414 +- Uninstaller: remove LaunchDaemons plist file (macOS) ([#17357](https://github.com/netdata/netdata/issues/17357))
415 +- Make file if not found ([#17359](https://github.com/netdata/netdata/issues/17359))
416 +- Revised node-tab document ([#17348](https://github.com/netdata/netdata/issues/17348))
417 +- Regenerate integrations.js ([#17360](https://github.com/netdata/netdata/issues/17360))
418 +- Go.d intelgpu: rename label engine to engine_class ([#17361](https://github.com/netdata/netdata/issues/17361))
419 +- Regenerate integrations.js ([#17362](https://github.com/netdata/netdata/issues/17362))
420 +- Add Okta SSO integration ([#17351](https://github.com/netdata/netdata/issues/17351))
421 +- Regenerate integrations.js ([#17364](https://github.com/netdata/netdata/issues/17364))
422 +- Move bundling of JSON-C to CMake. ([#17207](https://github.com/netdata/netdata/issues/17207))
423 +- Skip Go code in CI if it hasn’t changed. ([#17077](https://github.com/netdata/netdata/issues/17077))
424 +- Kickstart: Add detection of multiple concurrent installs. ([#16555](https://github.com/netdata/netdata/issues/16555))
425 +- Move vendoring of Sentry to it’s own module and switch to using Git instead of the releases page. ([#17358](https://github.com/netdata/netdata/issues/17358))
426 +- Fix required toolchain version for Go code. ([#17366](https://github.com/netdata/netdata/issues/17366))
427 +- Fix logic in detection of multiple installs. ([#17369](https://github.com/netdata/netdata/issues/17369))
428 +- Go.d intelgpu: uncomment stock config and update meta setup prerequisites ([#17370](https://github.com/netdata/netdata/issues/17370))
429 +- Add collector to monitor ZFS pools space usage ([#17367](https://github.com/netdata/netdata/issues/17367))
430 +- Regenerate integrations.js ([#17371](https://github.com/netdata/netdata/issues/17371))
431 +- Canonicalize paths before comparison when checking for multiple installs. ([#17373](https://github.com/netdata/netdata/issues/17373))
432 +- Fix typo in kickstart script.
433 +- Go.d zfspool minor schema and meta fixes ([#17372](https://github.com/netdata/netdata/issues/17372))
434 +- Regenerate integrations.js ([#17375](https://github.com/netdata/netdata/issues/17375))
435 +- Metrics tab doc ([#17365](https://github.com/netdata/netdata/issues/17365))
436 +- Go.d intelgpu meta update icon ([#17378](https://github.com/netdata/netdata/issues/17378))
437 +- Regenerate integrations.js ([#17379](https://github.com/netdata/netdata/issues/17379))
438 +- Add intel_gpu_top to ndsudo ([#17376](https://github.com/netdata/netdata/issues/17376))
439 +- Hardcode ndsudo PATH ([#17377](https://github.com/netdata/netdata/issues/17377))
440 +- Lowercase word ([#17381](https://github.com/netdata/netdata/issues/17381))
441 +- Go.d intelgpu switch to using ndsudo ([#17380](https://github.com/netdata/netdata/issues/17380))
442 +- Regenerate integrations.js ([#17382](https://github.com/netdata/netdata/issues/17382))
443 +- Remove seemingly dead logging related code from libnetdata. ([#17320](https://github.com/netdata/netdata/issues/17320))
444 +- Add Ubuntu 24.04 to CI, package builds, and support policy. ([#17281](https://github.com/netdata/netdata/issues/17281))
445 +- Add repo config for Amazon Linux 2023. ([#17330](https://github.com/netdata/netdata/issues/17330))
446 +- Go.d intelgpu: use cmd.Wait instead of process.Wait ([#17384](https://github.com/netdata/netdata/issues/17384))
447 +- Go.d nvme: drop using `nvme` directly ([#17386](https://github.com/netdata/netdata/issues/17386))
448 +- Regenerate integrations.js ([#17387](https://github.com/netdata/netdata/issues/17387))
449 +- Fix percentages on alerts ([#17391](https://github.com/netdata/netdata/issues/17391))
450 +- Fix mis-labeling of Ubuntu codenames in distros.yml
451 +- Go.d nvme meta: remove sudoers prereq ([#17395](https://github.com/netdata/netdata/issues/17395))
452 +- Regenerate integrations.js ([#17396](https://github.com/netdata/netdata/issues/17396))
453 +- Fix publishing Docker images to Docker Hub. ([#17397](https://github.com/netdata/netdata/issues/17397))
454 +- Add simple collector to monitor lvm thin volumes space usage ([#17394](https://github.com/netdata/netdata/issues/17394))
455 +- Regenerate integrations.js ([#17399](https://github.com/netdata/netdata/issues/17399))
456 +- Apply first alarms, then alarm templates ([#17398](https://github.com/netdata/netdata/issues/17398))
457 +- Bump actions/add-to-project from 1.0.0 to 1.0.1 ([#17402](https://github.com/netdata/netdata/issues/17402))
458 +- Bump go.mongodb.org/mongo-driver from 1.14.0 to 1.15.0 in /src/go/collectors/go.d.plugin ([#17406](https://github.com/netdata/netdata/issues/17406))
459 +- Bump github.com/docker/docker from 26.0.0+incompatible to 26.0.1+incompatible in /src/go/collectors/go.d.plugin ([#17403](https://github.com/netdata/netdata/issues/17403))
460 +- Bump github.com/prometheus/common from 0.52.2 to 0.52.3 in /src/go/collectors/go.d.plugin ([#17405](https://github.com/netdata/netdata/issues/17405))
461 +- Add option to cleanup health_log table ([#17385](https://github.com/netdata/netdata/issues/17385))
462 +- Bump tj-actions/changed-files from 42 to 44 ([#17401](https://github.com/netdata/netdata/issues/17401))
463 +- Bump github.com/vmware/govmomi from 0.36.3 to 0.37.0 in /src/go/collectors/go.d.plugin ([#17404](https://github.com/netdata/netdata/issues/17404))
464 +- Gh labeler: go.d.plugin rm suffix ([#17407](https://github.com/netdata/netdata/issues/17407))
465 +- Split Sentry enablement to be per-architecture. ([#17383](https://github.com/netdata/netdata/issues/17383))
466 +- Logs tab docs in dashboard section ([#17408](https://github.com/netdata/netdata/issues/17408))
467 +- Function docs edits ([#17390](https://github.com/netdata/netdata/issues/17390))
468 +- Add fallback logic in installer for fetching files. ([#17045](https://github.com/netdata/netdata/issues/17045))
469 +- Go.d sd ll set max_time_series for prometheus/clickhouse ([#17415](https://github.com/netdata/netdata/issues/17415))
470 +- Rewrite megacli in go ([#17410](https://github.com/netdata/netdata/issues/17410))
471 +- Go.d megacli fix meta metrics_description ([#17418](https://github.com/netdata/netdata/issues/17418))
472 +- Alert transitions code cleanup ([#17103](https://github.com/netdata/netdata/issues/17103))
473 +- Go.d megacli health fix megacli_phys_drive_media_errors ([#17419](https://github.com/netdata/netdata/issues/17419))
474 +- Remove python.d/megacli ([#17417](https://github.com/netdata/netdata/issues/17417))
475 +- Regenerate integrations.js ([#17416](https://github.com/netdata/netdata/issues/17416))
476 +- Regenerate integrations.js ([#17425](https://github.com/netdata/netdata/issues/17425))
477 +- Add a build option to disable all optional features by default. ([#17309](https://github.com/netdata/netdata/issues/17309))
478 +- Explicitly require systemd for systemd journal plugin. ([#17313](https://github.com/netdata/netdata/issues/17313))
479 +- Cncf changed the url ([#17427](https://github.com/netdata/netdata/issues/17427))
480 +- Go.d rewrite python.d/adaptec_raid ([#17428](https://github.com/netdata/netdata/issues/17428))
481 +- Go.d adaptec fix meta ([#17430](https://github.com/netdata/netdata/issues/17430))
482 +- Remove python.d/adaptec_raid ([#17429](https://github.com/netdata/netdata/issues/17429))
483 +- Regenerate integrations.js ([#17432](https://github.com/netdata/netdata/issues/17432))
484 +- Go.d fix adaptec/megacli meta name ([#17433](https://github.com/netdata/netdata/issues/17433))
485 +- Regenerate integrations.js ([#17434](https://github.com/netdata/netdata/issues/17434))
486 +- Fix coverity issue 425241 ([#17424](https://github.com/netdata/netdata/issues/17424))
487 +- Address cmake compilation ([#17314](https://github.com/netdata/netdata/issues/17314))
488 +- Start watcher thread after fork ([#17436](https://github.com/netdata/netdata/issues/17436))
489 +- Indent generated files ([#17423](https://github.com/netdata/netdata/issues/17423))
490 +- Regenerate integrations.js ([#17437](https://github.com/netdata/netdata/issues/17437))
491 +- Go.d mega/adaptec meta add alerts ([#17438](https://github.com/netdata/netdata/issues/17438))
492 +- Regenerate integrations.js ([#17439](https://github.com/netdata/netdata/issues/17439))
493 +- Associate sentry events with guid. ([#17420](https://github.com/netdata/netdata/issues/17420))
494 +- Add documentation for VictorOps cloud notifications ([#17445](https://github.com/netdata/netdata/issues/17445))
495 +- Regenerate integrations.js ([#17446](https://github.com/netdata/netdata/issues/17446))
496 +- Dashboards doc edits ([#17409](https://github.com/netdata/netdata/issues/17409))
497 +- Bump github.com/docker/docker from 26.0.1+incompatible to 26.0.2+incompatible in /src/go/collectors/go.d.plugin ([#17447](https://github.com/netdata/netdata/issues/17447))
498 +- Timex is not supported on windows. ([#17443](https://github.com/netdata/netdata/issues/17443))
499 +- Reconnect to the cloud when resuming from suspension ([#17444](https://github.com/netdata/netdata/issues/17444))
500 +- Bump github.com/prometheus/common from 0.52.3 to 0.53.0 in /src/go/collectors/go.d.plugin ([#17448](https://github.com/netdata/netdata/issues/17448))
501 +- Bump github.com/miekg/dns from 1.1.58 to 1.1.59 in /src/go/collectors/go.d.plugin ([#17449](https://github.com/netdata/netdata/issues/17449))
502 +- Bump github.com/vmware/govmomi from 0.37.0 to 0.37.1 in /src/go/collectors/go.d.plugin ([#17451](https://github.com/netdata/netdata/issues/17451))
503 +- Ndsudo add storcli ([#17455](https://github.com/netdata/netdata/issues/17455))
504 +- Go.d add storcli collector ([#17454](https://github.com/netdata/netdata/issues/17454))
505 +- Regenerate integrations.js ([#17458](https://github.com/netdata/netdata/issues/17458))
506 +- Go.d storcli update ([#17460](https://github.com/netdata/netdata/issues/17460))
507 +- Regenerate integrations.js ([#17461](https://github.com/netdata/netdata/issues/17461))
508 +- Go.d add hddtemp ([#17462](https://github.com/netdata/netdata/issues/17462))
509 +- Regenerate integrations.js ([#17464](https://github.com/netdata/netdata/issues/17464))
510 +- Remove python.d/hddtemp ([#17463](https://github.com/netdata/netdata/issues/17463))
511 +- Regenerate integrations.js ([#17465](https://github.com/netdata/netdata/issues/17465))
512 +- Add section for regenerate claiming token ([#17457](https://github.com/netdata/netdata/issues/17457))
513 +- Bump github.com/likexian/whois-parser from 1.24.12 to 1.24.15 in /src/go/collectors/go.d.plugin ([#17469](https://github.com/netdata/netdata/issues/17469))
514 +- Go.d add sensors ([#17466](https://github.com/netdata/netdata/issues/17466))
515 +- Regenerate integrations.js ([#17472](https://github.com/netdata/netdata/issues/17472))
516 +- Remove python.d/sensors ([#17473](https://github.com/netdata/netdata/issues/17473))
517 +- Regenerate integrations.js ([#17477](https://github.com/netdata/netdata/issues/17477))
518 +- Bump go toolchain to v1.22.0 in check-for-go-toolchain.sh ([#17474](https://github.com/netdata/netdata/issues/17474))
519 +- Move dashboards file ([#17476](https://github.com/netdata/netdata/issues/17476))
520 +- Go.d windows add "vnode" to config schema ([#17478](https://github.com/netdata/netdata/issues/17478))
521 +- K8s doc edits ([#17471](https://github.com/netdata/netdata/issues/17471))
522 +- Update Libbpf to 1.4 ([#17470](https://github.com/netdata/netdata/issues/17470))
523 +- Move dashboards file ([#17479](https://github.com/netdata/netdata/issues/17479))
524 +- Go.d pkg prometheus improve parsing err msg ([#17480](https://github.com/netdata/netdata/issues/17480))
525 +- Go.d nvidia_smi: use XML format by default ([#17481](https://github.com/netdata/netdata/issues/17481))
526 +- Add power consumption metric to power supply monitoring module ([#17329](https://github.com/netdata/netdata/issues/17329))
527 +- Regenerate integrations.js ([#17483](https://github.com/netdata/netdata/issues/17483))
528 +- Move netdata charts documentation to proper folder ([#17486](https://github.com/netdata/netdata/issues/17486))
529 +- Fix maintainer documentation to reflect the new build system. ([#17441](https://github.com/netdata/netdata/issues/17441))
530 +- Move netdata charts documentation to proper folder ([#17488](https://github.com/netdata/netdata/issues/17488))
531 +- Go.d update go.mod 1.22.0 and update some packages ([#17489](https://github.com/netdata/netdata/issues/17489))
532 +- Regenerate integrations.js ([#17487](https://github.com/netdata/netdata/issues/17487))
533 +- Move file ([#17490](https://github.com/netdata/netdata/issues/17490))
534 +- Go.d fix intelgpu with update_every > 3 ([#17491](https://github.com/netdata/netdata/issues/17491))
535 +- Public NC Spaces access fix ([#17492](https://github.com/netdata/netdata/issues/17492))
536 +- Fix usage of sha256sum in static builds. ([#17495](https://github.com/netdata/netdata/issues/17495))
537 +- Add generic sso authenciation page and SP-initiated SSO on Okta ([#17494](https://github.com/netdata/netdata/issues/17494))
538 +- Fix labels name-only matching ([#17482](https://github.com/netdata/netdata/issues/17482))
539 +- Add fail2ban-client to ndsudo ([#17499](https://github.com/netdata/netdata/issues/17499))
540 +- Better redirect ([#17500](https://github.com/netdata/netdata/issues/17500))
541 +- Add go.d fail2ban ([#17501](https://github.com/netdata/netdata/issues/17501))
542 +- Remove python.d/fail2ban ([#17502](https://github.com/netdata/netdata/issues/17502))
543 +- Sso improvements ([#17506](https://github.com/netdata/netdata/issues/17506))
544 +- Regenerate integrations.js ([#17505](https://github.com/netdata/netdata/issues/17505))
545 +- Move libbpf and eBPF CO-RE bundling into CMake. ([#17484](https://github.com/netdata/netdata/issues/17484))
546 +- Additional SQL code cleanup ([#17503](https://github.com/netdata/netdata/issues/17503))
547 +- Report correct error code when data insert fails ([#17508](https://github.com/netdata/netdata/issues/17508))
548 +- Go.d traefik fix "got a SET but dimension does not exist" ([#17511](https://github.com/netdata/netdata/issues/17511))
549 +- Work around MS’s broken infra in CI. ([#17513](https://github.com/netdata/netdata/issues/17513))
550 +- Documentation edits ([#17509](https://github.com/netdata/netdata/issues/17509))
551 +- Fix handling of kernel version detection in CMake. ([#17514](https://github.com/netdata/netdata/issues/17514))
552 +- Clean up CMake build options. ([#17442](https://github.com/netdata/netdata/issues/17442))
553 +- Add smartctl to ndsudo ([#17515](https://github.com/netdata/netdata/issues/17515))
554 +- Move handling of legacy eBPF programs into CMake. ([#17512](https://github.com/netdata/netdata/issues/17512))
555 +- Update CMake to request new behavior for all policies through v3.28.0. ([#17496](https://github.com/netdata/netdata/issues/17496))
556 +- Go.d prometheus fix units for snmp_exporter ([#17524](https://github.com/netdata/netdata/issues/17524))
557 +- Update the file ([#17522](https://github.com/netdata/netdata/issues/17522))
558 +- Bump github.com/docker/docker from 26.0.2+incompatible to 26.1.0+incompatible in /src/go/collectors/go.d.plugin ([#17520](https://github.com/netdata/netdata/issues/17520))
559 +- Anomaly Advisor documentation edits ([#17518](https://github.com/netdata/netdata/issues/17518))
560 +- Fix _ndpath in detect_existing_install() ([#17527](https://github.com/netdata/netdata/issues/17527))
561 +- Revert changes to ENABLE_CLOUD option. ([#17528](https://github.com/netdata/netdata/issues/17528))
562 +- Don’t unnescesarily clean repo during static builds. ([#17530](https://github.com/netdata/netdata/issues/17530))
563 +- Add features section requested on Okta review ([#17531](https://github.com/netdata/netdata/issues/17531))
564 +- Bump github.com/likexian/whois from 1.15.2 to 1.15.3 in /src/go/collectors/go.d.plugin ([#17542](https://github.com/netdata/netdata/issues/17542))
565 +- Fix platform EOL check issue assignment. ([#17544](https://github.com/netdata/netdata/issues/17544))
566 +- Really fix platform EOL checks.
567 +- Refresh the ML documentation and consolidate the two docs ([#17543](https://github.com/netdata/netdata/issues/17543))
568 +- Notification section updates ([#17551](https://github.com/netdata/netdata/issues/17551))
569 +- Try hardcode docs links ([#17553](https://github.com/netdata/netdata/issues/17553))
570 +- Adjust eBPF code. ([#17550](https://github.com/netdata/netdata/issues/17550))
571 +- Use CPack to generate Debian packages ([#17475](https://github.com/netdata/netdata/issues/17475))
572 +- Additional code cleanup ([#17541](https://github.com/netdata/netdata/issues/17541))
573 +- Go.d smartctl ([#17536](https://github.com/netdata/netdata/issues/17536))
574 +- Regenerate integrations.js ([#17560](https://github.com/netdata/netdata/issues/17560))
575 +- Add OIDC docs ([#17557](https://github.com/netdata/netdata/issues/17557))
576 +- Regenerate integrations.js ([#17561](https://github.com/netdata/netdata/issues/17561))
577 +- Go.d smartctl improve units ([#17564](https://github.com/netdata/netdata/issues/17564))
578 +- Events tab documentation updates ([#17521](https://github.com/netdata/netdata/issues/17521))
579 +- Go.d smartctl small improvements ([#17565](https://github.com/netdata/netdata/issues/17565))
580 +- Go.d smartctl add meta setup prerequisites ([#17568](https://github.com/netdata/netdata/issues/17568))
581 +- Regenerate integrations.js ([#17567](https://github.com/netdata/netdata/issues/17567))
582 +- Clean up handling of compiler flags in CMake. ([#17532](https://github.com/netdata/netdata/issues/17532))
583 +- Significantly simplify the protobuf handling in CMake. ([#17533](https://github.com/netdata/netdata/issues/17533))
584 +- Detect and use ld.mold instead of the system linker. ([#17534](https://github.com/netdata/netdata/issues/17534))
585 +- Go.d prometheus remove apostrophe in label values ([#17570](https://github.com/netdata/netdata/issues/17570))
586 +- Remove go.d symbol/debug info with RelWithDebInfo ([#17569](https://github.com/netdata/netdata/issues/17569))
587 +- Fix handling of netdata.conf on install in build system. ([#17572](https://github.com/netdata/netdata/issues/17572))
588 +- Bump google-github-actions/setup-gcloud from 2.0.1 to 2.1.0 ([#16860](https://github.com/netdata/netdata/issues/16860))
589 +- Bump google-github-actions/upload-cloud-storage from 2.0.0 to 2.1.0 ([#16859](https://github.com/netdata/netdata/issues/16859))
590 +- Increase the message size to the spawn server ([#17566](https://github.com/netdata/netdata/issues/17566))
591 +- Fix compilation without `dbengine` ([#17575](https://github.com/netdata/netdata/issues/17575))
592 +- Update Netdata subscription plans documentation ([#17571](https://github.com/netdata/netdata/issues/17571))
593 +- Regenerate integrations.js ([#17578](https://github.com/netdata/netdata/issues/17578))
594 +- Fix table ([#17581](https://github.com/netdata/netdata/issues/17581))
595 +- Cpack fixes ([#17576](https://github.com/netdata/netdata/issues/17576))
596 +- Fix invalid item in postinst script for Netdata package. ([#17580](https://github.com/netdata/netdata/issues/17580))
597 +- Fix ndsudo setuid bit for static builds ([#17583](https://github.com/netdata/netdata/issues/17583))
598 +- Fix DEB package conflict entries. ([#17584](https://github.com/netdata/netdata/issues/17584))
599 +- Docs: Add Ubuntu AArch64 that is missing from the list ([#17538](https://github.com/netdata/netdata/issues/17538))
600 +- Go.d/python.d respect all netdata log levels ([#17587](https://github.com/netdata/netdata/issues/17587))
601 +- Fix handling of service startup in DEB packages. ([#17589](https://github.com/netdata/netdata/issues/17589))
602 +- Bump github.com/docker/docker from 26.1.0+incompatible to 26.1.1+incompatible in /src/go/collectors/go.d.plugin ([#17592](https://github.com/netdata/netdata/issues/17592))
603 +- Bump golang.org/x/text from 0.14.0 to 0.15.0 in /src/go/collectors/go.d.plugin ([#17596](https://github.com/netdata/netdata/issues/17596))
604 +- Go.d postgres: reset table/index bloat stats before querying ([#17598](https://github.com/netdata/netdata/issues/17598))
605 +- Fix handling of vendored eBPF code in CMake. ([#17556](https://github.com/netdata/netdata/issues/17556))
606 +- Update eBPF code to v1.4.1. ([#17591](https://github.com/netdata/netdata/issues/17591))
607 +- Remove python.d/smartd_log ([#17600](https://github.com/netdata/netdata/issues/17600))
608 +- Make offline installs properly offline again. ([#17602](https://github.com/netdata/netdata/issues/17602))
609 +- Regenerate integrations.js ([#17603](https://github.com/netdata/netdata/issues/17603))
610 +- Bump jinja2 from 3.1.3 to 3.1.4 in /packaging/dag ([#17607](https://github.com/netdata/netdata/issues/17607))
611 +- Bump golang.org/x/net from 0.24.0 to 0.25.0 in /src/go/collectors/go.d.plugin ([#17609](https://github.com/netdata/netdata/issues/17609))
612 +- Go.d systemdunits add unit files state ([#17606](https://github.com/netdata/netdata/issues/17606))
613 +- Regenerate integrations.js ([#17610](https://github.com/netdata/netdata/issues/17610))
614 +- Go.d dyncfg return 200 on Enable for running jobs ([#17611](https://github.com/netdata/netdata/issues/17611))
615 +- Add option to limit architectures for offline installs. ([#17604](https://github.com/netdata/netdata/issues/17604))
616 +- Reset health when children disconnect ([#17612](https://github.com/netdata/netdata/issues/17612))
617 +- Add update every to json schema ([#17613](https://github.com/netdata/netdata/issues/17613))
618 +- Remove contrib now that we use cpack for DEB packages ([#17614](https://github.com/netdata/netdata/issues/17614))
619 +- Log to journal all transitions ([#17618](https://github.com/netdata/netdata/issues/17618))
620 +- Go.d systemdunits fix unit files selector ([#17622](https://github.com/netdata/netdata/issues/17622))
621 +- Go.d filecheck update to create a chart per instance ([#17624](https://github.com/netdata/netdata/issues/17624))
622 +- Regenerate integrations.js ([#17626](https://github.com/netdata/netdata/issues/17626))
623 +- Python.d remove bind_rndc ([#17628](https://github.com/netdata/netdata/issues/17628))
624 +- Go.d isc_dhcpd create a chart for each pool ([#17629](https://github.com/netdata/netdata/issues/17629))
625 +- Regenerate integrations.js ([#17630](https://github.com/netdata/netdata/issues/17630))
626 +- Improve handling of an alert that transitions to the REMOVED state ([#17621](https://github.com/netdata/netdata/issues/17621))
627 +- Bump github.com/docker/docker from 26.1.1+incompatible to 26.1.2+incompatible in /src/go/collectors/go.d.plugin ([#17631](https://github.com/netdata/netdata/issues/17631))
628 +- Health update isc dhcp alarms ([#17634](https://github.com/netdata/netdata/issues/17634))
629 +- Add pcre2 to install-required-packages "netdata" for macOS ([#17633](https://github.com/netdata/netdata/issues/17633))
630 +- Ndsudo add ssacli ([#17635](https://github.com/netdata/netdata/issues/17635))
631 +- Add Sentry support to new CPack packages. ([#17627](https://github.com/netdata/netdata/issues/17627))
632 +- Add valkey to apps_groups.conf ([#17639](https://github.com/netdata/netdata/issues/17639))
633 +- Logs: add ND_ALERT_STATUS to facets ([#17641](https://github.com/netdata/netdata/issues/17641))
634 +- Go.d ping add missing setting to schema ([#17642](https://github.com/netdata/netdata/issues/17642))
635 +- Fix incorrect bind failure warning ([#17643](https://github.com/netdata/netdata/issues/17643))
636 +- Bump github.com/vmware/govmomi from 0.37.1 to 0.37.2 in /src/go/collectors/go.d.plugin ([#17644](https://github.com/netdata/netdata/issues/17644))
637 +- Remove doc and consolidate info to main section page ([#17645](https://github.com/netdata/netdata/issues/17645))
638 +- Go.d hpssa ([#17637](https://github.com/netdata/netdata/issues/17637))
639 +- Python.d remove hpssa ([#17638](https://github.com/netdata/netdata/issues/17638))
640 +- Regenerate integrations.js ([#17652](https://github.com/netdata/netdata/issues/17652))
641 +- Update the claim readme ([#17646](https://github.com/netdata/netdata/issues/17646))
642 +- Go.d hpssa fix cache battery chart ctx ([#17654](https://github.com/netdata/netdata/issues/17654))
643 +- Regenerate integrations.js ([#17655](https://github.com/netdata/netdata/issues/17655))
644 +- Update libbpf ([#17650](https://github.com/netdata/netdata/issues/17650))
645 +- Go.d cockroachdb fix calculation ([#17659](https://github.com/netdata/netdata/issues/17659))
646 +- Files movearound ([#17653](https://github.com/netdata/netdata/issues/17653))
647 +- Regenerate integrations.js ([#17660](https://github.com/netdata/netdata/issues/17660))
648 +- Go.d update config dirs ([#17661](https://github.com/netdata/netdata/issues/17661))
649 +- Files movearound ([#17662](https://github.com/netdata/netdata/issues/17662))
650 +- Remove Fedora 38 from CI. ([#17548](https://github.com/netdata/netdata/issues/17548))
651 +- Support offline installs in the updater code. ([#17648](https://github.com/netdata/netdata/issues/17648))
652 +- Python.d remove litespeed ([#17663](https://github.com/netdata/netdata/issues/17663))
653 +- Go.d litespeed ([#17665](https://github.com/netdata/netdata/issues/17665))
654 +- Regenerate integrations.js ([#17668](https://github.com/netdata/netdata/issues/17668))
655 +- Include the Host in the HTTP header ([#17670](https://github.com/netdata/netdata/issues/17670))
656 +- Fix broken links and links pointing to Learn ([#17675](https://github.com/netdata/netdata/issues/17675))
657 +- Fix CentOS 7 builds for ML. ([#17667](https://github.com/netdata/netdata/issues/17667))
658 +- Regenerate integrations.js ([#17676](https://github.com/netdata/netdata/issues/17676))
659 +- Windows Support Phase 1 ([#17497](https://github.com/netdata/netdata/issues/17497))
660 +- Correctly handle required compilation flags for dependencies. ([#17664](https://github.com/netdata/netdata/issues/17664))
661 +- Support to WolfSSL (Step 1) ([#17516](https://github.com/netdata/netdata/issues/17516))
662 +- Add go.d/rspamd ([#17679](https://github.com/netdata/netdata/issues/17679))
663 +- Add rspamd to apps_groups.conf ([#17674](https://github.com/netdata/netdata/issues/17674))
664 +- Re-enable ML for RHEL 7 and AL 2 RPM packages. ([#17682](https://github.com/netdata/netdata/issues/17682))
665 +- Go.d sd fix rspamd classify match ([#17686](https://github.com/netdata/netdata/issues/17686))
666 +- Regenerate integrations.js ([#17683](https://github.com/netdata/netdata/issues/17683))
667 +- Fix compilation without h2o, cloud enabled ([#17673](https://github.com/netdata/netdata/issues/17673))
668 +- Fix timex slow shutdown ([#17688](https://github.com/netdata/netdata/issues/17688))
669 +- Check for empty dimension id from a plugin ([#17690](https://github.com/netdata/netdata/issues/17690))
670 +- Fall back to querying libc.so.6 if ldd can’t detect libc implementation. ([#17657](https://github.com/netdata/netdata/issues/17657))
671 +- Properly detect attribute format types ([#17685](https://github.com/netdata/netdata/issues/17685))
672 +- Dyncfg files on disk do not contain colons ([#17694](https://github.com/netdata/netdata/issues/17694))
673 +- Go.d dyncfg add userconfig action ([#17684](https://github.com/netdata/netdata/issues/17684))
674 +- Fix sender parsing when receiving remote input ([#17696](https://github.com/netdata/netdata/issues/17696))
675 +- Revert "Support to WolfSSL (Step 1)" ([#17697](https://github.com/netdata/netdata/issues/17697))
676 +- DYNCFG: add userconfig action ([#17692](https://github.com/netdata/netdata/issues/17692))
677 +- Go.d dyncfg rm space yaml contentType ([#17698](https://github.com/netdata/netdata/issues/17698))
678 +- Do not specify linker in compilation flags. ([#17677](https://github.com/netdata/netdata/issues/17677))
679 +- Corrected grammar and mispelling ([#17699](https://github.com/netdata/netdata/issues/17699))
680 +- Go.d fix some JB code inspection issues ([#17702](https://github.com/netdata/netdata/issues/17702))
681 +- Regenerate integrations.js ([#17701](https://github.com/netdata/netdata/issues/17701))
682 +- Some markdown fixes ([#17703](https://github.com/netdata/netdata/issues/17703))
683 +- Bump k8s.io/client-go from 0.30.0 to 0.30.1 in /src/go/collectors/go.d.plugin ([#17708](https://github.com/netdata/netdata/issues/17708))
684 +- Bump github.com/likexian/whois-parser from 1.24.15 to 1.24.16 in /src/go/collectors/go.d.plugin ([#17710](https://github.com/netdata/netdata/issues/17710))
685 +- Bump github.com/docker/docker from 26.1.2+incompatible to 26.1.3+incompatible in /src/go/collectors/go.d.plugin ([#17706](https://github.com/netdata/netdata/issues/17706))
686 +- Fix on link ([#17712](https://github.com/netdata/netdata/issues/17712))
687 +- Gha labeler add collectors/windows ([#17711](https://github.com/netdata/netdata/issues/17711))
688 +- Fix multipler on Windows ("Memory") ([#17705](https://github.com/netdata/netdata/issues/17705))
689 +- Add agent CLI command to remove a stale node ([#17691](https://github.com/netdata/netdata/issues/17691))
690 +- Fix compilation with disable-cloud ([#17714](https://github.com/netdata/netdata/issues/17714))
691 +- Rename a variable in FreeIMPI (WolfSSL support) ([#17687](https://github.com/netdata/netdata/issues/17687))
692 +- Fix mongodb default config indentation ([#17715](https://github.com/netdata/netdata/issues/17715))
693 +- Go.d weblog ignore reqProcTime on HTTP 101 ([#17717](https://github.com/netdata/netdata/issues/17717))
694 +- Fix proc plugin disk_avgsz ([#17718](https://github.com/netdata/netdata/issues/17718))
695 +- Change links to relative links in one doc ([#17719](https://github.com/netdata/netdata/issues/17719))
696 +- PR to change absolute links to relative ([#17720](https://github.com/netdata/netdata/issues/17720))
697 +- Regenerate integrations.js ([#17721](https://github.com/netdata/netdata/issues/17721))
698 +- Minor fix on link ([#17722](https://github.com/netdata/netdata/issues/17722))
699 +- Fix handling of OpenSSL linking on macOS ([#17535](https://github.com/netdata/netdata/issues/17535))
700 +- Make CMake options for platform-dependent plugins depend on being build for a supported platform. ([#17517](https://github.com/netdata/netdata/issues/17517))
701 +- Go.d systemdunits add "skip_transient" ([#17725](https://github.com/netdata/netdata/issues/17725))
702 +- Regenerate integrations.js ([#17726](https://github.com/netdata/netdata/issues/17726))
703 +- Grammar pass on alerts and notifications dir ([#17729](https://github.com/netdata/netdata/issues/17729))
704 +- Clean up DEB package dependencies. ([#17680](https://github.com/netdata/netdata/issues/17680))
705 +- Add alert meta info ([#17730](https://github.com/netdata/netdata/issues/17730))
706 +- Include the Host in the HTTP header (mqtt) ([#17731](https://github.com/netdata/netdata/issues/17731))
707 +- Grammar pass on docs ([#17735](https://github.com/netdata/netdata/issues/17735))
708 +- Update netdata-agent-security.md ([#17738](https://github.com/netdata/netdata/issues/17738))
709 +- Simplify and unify the way we are handling versions. ([#17693](https://github.com/netdata/netdata/issues/17693))
710 +- Fix ebpf cgroup swap context ([#17740](https://github.com/netdata/netdata/issues/17740))
711 +- Fix clickhouse in apps groups ([#17742](https://github.com/netdata/netdata/issues/17742))
712 +- Ensure that the choice of compiler and target is passed to sub-projects. ([#17732](https://github.com/netdata/netdata/issues/17732))
713 +- Remove Alpine 3.16 from CI. ([#17547](https://github.com/netdata/netdata/issues/17547))
714 +- Win processes ("System" name) ([#17704](https://github.com/netdata/netdata/issues/17704))
715 +- Add go.d clickhouse ([#17743](https://github.com/netdata/netdata/issues/17743))
716 +- Regenerate integrations.js ([#17748](https://github.com/netdata/netdata/issues/17748))
717 +- Remove unused go.d/prometheus meta file ([#17749](https://github.com/netdata/netdata/issues/17749))
718 +- Go.d clickhouse add running queries ([#17751](https://github.com/netdata/netdata/issues/17751))
719 +- Regenerate integrations.js ([#17752](https://github.com/netdata/netdata/issues/17752))
720 +- Mention how to remove highlight in documentation ([#17755](https://github.com/netdata/netdata/issues/17755))
721 +- Collecting metrics docs grammar pass ([#17736](https://github.com/netdata/netdata/issues/17736))
722 +- Go.d clickhouse add more metrics ([#17756](https://github.com/netdata/netdata/issues/17756))
723 +- Regenerate integrations.js ([#17758](https://github.com/netdata/netdata/issues/17758))
724 +- Collecting metrics docs section simplification ([#17757](https://github.com/netdata/netdata/issues/17757))
725 +- Simplify installation page ([#17759](https://github.com/netdata/netdata/issues/17759))
726 +- Add clickhouse alerts ([#17760](https://github.com/netdata/netdata/issues/17760))
727 +- Regenerate integrations.js ([#17761](https://github.com/netdata/netdata/issues/17761))
728 +- Schedule a node info on label reload ([#17762](https://github.com/netdata/netdata/issues/17762))
729 +- Go.d sd local-listeners fix extractComm ([#17763](https://github.com/netdata/netdata/issues/17763))
730 +- Fix version for go.d plugin ([#17764](https://github.com/netdata/netdata/issues/17764))
731 +- Fix DEB package builds. ([#17765](https://github.com/netdata/netdata/issues/17765))
732 +- Docs: simplify claiming readme part1 ([#17771](https://github.com/netdata/netdata/issues/17771))
733 +- Docs fix "Prevent the double access.log" ([#17773](https://github.com/netdata/netdata/issues/17773))
734 +- Netdata Cloud docs section edits ([#17768](https://github.com/netdata/netdata/issues/17768))
735 +- Proc/diskstats and diskspace: remove "ignore zero metrics" ([#17775](https://github.com/netdata/netdata/issues/17775))
736 +- Fix links ([#17779](https://github.com/netdata/netdata/issues/17779))
737 +- Remove "ignore zero metrics" from proc network modules ([#17776](https://github.com/netdata/netdata/issues/17776))
738 +- Go.d phpfpm switch to github.com/kanocz/fcgi_client ([#17784](https://github.com/netdata/netdata/issues/17784))
739 +- Rm "ignore zero metrics" proc meminfo ([#17781](https://github.com/netdata/netdata/issues/17781))
740 +- Docs fix statsd conf dir ([#17785](https://github.com/netdata/netdata/issues/17785))
741 +- Change "War Room" to "Room" and other docs changes ([#17783](https://github.com/netdata/netdata/issues/17783))
742 +- Regenerate integrations.js ([#17786](https://github.com/netdata/netdata/issues/17786))
743 +- Restructure packaging related files to better reflect usage. ([#17678](https://github.com/netdata/netdata/issues/17678))
744 +- Proc/net_dev: remove "ignore zero metrics" ([#17789](https://github.com/netdata/netdata/issues/17789))
745 +- Use correct path for package files. ([#17793](https://github.com/netdata/netdata/issues/17793))
746 +- Use semver releases with sentry. ([#17746](https://github.com/netdata/netdata/issues/17746))
747 +- Correctly handle eBPF check in package test script. ([#17794](https://github.com/netdata/netdata/issues/17794))
748 +- EBPF OOMKills adjust and fixes. ([#17734](https://github.com/netdata/netdata/issues/17734))
749 +- Cgroup plugin: simplify and remove "ignore zero metrics" ([#17795](https://github.com/netdata/netdata/issues/17795))
750 +- Upgrade sqlite version to 3.45.3 ([#17769](https://github.com/netdata/netdata/issues/17769))
751 +- Fix cgroups pressure ([#17800](https://github.com/netdata/netdata/issues/17800))
752 +- Add Alpine 3.20 to CI checks. ([#17788](https://github.com/netdata/netdata/issues/17788))
753 +- Remove CentOS Stream 8 from CI. ([#17599](https://github.com/netdata/netdata/issues/17599))
754 +- Fix buffer overflow incgroups_detect_systemd() ([#17799](https://github.com/netdata/netdata/issues/17799))
755 +- Bump github.com/prometheus/common from 0.53.0 to 0.54.0 in /src/go/collectors/go.d.plugin ([#17804](https://github.com/netdata/netdata/issues/17804))
756 +- Remove "ingore zero metrics" from freebsd plugin ([#17805](https://github.com/netdata/netdata/issues/17805))
757 +- Remove "ingore 0 metrics" from macos plugin ([#17803](https://github.com/netdata/netdata/issues/17803))
758 +- Health: add go.d/lvm alerts ([#17807](https://github.com/netdata/netdata/issues/17807))
759 +- Regenerate integrations.js ([#17808](https://github.com/netdata/netdata/issues/17808))
760 +- EBPF contexts (part I) ([#17797](https://github.com/netdata/netdata/issues/17797))
761 +- Fix ebpf units ([#17809](https://github.com/netdata/netdata/issues/17809))
762 +- Change classification to "cls" since "cl" is clear count ([#17811](https://github.com/netdata/netdata/issues/17811))
763 +- Remove "ignore 0 metrics" from tc/btrfs/ksm ([#17810](https://github.com/netdata/netdata/issues/17810))
764 +- Update libbpf ([#17806](https://github.com/netdata/netdata/issues/17806))
765 +- Fix typo: `round tripe` → `round trip` ([#17814](https://github.com/netdata/netdata/issues/17814))
766 +- Regenerate integrations.js ([#17815](https://github.com/netdata/netdata/issues/17815))
767 +- Remove "ignore 0 metrics" leftovers ([#17817](https://github.com/netdata/netdata/issues/17817))
768 +- Fix coverity report ([#17820](https://github.com/netdata/netdata/issues/17820))
769 +- Update contexts - eBPF.plugin (part II) ([#17819](https://github.com/netdata/netdata/issues/17819))
770 +- Regenerate integrations.js ([#17822](https://github.com/netdata/netdata/issues/17822))
771 +- Fix health alert load15 info ([#17823](https://github.com/netdata/netdata/issues/17823))
772 +- Proper check for static_thread being NULL ([#17821](https://github.com/netdata/netdata/issues/17821))
773 +- Claiming: add proxy to cloud.conf if set ([#17828](https://github.com/netdata/netdata/issues/17828))
774 +- Add alert meta info (node index) ([#17818](https://github.com/netdata/netdata/issues/17818))
775 +- Docs: claiming: rename connect button ([#17831](https://github.com/netdata/netdata/issues/17831))
776 +- Fix order of loading schema files in dyncfg_get_schema_from ([#17829](https://github.com/netdata/netdata/issues/17829))
777 +- Sockets VFS (context update) ([#17830](https://github.com/netdata/netdata/issues/17830))
778 +- Health dyncfg userconfig: remove first newline ([#17834](https://github.com/netdata/netdata/issues/17834))
779 +- Tc plugin simplify config ([#17835](https://github.com/netdata/netdata/issues/17835))
780 +- Fix tc plugin undeclared vars ([#17839](https://github.com/netdata/netdata/issues/17839))
781 +- Explicitly disable removed collectors in python.d.conf ([#17840](https://github.com/netdata/netdata/issues/17840))
782 +- Proc net dev: simplify config ([#17837](https://github.com/netdata/netdata/issues/17837))
783 +- Use bundled protobuf for openSUSE packages. ([#17827](https://github.com/netdata/netdata/issues/17827))
784 +- Hide sqlite config (netdata.conf) ([#17838](https://github.com/netdata/netdata/issues/17838))
785 +- Dyncfg doc ([#17832](https://github.com/netdata/netdata/issues/17832))
786 +- Aclk: move "proxy" from "netdata.conf" to "cloud.conf" ([#17836](https://github.com/netdata/netdata/issues/17836))
787 +- Support time based retention ([#17413](https://github.com/netdata/netdata/issues/17413))
788 +- Properly initialize spinlock in ARAL. ([#17844](https://github.com/netdata/netdata/issues/17844))
789 +- Fix compilation without dbengine ([#17843](https://github.com/netdata/netdata/issues/17843))
790 +- Remove unused variable ([#17846](https://github.com/netdata/netdata/issues/17846))
791 +- Update dbengine retention chart family and priority ([#17847](https://github.com/netdata/netdata/issues/17847))
792 +- Fix: check memory mode before creating dbengine retention chart ([#17848](https://github.com/netdata/netdata/issues/17848))
793 +- Fix tier statistics ([#17849](https://github.com/netdata/netdata/issues/17849))
794 +- Delay retention check until agent has initialized ([#17850](https://github.com/netdata/netdata/issues/17850))
795 +- Bump golang.org/x/net from 0.25.0 to 0.26.0 in /src/go/collectors/go.d.plugin ([#17852](https://github.com/netdata/netdata/issues/17852))
796 +- Bump github.com/docker/docker from 26.1.3+incompatible to 26.1.4+incompatible in /src/go/collectors/go.d.plugin ([#17851](https://github.com/netdata/netdata/issues/17851))
797 +- Bump github.com/vmware/govmomi from 0.37.2 to 0.37.3 in /src/go/collectors/go.d.plugin ([#17854](https://github.com/netdata/netdata/issues/17854))
798 +- Disable updater jitter when run from anacron. ([#17826](https://github.com/netdata/netdata/issues/17826))
799 +- Create retention charts for higher tiers ([#17855](https://github.com/netdata/netdata/issues/17855))
800 +- DYNCFG: health, generate userconfig for incomplete alerts ([#17859](https://github.com/netdata/netdata/issues/17859))
801 +- Add improved handling for TLS certificates for static builds. ([#17605](https://github.com/netdata/netdata/issues/17605))
802 +- Update CI infrastructure to publish to secondary packaging host. ([#17863](https://github.com/netdata/netdata/issues/17863))
803 +- Fix typo in repoconfig packages workflow.
804 +- Improve anacron detection in updater. ([#17862](https://github.com/netdata/netdata/issues/17862))
805 +- Go.d phpfpm: debug log the response on decoding error ([#17870](https://github.com/netdata/netdata/issues/17870))
806 +- Go.d phpfpm add config schema ([#17872](https://github.com/netdata/netdata/issues/17872))
807 +- Fix updating release info when publishing nightly releases. ([#17871](https://github.com/netdata/netdata/issues/17871))
808 +- Add openSUSE 15.6 to CI. ([#17865](https://github.com/netdata/netdata/issues/17865))
809 +- Improve filecheck module metadata. ([#17874](https://github.com/netdata/netdata/issues/17874))
810 +- Regenerate integrations.js ([#17877](https://github.com/netdata/netdata/issues/17877))
811 +- Update Telegram Cloud notification docs to include new topic ID field ([#17873](https://github.com/netdata/netdata/issues/17873))
812 +- RBAC for dynamic configuration documentation ([#17861](https://github.com/netdata/netdata/issues/17861))
813 +- Regenerate integrations.js ([#17878](https://github.com/netdata/netdata/issues/17878))
814 +- Make our LSB init script _actually_ LSB compliant. ([#17824](https://github.com/netdata/netdata/issues/17824))
815 +- Update bundled UI to v6.138.0 ([#17879](https://github.com/netdata/netdata/issues/17879))
816 +- Fix detect_libc in installer ([#17880](https://github.com/netdata/netdata/issues/17880))
817 +- Improve agent shutdown ([#17868](https://github.com/netdata/netdata/issues/17868))
818 +- Restore ML thread termination to original order ([#17885](https://github.com/netdata/netdata/issues/17885))
819 +- Ndsudo update intel_gpu_top ([#17883](https://github.com/netdata/netdata/issues/17883))
820 +- Go.d intelgpu add an option to select specific GPU ([#17884](https://github.com/netdata/netdata/issues/17884))
821 +- Regenerate integrations.js ([#17886](https://github.com/netdata/netdata/issues/17886))
822 +- Update netdata-charts.md ([#17888](https://github.com/netdata/netdata/issues/17888))
823 +- Integrations make `<details>` open ([#17895](https://github.com/netdata/netdata/issues/17895))
824 +- Regenerate integrations.js ([#17897](https://github.com/netdata/netdata/issues/17897))
825 +- Go.d ll netlisteners add support for wildcard address ([#17896](https://github.com/netdata/netdata/issues/17896))
826 +- Allow alerts to be created without too many requirements ([#17894](https://github.com/netdata/netdata/issues/17894))
827 +- Improve ml thread termination during agent shutdown ([#17889](https://github.com/netdata/netdata/issues/17889))
828 +- Fix Caddy setup in Install Netdata with Docker ([#17901](https://github.com/netdata/netdata/issues/17901))
829 +- Add netdata journald configuration ([#17882](https://github.com/netdata/netdata/issues/17882))
830 +- Sys_block_zram: don't use "/dev" ([#17900](https://github.com/netdata/netdata/issues/17900))
831 +- Update x509check/metadata: add missing smtp schema ([#17908](https://github.com/netdata/netdata/issues/17908))
832 +- Go.d whoisquery: check if exp date is empty ([#17911](https://github.com/netdata/netdata/issues/17911))
833 +- Update nvme/metadata: add how to use in a docker ([#17909](https://github.com/netdata/netdata/issues/17909))
834 +- Regenerate integrations.js ([#17910](https://github.com/netdata/netdata/issues/17910))
835 +- Go.d whoisquery: try requesting extended data if no expiration date ([#17913](https://github.com/netdata/netdata/issues/17913))
836 +- Bump github.com/miekg/dns from 1.1.59 to 1.1.61 in /src/go/collectors/go.d.plugin ([#17916](https://github.com/netdata/netdata/issues/17916))
837 +- Bump github.com/jessevdk/go-flags from 1.5.0 to 1.6.1 in /src/go/collectors/go.d.plugin ([#17919](https://github.com/netdata/netdata/issues/17919))
838 +- Bump go.mongodb.org/mongo-driver from 1.15.0 to 1.15.1 in /src/go/collectors/go.d.plugin ([#17917](https://github.com/netdata/netdata/issues/17917))
839 +- Bump k8s.io/client-go from 0.30.1 to 0.30.2 in /src/go/collectors/go.d.plugin ([#17923](https://github.com/netdata/netdata/issues/17923))
840 +- Go.d bump github.com/docker/docker v27.0.0+incompatible ([#17921](https://github.com/netdata/netdata/issues/17921))
841 +- Go.d whoisquery: use Domain.ExpirationDateInTime if provided ([#17926](https://github.com/netdata/netdata/issues/17926))
842 +- Systemd: start `netdata` after network is online ([#17906](https://github.com/netdata/netdata/issues/17906))
843 +- Updater: handle json decode error in newer_commit_date() ([#17925](https://github.com/netdata/netdata/issues/17925))
844 +- Go.d whoisquery fix defaults in config_schema ([#17932](https://github.com/netdata/netdata/issues/17932))
845 +- Regenerate integrations.js ([#17933](https://github.com/netdata/netdata/issues/17933))
846 +- Go.d smartctl: don't log found devices on every scan ([#17934](https://github.com/netdata/netdata/issues/17934))
847 +- Adds GreptimeDB to prometheus metadata ([#17936](https://github.com/netdata/netdata/issues/17936))
848 +- Go.d storcli add initial support for mpt3sas controllers ([#17938](https://github.com/netdata/netdata/issues/17938))
849 +- Regenerate integrations.js ([#17937](https://github.com/netdata/netdata/issues/17937))
850 +- Update bundled UI to v6.138.3 ([#17939](https://github.com/netdata/netdata/issues/17939))
851 +- Add OpenSearch to exporting prom meta ([#17942](https://github.com/netdata/netdata/issues/17942))
852 +- Regenerate integrations.js ([#17944](https://github.com/netdata/netdata/issues/17944))
853 +- Update enable-an-exporting-connector.md ([#17943](https://github.com/netdata/netdata/issues/17943))
854 +- Add "dmsetup status --target cache --noflush" to ndsudo ([#17946](https://github.com/netdata/netdata/issues/17946))
855 +- Fix disk max calculation ([#17945](https://github.com/netdata/netdata/issues/17945))
856 +- Fix indentation in go.d/dnsquery conf ([#17948](https://github.com/netdata/netdata/issues/17948))
857 +- Fix warnings ([#17940](https://github.com/netdata/netdata/issues/17940))
858 +- Move to using CPack for repository configuration packages. ([#17930](https://github.com/netdata/netdata/issues/17930))
859 +- Fix repoconfig package uploads.
860 +- Go.d add dmcache collector ([#17947](https://github.com/netdata/netdata/issues/17947))
861 +- Regenerate integrations.js ([#17950](https://github.com/netdata/netdata/issues/17950))
862 +- Rename env var for extended internal monitoring ([#17951](https://github.com/netdata/netdata/issues/17951))
863 +- Remove Discord badge (rate limited by upstream service) ([#17953](https://github.com/netdata/netdata/issues/17953))
864 +- Go.d systemdunits: remove "omitempty" tag from collect_unit_files ([#17956](https://github.com/netdata/netdata/issues/17956))
865 +- Fix installing netdata journald conf for native packages ([#17954](https://github.com/netdata/netdata/issues/17954))
866 +- Docs: add time-based retention to "Change how long Netdata stores metrics" ([#17957](https://github.com/netdata/netdata/issues/17957))
867 +- Docs: clarify setting time/disk limits to 0 ([#17958](https://github.com/netdata/netdata/issues/17958))
868 +- Fix apcupsd status ([#17960](https://github.com/netdata/netdata/issues/17960))
869 +- Fix apcupsd status "slave" ([#17961](https://github.com/netdata/netdata/issues/17961))
870 +
871 +## [1.45.0] - 2024-03-21
872 +
873 +### Merged Pull Requests:
874 +
875 +- Add README for gorilla ([#16553](https://github.com/netdata/netdata/issues/16553))
876 +- Update README.md
877 +- Revert "remove discourse badge from readme" ([#16560](https://github.com/netdata/netdata/issues/16560))
878 +- Fix release metadata workflow ([#16563](https://github.com/netdata/netdata/issues/16563))
879 +- Make the systemd-journal mandatory package on Centos 7 and Amazon linux 2 ([#16562](https://github.com/netdata/netdata/issues/16562))
880 +- Set "HOME" after switching to netdata user ([#16548](https://github.com/netdata/netdata/issues/16548))
881 +- Remove openSUSE 15.4 from CI ([#16449](https://github.com/netdata/netdata/issues/16449))
882 +- Remove fedora 37 from CI ([#16422](https://github.com/netdata/netdata/issues/16422))
883 +- Fix for AMD GPU drm different format proc file ([#16561](https://github.com/netdata/netdata/issues/16561))
884 +- Bump new version on the release changelog GHA ([#16551](https://github.com/netdata/netdata/issues/16551))
885 +- Bump google-github-actions/auth from 1 to 2 ([#16526](https://github.com/netdata/netdata/issues/16526))
886 +- Resolve issue on startup in servers with 1 core ([#16565](https://github.com/netdata/netdata/issues/16565))
887 +- Fix cpu arch/ram/disk values in buildinfo ([#16567](https://github.com/netdata/netdata/issues/16567))
888 +- Fix memory leak during host chart label cleanup ([#16568](https://github.com/netdata/netdata/issues/16568))
889 +- Make debugfs exit on sigpipe ([#16569](https://github.com/netdata/netdata/issues/16569))
890 +- Change the workflow on how we set the right permissions for perf-plugin ([#16558](https://github.com/netdata/netdata/issues/16558))
891 +- Bump heinrichreimer/github-changelog-generator-action from 2.3 to 2.4 ([#16575](https://github.com/netdata/netdata/issues/16575))
892 +- Bump actions/setup-python from 4 to 5 ([#16578](https://github.com/netdata/netdata/issues/16578))
893 +- Wip documentation about functions table ([#16535](https://github.com/netdata/netdata/issues/16535))
894 +- Add Alpine Linux 3.19 to CI. ([#16579](https://github.com/netdata/netdata/issues/16579))
895 +- Uninstaller remove log2journal and systemd-cat-native ([#16585](https://github.com/netdata/netdata/issues/16585))
896 +- Handle coverity issues related to Y2K38_SAFETY ([#16583](https://github.com/netdata/netdata/issues/16583))
897 +- Code cleanup ([#16542](https://github.com/netdata/netdata/issues/16542))
898 +- Update categories.yaml to add Logs ([#16582](https://github.com/netdata/netdata/issues/16582))
899 +- Adds docs for Splunk cloud notifications ([#16586](https://github.com/netdata/netdata/issues/16586))
900 +- Regenerate integrations.js ([#16587](https://github.com/netdata/netdata/issues/16587))
901 +- Disable cpu per core metrics by default ([#16572](https://github.com/netdata/netdata/issues/16572))
902 +- Systemd-journal: exit if unable to locate journal data directories ([#16592](https://github.com/netdata/netdata/issues/16592))
903 +- Bump google-github-actions/setup-gcloud from 1.1.1 to 2.0.0 ([#16577](https://github.com/netdata/netdata/issues/16577))
904 +- Fix: use black version icon for Splunk in order to make it visible ([#16593](https://github.com/netdata/netdata/issues/16593))
905 +- Fix coverity issues ([#16589](https://github.com/netdata/netdata/issues/16589))
906 +- CMake build system. ([#15996](https://github.com/netdata/netdata/issues/15996))
907 +- Cleanup am files ([#16597](https://github.com/netdata/netdata/issues/16597))
908 +- Allow passing cmake options with NETDATA_CMAKE_OPTIONS. ([#16598](https://github.com/netdata/netdata/issues/16598))
909 +- Fix coverity issues ([#16596](https://github.com/netdata/netdata/issues/16596))
910 +- Fix not assigned proc_count in installer ([#16602](https://github.com/netdata/netdata/issues/16602))
911 +- Improve enable_feature function in the installer ([#16601](https://github.com/netdata/netdata/issues/16601))
912 +- Bump actions/labeler from 4 to 5 ([#16576](https://github.com/netdata/netdata/issues/16576))
913 +- Assorted kickstart script fixes. ([#16537](https://github.com/netdata/netdata/issues/16537))
914 +- Remove build/ ([#16600](https://github.com/netdata/netdata/issues/16600))
915 +- Remove v1 dashboard version check from installer ([#16603](https://github.com/netdata/netdata/issues/16603))
916 +- Remove CPack stuff from CMake ([#16608](https://github.com/netdata/netdata/issues/16608))
917 +- Remove assert ([#16611](https://github.com/netdata/netdata/issues/16611))
918 +- Fix small coverity issue ([#16616](https://github.com/netdata/netdata/issues/16616))
919 +- Robustness improvements to netdata-updater.sh ([#16613](https://github.com/netdata/netdata/issues/16613))
920 +- Ndsudo - a helper to run privileged commands ([#16614](https://github.com/netdata/netdata/issues/16614))
921 +- Queries Progress ([#16574](https://github.com/netdata/netdata/issues/16574))
922 +- Fix coverity issues, logically dead code and error checking ([#16618](https://github.com/netdata/netdata/issues/16618))
923 +- Cgroups: filter lxcfs.service/.control ([#16620](https://github.com/netdata/netdata/issues/16620))
924 +- Remove includes outside of libnetdata. ([#16607](https://github.com/netdata/netdata/issues/16607))
925 +- Regenerate integrations.js ([#16595](https://github.com/netdata/netdata/issues/16595))
926 +- Fix UB of unaligned loads/stores and signed shifts. ([#16628](https://github.com/netdata/netdata/issues/16628))
927 +- Correctly handle basic permissions for most scripts on install. ([#16629](https://github.com/netdata/netdata/issues/16629))
928 +- Docs: add "Rootless mode" to Docker install guide ([#16632](https://github.com/netdata/netdata/issues/16632))
929 +- Bump github/codeql-action from 2 to 3 ([#16623](https://github.com/netdata/netdata/issues/16623))
930 +- Bump google-github-actions/upload-cloud-storage from 1.0.3 to 2.0.0 ([#16624](https://github.com/netdata/netdata/issues/16624))
931 +- Remove code relying on autotools. ([#16634](https://github.com/netdata/netdata/issues/16634))
932 +- Added energy efficiency img README.md ([#16617](https://github.com/netdata/netdata/issues/16617))
933 +- Create alerts-configuration-manager.md ([#16642](https://github.com/netdata/netdata/issues/16642))
934 +- Cmake: make WEB_DIR configurable ([#16638](https://github.com/netdata/netdata/issues/16638))
935 +- Fix compilation error when using --disable-dbengine ([#16645](https://github.com/netdata/netdata/issues/16645))
936 +- Update bundled UI to v6.72.0 ([#16647](https://github.com/netdata/netdata/issues/16647))
937 +- Remove Netdata packages from APT cache when attempting to install. ([#16566](https://github.com/netdata/netdata/issues/16566))
938 +- Update artifact-handling actions to latest version. ([#16639](https://github.com/netdata/netdata/issues/16639))
939 +- Necessary changes for Learn ([#16651](https://github.com/netdata/netdata/issues/16651))
940 +- Docs: add a few examples how to query Netdata logs using journalctl ([#16650](https://github.com/netdata/netdata/issues/16650))
941 +- Increase max response size to 100MiB ([#16649](https://github.com/netdata/netdata/issues/16649))
942 +- Rename bundle dashboard scripts ([#16648](https://github.com/netdata/netdata/issues/16648))
943 +- Fix overrun in crc32set ([#16654](https://github.com/netdata/netdata/issues/16654))
944 +- Docs: Correct chart_labels summary ([#16656](https://github.com/netdata/netdata/issues/16656))
945 +- Dont exceed buffer boundaries, when the buffer is empty ([#16664](https://github.com/netdata/netdata/issues/16664))
946 +- Fix compiler warnings ([#16665](https://github.com/netdata/netdata/issues/16665))
947 +- Bump google-github-actions/setup-gcloud from 2.0.0 to 2.0.1 ([#16667](https://github.com/netdata/netdata/issues/16667))
948 +- Shutdown dbengine event loop properly ([#16658](https://github.com/netdata/netdata/issues/16658))
949 +- Fix coverity issues ([#16655](https://github.com/netdata/netdata/issues/16655))
950 +- Set log level of too-old-data message to debug ([#16663](https://github.com/netdata/netdata/issues/16663))
951 +- Kickstart: add a note on how to access the UI to the success banner ([#16673](https://github.com/netdata/netdata/issues/16673))
952 +- EBPF socket (eBPF) ([#16669](https://github.com/netdata/netdata/issues/16669))
953 +- Remove unused github scripts ([#16661](https://github.com/netdata/netdata/issues/16661))
954 +- Remove contrib/rhel ([#16672](https://github.com/netdata/netdata/issues/16672))
955 +- Update bundled UI to v6.75.2 ([#16674](https://github.com/netdata/netdata/issues/16674))
956 +- Fix alerts-configuration-manager.md ([#16679](https://github.com/netdata/netdata/issues/16679))
957 +- Docs: add "Require Cloud" column to functions table ([#16681](https://github.com/netdata/netdata/issues/16681))
958 +- Fix exporting internal charts context and family ([#16683](https://github.com/netdata/netdata/issues/16683))
959 +- Cmake missing defines ([#16680](https://github.com/netdata/netdata/issues/16680))
960 +- Fix claiming on macOS ([#16686](https://github.com/netdata/netdata/issues/16686))
961 +- Atomically load the metric reference count ([#16687](https://github.com/netdata/netdata/issues/16687))
962 +- Add --disable-logsmanagement when building static ([#16684](https://github.com/netdata/netdata/issues/16684))
963 +- Kickstart: dont run install-required-packages.sh as root on macOS ([#16675](https://github.com/netdata/netdata/issues/16675))
964 +- Revert "Update artifact-handling actions to latest version." ([#16689](https://github.com/netdata/netdata/issues/16689))
965 +- Improve the error message when accessing functions ([#16692](https://github.com/netdata/netdata/issues/16692))
966 +- Cmake log2journal netdatacli ([#16688](https://github.com/netdata/netdata/issues/16688))
967 +- Cups exit on sigpipe ([#16691](https://github.com/netdata/netdata/issues/16691))
968 +- Fix installing service file and start/stop ND using `launchctl` on macOS ([#16693](https://github.com/netdata/netdata/issues/16693))
969 +- Fix minor omission on netdata-installers arguments ([#16690](https://github.com/netdata/netdata/issues/16690))
970 +- Fix quota calculation when the the db is empty ([#16699](https://github.com/netdata/netdata/issues/16699))
971 +- Disable logsmanagement when installing on macOS ([#16697](https://github.com/netdata/netdata/issues/16697))
972 +- Delay collecting double linked network interfaces ([#16701](https://github.com/netdata/netdata/issues/16701))
973 +- Bump tj-actions/changed-files from 40 to 41 ([#16668](https://github.com/netdata/netdata/issues/16668))
974 +- Add the Mobile App notification Integration ([#16715](https://github.com/netdata/netdata/issues/16715))
975 +- Regenerate integrations.js ([#16716](https://github.com/netdata/netdata/issues/16716))
976 +- Add info to distros.yml for handling of legacy platforms. ([#16718](https://github.com/netdata/netdata/issues/16718))
977 +- Fix clock resolution detection ([#16720](https://github.com/netdata/netdata/issues/16720))
978 +- Add Netdata Mobile App to issue template config ([#16723](https://github.com/netdata/netdata/issues/16723))
979 +- Add extra build flags to CMakeLists.txt. ([#16641](https://github.com/netdata/netdata/issues/16641))
980 +- Add GHA workflow to upload kickstart script to our repo server. ([#16724](https://github.com/netdata/netdata/issues/16724))
981 +- Update ebpf-socket function name and columns ([#16727](https://github.com/netdata/netdata/issues/16727))
982 +- Update go.d.plugin to v0.58.0 ([#16725](https://github.com/netdata/netdata/issues/16725))
983 +- Cgroups: don't multiply cgroup_check_for_new_every by update_every ([#16719](https://github.com/netdata/netdata/issues/16719))
984 +- Disable logsmanagement when installing on macOS ([#16708](https://github.com/netdata/netdata/issues/16708))
985 +- Regenerate integrations.js ([#16728](https://github.com/netdata/netdata/issues/16728))
986 +- Fix --distro-override parameter name in docs ([#16726](https://github.com/netdata/netdata/issues/16726))
987 +- Fix excessive "maximum number of cgroups reached" log messages ([#16730](https://github.com/netdata/netdata/issues/16730))
988 +- Fix missing CPU frequency ([#16732](https://github.com/netdata/netdata/issues/16732))
989 +- Health: add httpcheck bad header alert ([#16736](https://github.com/netdata/netdata/issues/16736))
990 +- Fix (and improve) Coverity scanning. ([#16605](https://github.com/netdata/netdata/issues/16605))
991 +- Change get kickstart url to https://get.netdata.cloud/kickstart.sh ([#16738](https://github.com/netdata/netdata/issues/16738))
992 +- Regenerate integrations.js ([#16739](https://github.com/netdata/netdata/issues/16739))
993 +- Fatal relaxation of unknown page types. ([#16682](https://github.com/netdata/netdata/issues/16682))
994 +- Cleanup proc net-dev renames ([#16745](https://github.com/netdata/netdata/issues/16745))
995 +- Remove unused file ([#16747](https://github.com/netdata/netdata/issues/16747))
996 +- Uninstaller: improve removing `netdata` from groups ([#16742](https://github.com/netdata/netdata/issues/16742))
997 +- Update default netdata.conf used for native packages ([#16734](https://github.com/netdata/netdata/issues/16734))
998 +- Address sanitizer through CMake and use it for unit tests. ([#16748](https://github.com/netdata/netdata/issues/16748))
999 +- Minor - fix/update codeowners ([#16750](https://github.com/netdata/netdata/issues/16750))
1000 +- Fix cpu per core charts priority ([#16749](https://github.com/netdata/netdata/issues/16749))
1001 +- Name storage engine variables consistently. ([#16753](https://github.com/netdata/netdata/issues/16753))
1002 +- Dyncfg v2 ([#16702](https://github.com/netdata/netdata/issues/16702))
1003 +- Packaging: add cap_dac_read_search to go.d.plugin ([#16754](https://github.com/netdata/netdata/issues/16754))
1004 +- Add schemas to /usr/lib/netdata/conf.d/schema.d ([#16757](https://github.com/netdata/netdata/issues/16757))
1005 +- Report timestamps with progress ([#16758](https://github.com/netdata/netdata/issues/16758))
1006 +- Delete memory mode "map" and "save". ([#16604](https://github.com/netdata/netdata/issues/16604))
1007 +- Fix sanitizer errors ([#16759](https://github.com/netdata/netdata/issues/16759))
1008 +- Recursively merge mqtt_websockets ([#16755](https://github.com/netdata/netdata/issues/16755))
1009 +- Fix phtread-detatch() call ([#16760](https://github.com/netdata/netdata/issues/16760))
1010 +- Fix cmake _GNU_SOURCE warnings ([#16761](https://github.com/netdata/netdata/issues/16761))
1011 +- Fix compiler warnings ([#16763](https://github.com/netdata/netdata/issues/16763))
1012 +- /api/v1/config tree improvements and swagger documentation ([#16764](https://github.com/netdata/netdata/issues/16764))
1013 +- Fix coverity issues ([#16766](https://github.com/netdata/netdata/issues/16766))
1014 +- Add missing call for aral_freez (eBPF) ([#16765](https://github.com/netdata/netdata/issues/16765))
1015 +- Keep transaction id of request headers ([#16769](https://github.com/netdata/netdata/issues/16769))
1016 +- Allow POST requests to be received from ACLK ([#16770](https://github.com/netdata/netdata/issues/16770))
1017 +- Fix thread name on fatal and cgroup netdev rename crash ([#16771](https://github.com/netdata/netdata/issues/16771))
1018 +- Fix handling of hardening flags with Clang ([#16731](https://github.com/netdata/netdata/issues/16731))
1019 +- Delete unused variable. ([#16776](https://github.com/netdata/netdata/issues/16776))
1020 +- Use unsigned char for binary data in mqtt. ([#16775](https://github.com/netdata/netdata/issues/16775))
1021 +- Fix warning. ([#16774](https://github.com/netdata/netdata/issues/16774))
1022 +- Remove h2o header from libnetdata ([#16780](https://github.com/netdata/netdata/issues/16780))
1023 +- Diskspace missing mutex use ([#16784](https://github.com/netdata/netdata/issues/16784))
1024 +- Diskspace: reworked the cleanup to fix race conditions ([#16786](https://github.com/netdata/netdata/issues/16786))
1025 +- Free key and search, replace patterns ([#16789](https://github.com/netdata/netdata/issues/16789))
1026 +- Update telegram documentation ([#16777](https://github.com/netdata/netdata/issues/16777))
1027 +- Update role-based-access.md ([#16791](https://github.com/netdata/netdata/issues/16791))
1028 +- Change default build directory in installer to `build`. ([#16768](https://github.com/netdata/netdata/issues/16768))
1029 +- Regenerate integrations.js ([#16792](https://github.com/netdata/netdata/issues/16792))
1030 +- Improve context load ([#16659](https://github.com/netdata/netdata/issues/16659))
1031 +- Use original summary for alert transition ([#16793](https://github.com/netdata/netdata/issues/16793))
1032 +- Add additional fail reason and source during database initialization ([#16794](https://github.com/netdata/netdata/issues/16794))
1033 +- Use named constants for keyword tokens. ([#16787](https://github.com/netdata/netdata/issues/16787))
1034 +- Add check to avoid auto-installing new major versions of Netdata. ([#15898](https://github.com/netdata/netdata/issues/15898))
1035 +- CI runtime check cleanup ([#16713](https://github.com/netdata/netdata/issues/16713))
1036 +- Update GHA steps that handle artifacts to use latest versions of upload/download actions. ([#16714](https://github.com/netdata/netdata/issues/16714))
1037 +- Update replication documentation ([#16778](https://github.com/netdata/netdata/issues/16778))
1038 +- Update binaries (eBPF) ([#16671](https://github.com/netdata/netdata/issues/16671))
1039 +- Cgroups: containers-vms add CPU throttling % ([#16800](https://github.com/netdata/netdata/issues/16800))
1040 +- Remove help text that no longer applies. ([#16805](https://github.com/netdata/netdata/issues/16805))
1041 +- Move mqtt_websockets under aclk/ ([#16804](https://github.com/netdata/netdata/issues/16804))
1042 +- Fix incorrect major version check in updater. ([#16803](https://github.com/netdata/netdata/issues/16803))
1043 +- Apply ASCII-based comparisons to commands in kickstart script that rely on a particular language setting ([#16806](https://github.com/netdata/netdata/issues/16806))
1044 +- Update naming for swagger api ([#16564](https://github.com/netdata/netdata/issues/16564))
1045 +- Set app_group label automatically ([#16810](https://github.com/netdata/netdata/issues/16810))
1046 +- Better support running the Docker entrypoint code as a non-root user. ([#15118](https://github.com/netdata/netdata/issues/15118))
1047 +- Updates to light onprem docs ([#16811](https://github.com/netdata/netdata/issues/16811))
1048 +- Fix verify_netdata_host_prefix log spam ([#16814](https://github.com/netdata/netdata/issues/16814))
1049 +- Use fs type to veryfiy procfs/sysfs ([#16813](https://github.com/netdata/netdata/issues/16813))
1050 +- Preserve label source during migration ([#16821](https://github.com/netdata/netdata/issues/16821))
1051 +- Bump tj-actions/changed-files from 41 to 42 ([#16823](https://github.com/netdata/netdata/issues/16823))
1052 +- Bump actions/cache from 3 to 4 ([#16824](https://github.com/netdata/netdata/issues/16824))
1053 +- Add netdata_os_info metric ([#16756](https://github.com/netdata/netdata/issues/16756))
1054 +- Improve container detection logic for edit-config. ([#16825](https://github.com/netdata/netdata/issues/16825))
1055 +- Add script to ensure a usable Go toolchain is installed. ([#16815](https://github.com/netdata/netdata/issues/16815))
1056 +- DYNCFG: dynamically configured alerts ([#16779](https://github.com/netdata/netdata/issues/16779))
1057 +- Change query label matching logic ([#16827](https://github.com/netdata/netdata/issues/16827))
1058 +- Add brotli and libyaml to buildinfo ([#16830](https://github.com/netdata/netdata/issues/16830))
1059 +- Fix coverity issue ([#16831](https://github.com/netdata/netdata/issues/16831))
1060 +- Add explicit callback types for readability. ([#16820](https://github.com/netdata/netdata/issues/16820))
1061 +- Fix directory handling in Go toolchain handling script. ([#16828](https://github.com/netdata/netdata/issues/16828))
1062 +- Adds docs for cloud MS Teams integration ([#16834](https://github.com/netdata/netdata/issues/16834))
1063 +- Make the kickstart checksum's placeholder value more concrete ([#16843](https://github.com/netdata/netdata/issues/16843))
1064 +- Kickstart: use extended-regexp in `get_redirect()` ([#16844](https://github.com/netdata/netdata/issues/16844))
1065 +- Include timer units failed state alert as default ([#16845](https://github.com/netdata/netdata/issues/16845))
1066 +- Regenerate integrations.js ([#16835](https://github.com/netdata/netdata/issues/16835))
1067 +- Disable local Go builds in our RPM packages. ([#16848](https://github.com/netdata/netdata/issues/16848))
1068 +- Improve service thread shutdown ([#16841](https://github.com/netdata/netdata/issues/16841))
1069 +- CNCF link fix ([#16851](https://github.com/netdata/netdata/issues/16851))
1070 +- New Permissions System ([#16837](https://github.com/netdata/netdata/issues/16837))
1071 +- Detect sockets direction ([#16861](https://github.com/netdata/netdata/issues/16861))
1072 +- Apply the right prototype to instances ([#16862](https://github.com/netdata/netdata/issues/16862))
1073 +- Port useful code from incomplete PRs ([#16863](https://github.com/netdata/netdata/issues/16863))
1074 +- Add ARMv6 static builds. ([#16853](https://github.com/netdata/netdata/issues/16853))
1075 +- Remove Ubuntu 23.04 from the CI ([#16694](https://github.com/netdata/netdata/issues/16694))
1076 +- Update alpine 3.16 fts-dev ([#16865](https://github.com/netdata/netdata/issues/16865))
1077 +- Remove old mention of save db mode ([#16864](https://github.com/netdata/netdata/issues/16864))
1078 +- Add freebsd jail detection to system-info.sh ([#16858](https://github.com/netdata/netdata/issues/16858))
1079 +- Update statistics to address slow queries ([#16838](https://github.com/netdata/netdata/issues/16838))
1080 +- Use dagger to build and test the agent. ([#16868](https://github.com/netdata/netdata/issues/16868))
1081 +- Fix coverity issue ([#16866](https://github.com/netdata/netdata/issues/16866))
1082 +- Local sockets for network namespaces ([#16867](https://github.com/netdata/netdata/issues/16867))
1083 +- Fix coverity issues ([#16873](https://github.com/netdata/netdata/issues/16873))
1084 +- Network Viewer (local-sockets version) ([#16872](https://github.com/netdata/netdata/issues/16872))
1085 +- Rm refs to map and save modes ([#16874](https://github.com/netdata/netdata/issues/16874))
1086 +- Network viewer fixes ([#16877](https://github.com/netdata/netdata/issues/16877))
1087 +- Add requirements.txt for dag ([#16875](https://github.com/netdata/netdata/issues/16875))
1088 +- Setup sentry-native SDK. ([#16798](https://github.com/netdata/netdata/issues/16798))
1089 +- Network viewer UI minor fixes ([#16880](https://github.com/netdata/netdata/issues/16880))
1090 +- Fix crash on query_progress initializer ([#16885](https://github.com/netdata/netdata/issues/16885))
1091 +- Highlight Challenge Secret title to be more visible ([#16882](https://github.com/netdata/netdata/issues/16882))
1092 +- Fix order of openning a file and checking its inode ([#16887](https://github.com/netdata/netdata/issues/16887))
1093 +- Add the CLOEXEC flag to all sockets and files ([#16881](https://github.com/netdata/netdata/issues/16881))
1094 +- Set build type to release with debug info. ([#16889](https://github.com/netdata/netdata/issues/16889))
1095 +- Fixed missing collisions and drag on newly added apps ([#16891](https://github.com/netdata/netdata/issues/16891))
1096 +- Limit what we upload to GCS for nightlies. ([#16870](https://github.com/netdata/netdata/issues/16870))
1097 +- Add a constant env var for Sentry's DSN when someone wants to build Agent and doesn't have access to GH secrets. ([#16892](https://github.com/netdata/netdata/issues/16892))
1098 +- Do not cancel detection thread. ([#16897](https://github.com/netdata/netdata/issues/16897))
1099 +- Updating What's new based on Office Hours shared plans ([#16895](https://github.com/netdata/netdata/issues/16895))
1100 +- Local-sockets: use netlink when libmnl is available ([#16893](https://github.com/netdata/netdata/issues/16893))
1101 +- Create a top-level directory to contain source code. ([#16896](https://github.com/netdata/netdata/issues/16896))
1102 +- Network-viewer: show unknown container ([#16900](https://github.com/netdata/netdata/issues/16900))
1103 +- Regenerate integrations.js ([#16886](https://github.com/netdata/netdata/issues/16886))
1104 +- Updated permissions map comment ([#16902](https://github.com/netdata/netdata/issues/16902))
1105 +- Enable sentry sessions ([#16898](https://github.com/netdata/netdata/issues/16898))
1106 +- Move aclk/ under src/ ([#16899](https://github.com/netdata/netdata/issues/16899))
1107 +- Use spinlock for reference counting. ([#16901](https://github.com/netdata/netdata/issues/16901))
1108 +- Update README.md ([#16904](https://github.com/netdata/netdata/issues/16904))
1109 +- Remove markdown linter ([#16905](https://github.com/netdata/netdata/issues/16905))
1110 +- Rename network functions ([#16908](https://github.com/netdata/netdata/issues/16908))
1111 +- Fluent-bit & logsmanagement under src/ ([#16903](https://github.com/netdata/netdata/issues/16903))
1112 +- Build network-viewer only on linux ([#16910](https://github.com/netdata/netdata/issues/16910))
1113 +- Network viewer: filter by username ([#16911](https://github.com/netdata/netdata/issues/16911))
1114 +- Update file match patterns in CI jobs. ([#16917](https://github.com/netdata/netdata/issues/16917))
1115 +- Add support for the info parameter to all external plugin functions ([#16915](https://github.com/netdata/netdata/issues/16915))
1116 +- Update network-connections-chart.html
1117 +- Split dictionary into multiple files ([#16920](https://github.com/netdata/netdata/issues/16920))
1118 +- Minor rework on document ([#16925](https://github.com/netdata/netdata/issues/16925))
1119 +- Bump nick-fields/retry from 2 to 3 ([#16927](https://github.com/netdata/netdata/issues/16927))
1120 +- Bump nick-invision/retry from 2 to 3 ([#16928](https://github.com/netdata/netdata/issues/16928))
1121 +- Release label key if already in use ([#16916](https://github.com/netdata/netdata/issues/16916))
1122 +- Move exporting/ under src/ ([#16913](https://github.com/netdata/netdata/issues/16913))
1123 +- Fix installation of `libfluent-bit.so` ([#16924](https://github.com/netdata/netdata/issues/16924))
1124 +- Regenerate integrations.js ([#16930](https://github.com/netdata/netdata/issues/16930))
1125 +- Protect analytics set data ([#16929](https://github.com/netdata/netdata/issues/16929))
1126 +- Exporting moved, so changes needed for integrations, + CODEOWNERS change ([#16932](https://github.com/netdata/netdata/issues/16932))
1127 +- Regenerate integrations.js ([#16934](https://github.com/netdata/netdata/issues/16934))
1128 +- Bump peter-evans/create-pull-request from 5 to 6 ([#16926](https://github.com/netdata/netdata/issues/16926))
1129 +- Make sure the duration is not negative ([#16931](https://github.com/netdata/netdata/issues/16931))
1130 +- Drop ESLint CI jobs and config. ([#16935](https://github.com/netdata/netdata/issues/16935))
1131 +- Remove duplicate check ([#16936](https://github.com/netdata/netdata/issues/16936))
1132 +- Check for agent already running ([#16937](https://github.com/netdata/netdata/issues/16937))
1133 +- Respect log level for all sources ([#16922](https://github.com/netdata/netdata/issues/16922))
1134 +- Fix charts.d.plugin configuration directory names ([#16939](https://github.com/netdata/netdata/issues/16939))
1135 +- Update documentation (Replication DB) ([#16816](https://github.com/netdata/netdata/issues/16816))
1136 +- Update CODEOWNERS ([#16907](https://github.com/netdata/netdata/issues/16907))
1137 +- Respect NETDATA_LOG_LEVEL if set ([#16943](https://github.com/netdata/netdata/issues/16943))
1138 +- Move daemon/ under src/ ([#16933](https://github.com/netdata/netdata/issues/16933))
1139 +- Update bundled UI to v6.85.0 ([#16948](https://github.com/netdata/netdata/issues/16948))
1140 +- Enable network-viewer aggregated views ([#16940](https://github.com/netdata/netdata/issues/16940))
1141 +- Assorted cleanup of native packaging code. ([#16640](https://github.com/netdata/netdata/issues/16640))
1142 +- Fix wrong sizeof ([#16950](https://github.com/netdata/netdata/issues/16950))
1143 +- Update codeowners and cleanup .gitignore ([#16946](https://github.com/netdata/netdata/issues/16946))
1144 +- Fix linking of a markdown file ([#16952](https://github.com/netdata/netdata/issues/16952))
1145 +- Remove cleanup_destroyed_dictionaries call during shutdown ([#16944](https://github.com/netdata/netdata/issues/16944))
1146 +- Do not declare struct meant for internal usage ([#16951](https://github.com/netdata/netdata/issues/16951))
1147 +- Remove tags field from RRD hosts. ([#16894](https://github.com/netdata/netdata/issues/16894))
1148 +- Move health/ under src/ ([#16954](https://github.com/netdata/netdata/issues/16954))
1149 +- Fix path in health integrations ([#16956](https://github.com/netdata/netdata/issues/16956))
1150 +- Updated txt - Prometheus section README.md ([#16957](https://github.com/netdata/netdata/issues/16957))
1151 +- Network-viewer: aggregated view improvements ([#16960](https://github.com/netdata/netdata/issues/16960))
1152 +- DYNCFG: support test on new jobs ([#16958](https://github.com/netdata/netdata/issues/16958))
1153 +- Improve agent shutdown ([#16959](https://github.com/netdata/netdata/issues/16959))
1154 +- Move collectors/ under src/ ([#16965](https://github.com/netdata/netdata/issues/16965))
1155 +- Necessary changes for integrations to work after moving collectors/ i… ([#16966](https://github.com/netdata/netdata/issues/16966))
1156 +- Fix move collectors to src/ leftovers ([#16967](https://github.com/netdata/netdata/issues/16967))
1157 +- Update go.d.plugin version to v0.58.1 ([#16968](https://github.com/netdata/netdata/issues/16968))
1158 +- Regenerate integrations.js ([#16955](https://github.com/netdata/netdata/issues/16955))
1159 +- Change edac ecc errors from incremental to absolute ([#16970](https://github.com/netdata/netdata/issues/16970))
1160 +- Regenerate integrations.js ([#16974](https://github.com/netdata/netdata/issues/16974))
1161 +- Use C++14 by default when building on systems that support it. ([#16972](https://github.com/netdata/netdata/issues/16972))
1162 +- Update input paths for tj-actions/changed-files ([#16982](https://github.com/netdata/netdata/issues/16982))
1163 +- Update synology.md ([#16980](https://github.com/netdata/netdata/issues/16980))
1164 +- Update input skip patterns ([#16984](https://github.com/netdata/netdata/issues/16984))
1165 +- Updated message ids for systemd and dbus ([#16987](https://github.com/netdata/netdata/issues/16987))
1166 +- Detect machine GUID change ([#16979](https://github.com/netdata/netdata/issues/16979))
1167 +- Use changed files in check-files workflow ([#16993](https://github.com/netdata/netdata/issues/16993))
1168 +- Remove config macros that are always set. ([#16994](https://github.com/netdata/netdata/issues/16994))
1169 +- Move web/ under src/ ([#16992](https://github.com/netdata/netdata/issues/16992))
1170 +- Remove historical changelog and cppcheck ([#16995](https://github.com/netdata/netdata/issues/16995))
1171 +- Move CO-RE headers (integration between eBPF and Network Viewer) ([#16978](https://github.com/netdata/netdata/issues/16978))
1172 +- Small cleanup ([#16996](https://github.com/netdata/netdata/issues/16996))
1173 +- Add spinlock to protect metric release ([#16989](https://github.com/netdata/netdata/issues/16989))
1174 +- Move diagrams/ under docs/ ([#16998](https://github.com/netdata/netdata/issues/16998))
1175 +- Adjust storage tiers if we fail to create the requested number of tiers ([#16999](https://github.com/netdata/netdata/issues/16999))
1176 +- Include Go plugin sources in main repository. ([#16997](https://github.com/netdata/netdata/issues/16997))
1177 +- Misc improvements ([#17001](https://github.com/netdata/netdata/issues/17001))
1178 +- Dyncfg: fix support for testing new jobs ([#17009](https://github.com/netdata/netdata/issues/17009))
1179 +- Abort on non-zero rc. ([#17008](https://github.com/netdata/netdata/issues/17008))
1180 +- Assorted cleanup of CI/packaging related code. ([#16938](https://github.com/netdata/netdata/issues/16938))
1181 +- EBPF & NV (update packages) ([#17012](https://github.com/netdata/netdata/issues/17012))
1182 +- Dyncfg: allow tree for individual IDs ([#17017](https://github.com/netdata/netdata/issues/17017))
1183 +- EBPF - Network Viewer (Move code) ([#17018](https://github.com/netdata/netdata/issues/17018))
1184 +- DYNCFG support deleting orphan configurations ([#17023](https://github.com/netdata/netdata/issues/17023))
1185 +- Fix determining repo root in Coverity scan script. ([#17024](https://github.com/netdata/netdata/issues/17024))
1186 +- Protect metric release in dimension delete callback ([#17020](https://github.com/netdata/netdata/issues/17020))
1187 +- Bump k8s.io/client-go from 0.29.1 to 0.29.2 in /src/go/collectors/go.d.plugin ([#17029](https://github.com/netdata/netdata/issues/17029))
1188 +- Bump go.mongodb.org/mongo-driver from 1.13.1 to 1.14.0 in /src/go/collectors/go.d.plugin ([#17030](https://github.com/netdata/netdata/issues/17030))
1189 +- Increase RRD_ID_LENGTH_MAX to 1200 ([#17028](https://github.com/netdata/netdata/issues/17028))
1190 +- Metric release does not need to fetch retention ([#17033](https://github.com/netdata/netdata/issues/17033))
1191 +- Documentation changes, new files and restructuring the hierarchy ([#17014](https://github.com/netdata/netdata/issues/17014))
1192 +- Regenerate integrations.js ([#17034](https://github.com/netdata/netdata/issues/17034))
1193 +- Populate the SSL section in Observability and centralization points -… ([#17035](https://github.com/netdata/netdata/issues/17035))
1194 +- Update machine-learning-and-assisted-troubleshooting.md
1195 +- Update disk-requirements-and-retention.md
1196 +- Code cleanup ([#17036](https://github.com/netdata/netdata/issues/17036))
1197 +- Improved query target cleanup ([#17038](https://github.com/netdata/netdata/issues/17038))
1198 +- Liquify start-stop-restart doc ([#17037](https://github.com/netdata/netdata/issues/17037))
1199 +- Regenerate integrations.js ([#17039](https://github.com/netdata/netdata/issues/17039))
1200 +- Do not use backtrace when sentry is enabled. ([#17043](https://github.com/netdata/netdata/issues/17043))
1201 +- Correctly mark protobuf as required in find_package. ([#17021](https://github.com/netdata/netdata/issues/17021))
1202 +- Update README.md
1203 +- Keep a count of metrics and samples collected ([#17042](https://github.com/netdata/netdata/issues/17042))
1204 +- Fix alerts jsonschema prototype for latest dyncfg ([#17047](https://github.com/netdata/netdata/issues/17047))
1205 +- Fix zpool state chart family ([#17054](https://github.com/netdata/netdata/issues/17054))
1206 +- DYNCFG: call the interceptor when a test is made on a new job ([#17052](https://github.com/netdata/netdata/issues/17052))
1207 +- Updated sizing netdata ([#17057](https://github.com/netdata/netdata/issues/17057))
1208 +- Add watcher thread to report shutdown steps. ([#17010](https://github.com/netdata/netdata/issues/17010))
1209 +- Protect type anomaly rate map ([#17044](https://github.com/netdata/netdata/issues/17044))
1210 +- Fix a few minor bits of build-related infrastructure. ([#17051](https://github.com/netdata/netdata/issues/17051))
1211 +- Fix typo ([#17059](https://github.com/netdata/netdata/issues/17059))
1212 +- More concretely utilize local modules in our CMake code. ([#17022](https://github.com/netdata/netdata/issues/17022))
1213 +- Assorted build-related changes. ([#16906](https://github.com/netdata/netdata/issues/16906))
1214 +- Integrate Go plugin with build system. ([#17005](https://github.com/netdata/netdata/issues/17005))
1215 +- Regenerate integrations.js ([#17061](https://github.com/netdata/netdata/issues/17061))
1216 +- Fix links pointing to old go.d repo and update the integrations ([#17040](https://github.com/netdata/netdata/issues/17040))
1217 +- Regenerate integrations.js ([#17063](https://github.com/netdata/netdata/issues/17063))
1218 +- Bump the version of the installed Go toolchain to 1.22.0. ([#17004](https://github.com/netdata/netdata/issues/17004))
1219 +- Go.d.plugin: set max chart id length to 1200 ([#17062](https://github.com/netdata/netdata/issues/17062))
1220 +- Abort the agent if a single shutdown step takes more than 60 seconds. ([#17060](https://github.com/netdata/netdata/issues/17060))
1221 +- Add CI checks for Go code. ([#17066](https://github.com/netdata/netdata/issues/17066))
1222 +- Add missing "gotify" to list of notification methods in alarm-notify.sh ([#17069](https://github.com/netdata/netdata/issues/17069))
1223 +- Netdata Agent: Backup restore documentation ([#17006](https://github.com/netdata/netdata/issues/17006))
1224 +- Split network viewer plugin to it’s own package. ([#16949](https://github.com/netdata/netdata/issues/16949))
1225 +- Cache key wasn't taking account changes in the version of bundled software ([#16985](https://github.com/netdata/netdata/issues/16985))
1226 +- Make watcher thread wait for explicit steps. ([#17079](https://github.com/netdata/netdata/issues/17079))
1227 +- Improve message in kickstart if a static build can’t be found. ([#17081](https://github.com/netdata/netdata/issues/17081))
1228 +- Prepare to functions (eBPF) ([#16788](https://github.com/netdata/netdata/issues/16788))
1229 +- Rename network plugin post and pre install actions ([#17084](https://github.com/netdata/netdata/issues/17084))
1230 +- Amend the logic of ebpf-plugin package suggestion for network-viewer plugin ([#17085](https://github.com/netdata/netdata/issues/17085))
1231 +- Deb packages fix on ioping perms ([#17086](https://github.com/netdata/netdata/issues/17086))
1232 +- Fix cups plugin group owner ([#17087](https://github.com/netdata/netdata/issues/17087))
1233 +- Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /src/go/collectors/go.d.plugin ([#17092](https://github.com/netdata/netdata/issues/17092))
1234 +- Fix go.d.plugin/pulsar tests ([#17093](https://github.com/netdata/netdata/issues/17093))
1235 +- Bump actions/add-to-project from 0.5.0 to 0.6.0 ([#17091](https://github.com/netdata/netdata/issues/17091))
1236 +- Delete docs/netdata-security.md and replace links to proper points ([#17094](https://github.com/netdata/netdata/issues/17094))
1237 +- Remove distributed-data-architecture.md and omit mentions to it ([#17097](https://github.com/netdata/netdata/issues/17097))
1238 +- Remove deployment-strategies ([#17096](https://github.com/netdata/netdata/issues/17096))
1239 +- Fix ebpf compilation warnings ([#17100](https://github.com/netdata/netdata/issues/17100))
1240 +- HEALTH: eliminate fields that should be labels ([#17048](https://github.com/netdata/netdata/issues/17048))
1241 +- Rework Docker CI to build each platform in it's own runner. ([#17088](https://github.com/netdata/netdata/issues/17088))
1242 +- Add missing checkout step in Docker workflow.
1243 +- Go.d.plugin dyncfgv2 ([#17064](https://github.com/netdata/netdata/issues/17064))
1244 +- Remove "foreach" from health REFERENCE.md ([#17106](https://github.com/netdata/netdata/issues/17106))
1245 +- Push Docker images to registries individually.
1246 +- Reorganize and cleanup database related code ([#17101](https://github.com/netdata/netdata/issues/17101))
1247 +- Fix links in go.d.plugin ([#17108](https://github.com/netdata/netdata/issues/17108))
1248 +- Rm unused files from go.d.plugin ([#17110](https://github.com/netdata/netdata/issues/17110))
1249 +- Regenerate integrations.js ([#17107](https://github.com/netdata/netdata/issues/17107))
1250 +- Improve cleanup of ephemeral hosts during agent startup ([#17104](https://github.com/netdata/netdata/issues/17104))
1251 +- Go.d.plugin add notice log level ([#17112](https://github.com/netdata/netdata/issues/17112))
1252 +- Remove "os" "hosts" "plugin" and "module" from stock alarms ([#17113](https://github.com/netdata/netdata/issues/17113))
1253 +- Fix discovered config default values ([#17115](https://github.com/netdata/netdata/issues/17115))
1254 +- Remove deprecated settings from the health ref doc ([#17116](https://github.com/netdata/netdata/issues/17116))
1255 +- Very minor docs update ([#17117](https://github.com/netdata/netdata/issues/17117))
1256 +- Minor fix; broken link on on prem installation doc ([#17118](https://github.com/netdata/netdata/issues/17118))
1257 +- Fix links ([#17095](https://github.com/netdata/netdata/issues/17095))
1258 +- Fix memory leak ([#17114](https://github.com/netdata/netdata/issues/17114))
1259 +- Second pass at reworking Docker CI. ([#17111](https://github.com/netdata/netdata/issues/17111))
1260 +- Fix new Docker workflow skip logic.
1261 +- Fix issues with Docker workflow.
1262 +- Fix creation of Docker image manifests.
1263 +- Switch publishing Docker images to regular repo.
1264 +- EBPF cgroup update ([#16630](https://github.com/netdata/netdata/issues/16630))
1265 +- Improve go.d.plugin dyncfg config schemas ([#17124](https://github.com/netdata/netdata/issues/17124))
1266 +- Fix health alert dyncfg schema fullPage option ([#17125](https://github.com/netdata/netdata/issues/17125))
1267 +- Packaging: remove Suggests nut ([#17129](https://github.com/netdata/netdata/issues/17129))
1268 +- Detect self thread when exiting. ([#17126](https://github.com/netdata/netdata/issues/17126))
1269 +- Fix login to GHCR when publishing Docker images. ([#17127](https://github.com/netdata/netdata/issues/17127))
1270 +- Bump github.com/likexian/whois-parser from 1.24.10 to 1.24.11 in /src/go/collectors/go.d.plugin ([#17137](https://github.com/netdata/netdata/issues/17137))
1271 +- Bump github.com/jackc/pgx/v4 from 4.18.1 to 4.18.3 in /src/go/collectors/go.d.plugin ([#17135](https://github.com/netdata/netdata/issues/17135))
1272 +- Bump github.com/cloudflare/cfssl from 1.6.4 to 1.6.5 in /src/go/collectors/go.d.plugin ([#17136](https://github.com/netdata/netdata/issues/17136))
1273 +- Bump golang.org/x/net from 0.21.0 to 0.22.0 in /src/go/collectors/go.d.plugin ([#17134](https://github.com/netdata/netdata/issues/17134))
1274 +- Bump github.com/vmware/govmomi from 0.35.0 to 0.36.0 in /src/go/collectors/go.d.plugin ([#17140](https://github.com/netdata/netdata/issues/17140))
1275 +- Bump github.com/go-sql-driver/mysql from 1.7.1 to 1.8.0 in /src/go/collectors/go.d.plugin ([#17142](https://github.com/netdata/netdata/issues/17142))
1276 +- Bump github.com/prometheus-community/pro-bing from 0.3.0 to 0.4.0 in /src/go/collectors/go.d.plugin ([#17141](https://github.com/netdata/netdata/issues/17141))
1277 +- Update go.d.plugin packages ([#17145](https://github.com/netdata/netdata/issues/17145))
1278 +- Bring back old docs that were containing missing information ([#17146](https://github.com/netdata/netdata/issues/17146))
1279 +- Update functions tables docs ([#17071](https://github.com/netdata/netdata/issues/17071))
1280 +- Check alert duration on submission to the cloud ([#17144](https://github.com/netdata/netdata/issues/17144))
1281 +- Document new field on PagerDuty cloud integration ([#17149](https://github.com/netdata/netdata/issues/17149))
1282 +- Remove repetitive words ([#17131](https://github.com/netdata/netdata/issues/17131))
1283 +- Add macos check (build from source) ([#17139](https://github.com/netdata/netdata/issues/17139))
1284 +- Go.d.plugin: add docker service discovery ([#17152](https://github.com/netdata/netdata/issues/17152))
1285 +- Go.d.plugin: sd compose: allow multi config template ([#17157](https://github.com/netdata/netdata/issues/17157))
1286 +- Install the correct service file based on systemd version ([#17159](https://github.com/netdata/netdata/issues/17159))
1287 +- Go.d.plugin: execute local-listeners periodically ([#17160](https://github.com/netdata/netdata/issues/17160))
1288 +- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /src/go/collectors/go.d.plugin ([#17154](https://github.com/netdata/netdata/issues/17154))
1289 +- Go.d.plugin: update file path pattern in jsonschema ([#17164](https://github.com/netdata/netdata/issues/17164))
1290 +- Go.d.plugin: jsonschema allow array/object to be null ([#17166](https://github.com/netdata/netdata/issues/17166))
1291 +- Docs: add "With NVIDIA GPUs monitoring" to docker install ([#17167](https://github.com/netdata/netdata/issues/17167))
1292 +- Announce dynamic configuration capability to the cloud ([#17162](https://github.com/netdata/netdata/issues/17162))
1293 +- Go.d sd docker add mongodb-community-server ([#17173](https://github.com/netdata/netdata/issues/17173))
1294 +- Go.d sd docker use well-known port for app identification too ([#17174](https://github.com/netdata/netdata/issues/17174))
1295 +- Update themes.md ([#17172](https://github.com/netdata/netdata/issues/17172))
1296 +- Go.d sd config add "disabled" ([#17171](https://github.com/netdata/netdata/issues/17171))
1297 +- Update themes.md ([#17176](https://github.com/netdata/netdata/issues/17176))
1298 +- Fix macOS issue with SOCK_CLOEXEC ([#17151](https://github.com/netdata/netdata/issues/17151))
1299 +- Bump k8s.io/client-go from 0.29.2 to 0.29.3 in /src/go/collectors/go.d.plugin ([#17184](https://github.com/netdata/netdata/issues/17184))
1300 +- Bump github.com/prometheus/common from 0.48.0 to 0.50.0 in /src/go/collectors/go.d.plugin ([#17182](https://github.com/netdata/netdata/issues/17182))
1301 +- Bump github.com/vmware/govmomi from 0.36.0 to 0.36.1 in /src/go/collectors/go.d.plugin ([#17185](https://github.com/netdata/netdata/issues/17185))
1302 +- Split apps.plugin into multiple files and support MacOS ([#17180](https://github.com/netdata/netdata/issues/17180))
1303 +- DYNCFG: alerts improvements ([#17165](https://github.com/netdata/netdata/issues/17165))
1304 +- Bump tj-actions/changed-files from 42 to 43 ([#17187](https://github.com/netdata/netdata/issues/17187))
1305 +- Add callout that snapshots only available on v1 ([#17189](https://github.com/netdata/netdata/issues/17189))
1306 +- Health: unsilence cpu % alarm ([#17194](https://github.com/netdata/netdata/issues/17194))
1307 +- Fix sum calculation in rrdr2value ([#17193](https://github.com/netdata/netdata/issues/17193))
1308 +- Fix alert hash table definition ([#17196](https://github.com/netdata/netdata/issues/17196))
1309 +- Handle agents will wrong alert_hash table definition ([#17197](https://github.com/netdata/netdata/issues/17197))
1310 +- Fix issues with permissions when installing from source on macOS ([#17198](https://github.com/netdata/netdata/issues/17198))
1311 +- Go.d: local-listeners sd: use "ip:port" as address instead of "localhost" ([#17203](https://github.com/netdata/netdata/issues/17203))
1312 +- Go.d: weblog allow PURGE HTTP method ([#17204](https://github.com/netdata/netdata/issues/17204))
1313 +- Go.d: local-listeners sd: trust known ports to identify an app ([#17205](https://github.com/netdata/netdata/issues/17205))
1314 +- Prefer Protobuf’s own CMake config over CMake's FindProtobuf. ([#17128](https://github.com/netdata/netdata/issues/17128))
1315 +- Go.d: adjust dyncfg return codes ([#17206](https://github.com/netdata/netdata/issues/17206))
1316 +- Update bundled UI to v6.104.1 ([#17208](https://github.com/netdata/netdata/issues/17208))
1317 +- Improve offline install error handling. ([#17153](https://github.com/netdata/netdata/issues/17153))
1318 +- Move bundling of libyaml to CMake. ([#17190](https://github.com/netdata/netdata/issues/17190))
1319 +- Dynamic configuration switch to version 2 ([#17212](https://github.com/netdata/netdata/issues/17212))
1320 +
1321 +## [1.44.0] - 2023-12-06
1322 +
1323 +### Merged Pull Requests:
1324 +
1325 +- Facets: minimize hashtable collisions ([#16215](https://github.com/netdata/netdata/issues/16215))
1326 +- Update README.md
1327 +- Update kickstart.md
1328 +- Cgroup-network: don't log an error opening pid file if doesn't exist ([#16196](https://github.com/netdata/netdata/issues/16196))
1329 +- Fix meta unittest ([#16221](https://github.com/netdata/netdata/issues/16221))
1330 +- Changes to `systemd-journal` docs ([#16225](https://github.com/netdata/netdata/issues/16225))
1331 +- Update go.d plugin version to v0.56.3 ([#16228](https://github.com/netdata/netdata/issues/16228))
1332 +- Add Erlang to Apps configuration ([#16231](https://github.com/netdata/netdata/issues/16231))
1333 +- Update passive_journal_centralization_guide_no_encryption.md
1334 +- Update passive_journal_centralization_guide_self_signed_certs.md
1335 +- Remove charts.d/nut ([#16230](https://github.com/netdata/netdata/issues/16230))
1336 +- Fix statistics calculation in 32bit systems ([#16222](https://github.com/netdata/netdata/issues/16222))
1337 +- Fix dimension HETEROGENEOUS check ([#16234](https://github.com/netdata/netdata/issues/16234))
1338 +- Uninstaller: remove /etc/cron.d/netdata-updater-daily ([#16233](https://github.com/netdata/netdata/issues/16233))
1339 +- Update bundled UI to v6.53.0 ([#16239](https://github.com/netdata/netdata/issues/16239))
1340 +- Active journal centralization guide no encryption ([#16236](https://github.com/netdata/netdata/issues/16236))
1341 +- Journal: script to generate self-signed-certificates ([#16235](https://github.com/netdata/netdata/issues/16235))
1342 +- Add info to native packages docs about mirroring our repos. ([#16069](https://github.com/netdata/netdata/issues/16069))
1343 +- Improvements for labels handling ([#16172](https://github.com/netdata/netdata/issues/16172))
1344 +- Kickstart: rename auto-update-method to auto-update-type ([#16229](https://github.com/netdata/netdata/issues/16229))
1345 +- Reuse ML load prepared statement ([#16240](https://github.com/netdata/netdata/issues/16240))
1346 +- Improve context load on startup ([#16203](https://github.com/netdata/netdata/issues/16203))
1347 +- Add integrations JSON file for website usage. ([#15959](https://github.com/netdata/netdata/issues/15959))
1348 +- Added systemd-journal forward_secure_sealing ([#16247](https://github.com/netdata/netdata/issues/16247))
1349 +- Fix apps plugin metric names in meta ([#16243](https://github.com/netdata/netdata/issues/16243))
1350 +- Regenerate integrations.js ([#16237](https://github.com/netdata/netdata/issues/16237))
1351 +- Drop an unused index from aclk_alert table ([#16242](https://github.com/netdata/netdata/issues/16242))
1352 +- Terminate cgroups discovery thread faster during shutdown ([#16246](https://github.com/netdata/netdata/issues/16246))
1353 +- Dyncfg improvements ([#16250](https://github.com/netdata/netdata/issues/16250))
1354 +- Add DYNCFG_RESET ([#16241](https://github.com/netdata/netdata/issues/16241))
1355 +- Update active_journal_centralization_guide_no_encryption.md
1356 +- Fix label copy to correctly handle duplicate keys ([#16249](https://github.com/netdata/netdata/issues/16249))
1357 +- Docker install: support for Proxmox vms/containers name resolution ([#16193](https://github.com/netdata/netdata/issues/16193))
1358 +- Python.d(smartd_log): collect Total LBAs written/read ([#16245](https://github.com/netdata/netdata/issues/16245))
1359 +- Introduce workflow to always update bundled packages (static builds) into their latest release (part1) ([#16191](https://github.com/netdata/netdata/issues/16191))
1360 +- `most_popular` on markdown metadata for integrations ([#16251](https://github.com/netdata/netdata/issues/16251))
1361 +- Shutdown while waiting for collectors to finish ([#16023](https://github.com/netdata/netdata/issues/16023))
1362 +- Journal multiple sources ([#16252](https://github.com/netdata/netdata/issues/16252))
1363 +- Fix Discord webhook payload ([#16257](https://github.com/netdata/netdata/issues/16257))
1364 +- Regenerate integrations.js ([#16258](https://github.com/netdata/netdata/issues/16258))
1365 +- QUERIES: use tiers only when they have useful data ([#16263](https://github.com/netdata/netdata/issues/16263))
1366 +- SUBSTRING simple patterns fix ([#16264](https://github.com/netdata/netdata/issues/16264))
1367 +- Fix coverity issue 403725 ([#16265](https://github.com/netdata/netdata/issues/16265))
1368 +- Fix HAProxy server status parsing and add MAINT status chart ([#16253](https://github.com/netdata/netdata/issues/16253))
1369 +- Cgroup: add net container_device label ([#16261](https://github.com/netdata/netdata/issues/16261))
1370 +- Journal minor updates ([#16267](https://github.com/netdata/netdata/issues/16267))
1371 +- Fix sources match ([#16271](https://github.com/netdata/netdata/issues/16271))
1372 +- DYNCFG fix REPORT_JOB_STATUS streaming ([#16272](https://github.com/netdata/netdata/issues/16272))
1373 +- Add document outlining our versioning policy and public API. ([#16227](https://github.com/netdata/netdata/issues/16227))
1374 +- Prevent wrong optimization armv7l static build ([#16274](https://github.com/netdata/netdata/issues/16274))
1375 +- Remove semicolons from strings ([#16276](https://github.com/netdata/netdata/issues/16276))
1376 +- Update bundled UI to v6.57.0 ([#16277](https://github.com/netdata/netdata/issues/16277))
1377 +- Regenerate integrations.js ([#16266](https://github.com/netdata/netdata/issues/16266))
1378 +- Update go.d version to 0.56.4 ([#16281](https://github.com/netdata/netdata/issues/16281))
1379 +- Small optimization of alert queries ([#16282](https://github.com/netdata/netdata/issues/16282))
1380 +- Local_listeners: add cmd args for reading specific files ([#16273](https://github.com/netdata/netdata/issues/16273))
1381 +- Regenerate integrations.js ([#16284](https://github.com/netdata/netdata/issues/16284))
1382 +- ZSTD and GZIP/DEFLATE streaming support ([#16268](https://github.com/netdata/netdata/issues/16268))
1383 +- Faster parents ([#16127](https://github.com/netdata/netdata/issues/16127))
1384 +- Brotli streaming compression ([#16287](https://github.com/netdata/netdata/issues/16287))
1385 +- Fix retention loading ([#16290](https://github.com/netdata/netdata/issues/16290))
1386 +- Integrations: yes/no instead of True/False in tables ([#16289](https://github.com/netdata/netdata/issues/16289))
1387 +- Fix renames in freebsd ([#16292](https://github.com/netdata/netdata/issues/16292))
1388 +- Fix missing labels from parents ([#16293](https://github.com/netdata/netdata/issues/16293))
1389 +- Fix various issues identified by coverity ([#16294](https://github.com/netdata/netdata/issues/16294))
1390 +- Do not propagate upstream internal label sources ([#16295](https://github.com/netdata/netdata/issues/16295))
1391 +- Fix missing labels from parents ([#16296](https://github.com/netdata/netdata/issues/16296))
1392 +- Update journal sources once per minute ([#16298](https://github.com/netdata/netdata/issues/16298))
1393 +- Regenerate integrations.js ([#16291](https://github.com/netdata/netdata/issues/16291))
1394 +- Fix label copy ([#16297](https://github.com/netdata/netdata/issues/16297))
1395 +- Typo fixed in gen_docs_integrations.py ([#16288](https://github.com/netdata/netdata/issues/16288))
1396 +- Bump tj-actions/changed-files from 39 to 40 ([#16301](https://github.com/netdata/netdata/issues/16301))
1397 +- Bump openssl for static in 3.1.4 ([#16303](https://github.com/netdata/netdata/issues/16303))
1398 +- Claim.sh: use echo instead of /bin/echo ([#16300](https://github.com/netdata/netdata/issues/16300))
1399 +- Apcupsd selftest metric ([#16286](https://github.com/netdata/netdata/issues/16286))
1400 +- Use proper icons for deploy integrations ([#16305](https://github.com/netdata/netdata/issues/16305))
1401 +- Fix 404s in markdown files ([#16285](https://github.com/netdata/netdata/issues/16285))
1402 +- Improve dimension ML model load ([#16262](https://github.com/netdata/netdata/issues/16262))
1403 +- Replace distutils with packaging for version ([#16259](https://github.com/netdata/netdata/issues/16259))
1404 +- Add a note for the docker deployment alongside with cetus ([#16312](https://github.com/netdata/netdata/issues/16312))
1405 +- Update docker swarm deploy info ([#16308](https://github.com/netdata/netdata/issues/16308))
1406 +- `tcp_v6_connect` monitoring ([#16316](https://github.com/netdata/netdata/issues/16316))
1407 +- Update ObservabilityCon README.md ([#16311](https://github.com/netdata/netdata/issues/16311))
1408 +- Improve shutdown when collectors are active ([#16315](https://github.com/netdata/netdata/issues/16315))
1409 +- Regenerate integrations.js ([#16306](https://github.com/netdata/netdata/issues/16306))
1410 +- Optimize database before agent shutdown ([#16317](https://github.com/netdata/netdata/issues/16317))
1411 +- Fix journal file index when collision is detected ([#16319](https://github.com/netdata/netdata/issues/16319))
1412 +- Cgroup-top function ([#16314](https://github.com/netdata/netdata/issues/16314))
1413 +- Systemd units function ([#16318](https://github.com/netdata/netdata/issues/16318))
1414 +- Rename newly added functions ([#16325](https://github.com/netdata/netdata/issues/16325))
1415 +- Fix README images ([#16320](https://github.com/netdata/netdata/issues/16320))
1416 +- Added section Blog posts README.md ([#16323](https://github.com/netdata/netdata/issues/16323))
1417 +- Fix readme images ([#16327](https://github.com/netdata/netdata/issues/16327))
1418 +- Fix coverity warnings in cgroups ([#16328](https://github.com/netdata/netdata/issues/16328))
1419 +- Integrations: fix nightly tag in helm deploy ([#16326](https://github.com/netdata/netdata/issues/16326))
1420 +- Fix: check for null rrdim in cgroup functions ([#16331](https://github.com/netdata/netdata/issues/16331))
1421 +- H2o evloop netdata stream support ([#14868](https://github.com/netdata/netdata/issues/14868))
1422 +- Regenerate integrations.js ([#16330](https://github.com/netdata/netdata/issues/16330))
1423 +- Systemd-units improvements ([#16333](https://github.com/netdata/netdata/issues/16333))
1424 +- Proc netstat: add network interface statistics function ([#16334](https://github.com/netdata/netdata/issues/16334))
1425 +- Network-interfaces function small improvements ([#16336](https://github.com/netdata/netdata/issues/16336))
1426 +- Keep precompiled statements for alarm log queries to improve performance ([#16321](https://github.com/netdata/netdata/issues/16321))
1427 +- Proc/diskstats: add block-devices function ([#16338](https://github.com/netdata/netdata/issues/16338))
1428 +- Network-interfaces function: add UsedBy field to ([#16337](https://github.com/netdata/netdata/issues/16337))
1429 +- Update info about custom dashboards ([#16121](https://github.com/netdata/netdata/issues/16121))
1430 +- Removing support for Alpine 3.15 ([#16205](https://github.com/netdata/netdata/issues/16205))
1431 +- Diskspace: add mount-points function ([#16345](https://github.com/netdata/netdata/issues/16345))
1432 +- Give the streaming function to nightly users ([#16346](https://github.com/netdata/netdata/issues/16346))
1433 +- Change defaults for functions ([#16347](https://github.com/netdata/netdata/issues/16347))
1434 +- Cleanup systemd unit files After ([#16332](https://github.com/netdata/netdata/issues/16332))
1435 +- Update packaging instructions ([#16344](https://github.com/netdata/netdata/issues/16344))
1436 +- Improve unittests ([#16329](https://github.com/netdata/netdata/issues/16329))
1437 +- Update distros.yml
1438 +- Better database corruption detention during runtime ([#16343](https://github.com/netdata/netdata/issues/16343))
1439 +- H2o add api/v2 support ([#16340](https://github.com/netdata/netdata/issues/16340))
1440 +- Fix zstd in static build ([#16349](https://github.com/netdata/netdata/issues/16349))
1441 +- Add an obsoletion time for statsd private charts ([#16269](https://github.com/netdata/netdata/issues/16269))
1442 +- Improve agent to cloud status update process ([#16342](https://github.com/netdata/netdata/issues/16342))
1443 +- Replace rrdset_is_obsolete & rrdset_isnot_obsolete ([#16351](https://github.com/netdata/netdata/issues/16351))
1444 +- Docs: getting started with netdata cloud onprem ([#15954](https://github.com/netdata/netdata/issues/15954))
1445 +- Add rrddim_get_last_stored_value to simplify function code in internal collectors ([#16348](https://github.com/netdata/netdata/issues/16348))
1446 +- Copy outdated alert guides to health/guides ([#16352](https://github.com/netdata/netdata/issues/16352))
1447 +- Update CODEOWNERS ([#16353](https://github.com/netdata/netdata/issues/16353))
1448 +- Update bundle UI to v6.58.5 ([#16354](https://github.com/netdata/netdata/issues/16354))
1449 +- Import alert guides from Netdata Assistant ([#16355](https://github.com/netdata/netdata/issues/16355))
1450 +- Health: put guides into subdirs ([#16358](https://github.com/netdata/netdata/issues/16358))
1451 +- Switch charts / chart to use buffer json functions ([#16359](https://github.com/netdata/netdata/issues/16359))
1452 +- Collectors/freeipmi: add ipmi-sensors function ([#16363](https://github.com/netdata/netdata/issues/16363))
1453 +- Fix system.net when inside lxc ([#16364](https://github.com/netdata/netdata/issues/16364))
1454 +- Cgroups: fix throttle_duration chart context ([#16367](https://github.com/netdata/netdata/issues/16367))
1455 +- Cgroups: collect pids/pids.current ([#16369](https://github.com/netdata/netdata/issues/16369))
1456 +- Docs: Correct time unit for tier 2 explanation ([#16368](https://github.com/netdata/netdata/issues/16368))
1457 +- Docs: remove unused cloud notification methods mds ([#16372](https://github.com/netdata/netdata/issues/16372))
1458 +- Add configuration documentation for Cloud AWS SNS ([#16371](https://github.com/netdata/netdata/issues/16371))
1459 +- Regenerate integrations.js ([#16373](https://github.com/netdata/netdata/issues/16373))
1460 +- Pacakging: add zstd dev to install-required-packages ([#16370](https://github.com/netdata/netdata/issues/16370))
1461 +- Add pids current to cgroups meta ([#16374](https://github.com/netdata/netdata/issues/16374))
1462 +- Add assorted improvements to the version policy draft. ([#16362](https://github.com/netdata/netdata/issues/16362))
1463 +- Regenerate integrations.js ([#16378](https://github.com/netdata/netdata/issues/16378))
1464 +- Docs: remove 'families' from health reference ([#16380](https://github.com/netdata/netdata/issues/16380))
1465 +- Fix cloud aws sns notification meta ([#16379](https://github.com/netdata/netdata/issues/16379))
1466 +- Use pre-configured message_ids to identify common logs ([#16383](https://github.com/netdata/netdata/issues/16383))
1467 +- Regenerate integrations.js ([#16384](https://github.com/netdata/netdata/issues/16384))
1468 +- Skip spaces when reading cpuset ([#16385](https://github.com/netdata/netdata/issues/16385))
1469 +- Split chars (eBPF <-> Apps integration) ([#16139](https://github.com/netdata/netdata/issues/16139))
1470 +- Fix v0 dashboard ([#16389](https://github.com/netdata/netdata/issues/16389))
1471 +- Docker: mount /etc/localtime ([#16392](https://github.com/netdata/netdata/issues/16392))
1472 +- Fix "differ in signedness" warn in cgroup ([#16391](https://github.com/netdata/netdata/issues/16391))
1473 +- Update bundled UI to v6.59.0 ([#16377](https://github.com/netdata/netdata/issues/16377))
1474 +- Health guides: remove guides for alerts that don't exist in the repo ([#16375](https://github.com/netdata/netdata/issues/16375))
1475 +- Fix systemd-units func expiration time ([#16393](https://github.com/netdata/netdata/issues/16393))
1476 +- EBPF apps order ([#16395](https://github.com/netdata/netdata/issues/16395))
1477 +- Add a apcupsd status code metric ([#16361](https://github.com/netdata/netdata/issues/16361))
1478 +- Switch alarm_log to use the buffer json functions ([#16360](https://github.com/netdata/netdata/issues/16360))
1479 +- Adaptec_raid: fix parsing PD without NCQ status ([#16400](https://github.com/netdata/netdata/issues/16400))
1480 +- Regenerate integrations.js ([#16386](https://github.com/netdata/netdata/issues/16386))
1481 +- Fix typo in metadata (eBPF) ([#16405](https://github.com/netdata/netdata/issues/16405))
1482 +- Regenerate integrations.js ([#16409](https://github.com/netdata/netdata/issues/16409))
1483 +- Fix: don't count reused connections as new ([#16414](https://github.com/netdata/netdata/issues/16414))
1484 +- /api/v1/charts: bring back chart id to `title` ([#16416](https://github.com/netdata/netdata/issues/16416))
1485 +- Don't print errors from reading filtered alerts ([#16417](https://github.com/netdata/netdata/issues/16417))
1486 +- Improve handling around EPEL requirement for RPM packages. ([#16406](https://github.com/netdata/netdata/issues/16406))
1487 +- Disable socket port reuse ([#16420](https://github.com/netdata/netdata/issues/16420))
1488 +- Fix proc net dev: keep iface speed chart var in Mbits ([#16418](https://github.com/netdata/netdata/issues/16418))
1489 +- Minor: Remove backtick from doc ([#16423](https://github.com/netdata/netdata/issues/16423))
1490 +- Docker: use /host/etc/hostname if mounted ([#16401](https://github.com/netdata/netdata/issues/16401))
1491 +- Introduce agent release metadata pipelines ([#16366](https://github.com/netdata/netdata/issues/16366))
1492 +- Add support for installing a specific major version of the agent on install. ([#16413](https://github.com/netdata/netdata/issues/16413))
1493 +- Proc_net_dev: keep nic_speed_max in kilobits ([#16429](https://github.com/netdata/netdata/issues/16429))
1494 +- Update go.d plugin to v0.57.0 ([#16427](https://github.com/netdata/netdata/issues/16427))
1495 +- Regenerate integrations.js ([#16430](https://github.com/netdata/netdata/issues/16430))
1496 +- Adds config info for Telegram cloud notification ([#16424](https://github.com/netdata/netdata/issues/16424))
1497 +- Regenerate integrations.js ([#16431](https://github.com/netdata/netdata/issues/16431))
1498 +- Update netdata-functions.md ([#16421](https://github.com/netdata/netdata/issues/16421))
1499 +- Journal sampling ([#16433](https://github.com/netdata/netdata/issues/16433))
1500 +- Removes Observabilitycon banner README.md ([#16434](https://github.com/netdata/netdata/issues/16434))
1501 +- Minor: Small health docs typo fix ([#16439](https://github.com/netdata/netdata/issues/16439))
1502 +- Remove queue limit from ACLK sync event loop ([#16411](https://github.com/netdata/netdata/issues/16411))
1503 +- Fix icon filename ([#16441](https://github.com/netdata/netdata/issues/16441))
1504 +- Journal startup ([#16443](https://github.com/netdata/netdata/issues/16443))
1505 +- Add support for gorilla pages for tier 0. ([#15969](https://github.com/netdata/netdata/issues/15969))
1506 +- Doc change: Curl no longer supports spaces in the URL. ([#16446](https://github.com/netdata/netdata/issues/16446))
1507 +- New logging layer ([#16357](https://github.com/netdata/netdata/issues/16357))
1508 +- Fix: link daemon.log to stderr in docker ([#16447](https://github.com/netdata/netdata/issues/16447))
1509 +- Journal estimations ([#16445](https://github.com/netdata/netdata/issues/16445))
1510 +- Add missing argument. ([#16451](https://github.com/netdata/netdata/issues/16451))
1511 +- Set journal path for logging ([#16457](https://github.com/netdata/netdata/issues/16457))
1512 +- When the namespace socket does not work, continue trying ([#16458](https://github.com/netdata/netdata/issues/16458))
1513 +- Log flood protection to 1000 log lines / 1 minute ([#16450](https://github.com/netdata/netdata/issues/16450))
1514 +- Add sbindir_POST to PATH of bash scripts that use `systemd-cat-native` ([#16456](https://github.com/netdata/netdata/issues/16456))
1515 +- Fixes for logging ([#16459](https://github.com/netdata/netdata/issues/16459))
1516 +- Add LogNamespace to systemd units ([#16454](https://github.com/netdata/netdata/issues/16454))
1517 +- Fix log2journal incorrect log ([#16460](https://github.com/netdata/netdata/issues/16460))
1518 +- Fix logs bashism ([#16461](https://github.com/netdata/netdata/issues/16461))
1519 +- Fix analytics logs ([#16462](https://github.com/netdata/netdata/issues/16462))
1520 +- Add option to disable ML. ([#16463](https://github.com/netdata/netdata/issues/16463))
1521 +- Update non-zero uuid key + child conf. ([#16452](https://github.com/netdata/netdata/issues/16452))
1522 +- Update go.d plugin version to v0.57.1 ([#16465](https://github.com/netdata/netdata/issues/16465))
1523 +- Handle ephemeral hosts ([#16381](https://github.com/netdata/netdata/issues/16381))
1524 +- Fix charts.d plugin loading configuration ([#16471](https://github.com/netdata/netdata/issues/16471))
1525 +- SEO changes for Collector names ([#16473](https://github.com/netdata/netdata/issues/16473))
1526 +- Journal better estimations and watcher ([#16467](https://github.com/netdata/netdata/issues/16467))
1527 +- Fix error limit to respect the log every ([#16469](https://github.com/netdata/netdata/issues/16469))
1528 +- Journals management improvements ([#16475](https://github.com/netdata/netdata/issues/16475))
1529 +- Regenerate integrations.js ([#16442](https://github.com/netdata/netdata/issues/16442))
1530 +- Log2journal yaml configuration support ([#16479](https://github.com/netdata/netdata/issues/16479))
1531 +- Logs Management ([#13291](https://github.com/netdata/netdata/issues/13291))
1532 +- Disable netdata monitoring section by default ([#16480](https://github.com/netdata/netdata/issues/16480))
1533 +- Bump new version to cov-analysis tool ([#16482](https://github.com/netdata/netdata/issues/16482))
1534 +- Fix incorrect DEB package build dep. ([#16483](https://github.com/netdata/netdata/issues/16483))
1535 +- Log2journal moved to collectors ([#16481](https://github.com/netdata/netdata/issues/16481))
1536 +- Log2journal: added missing yaml elements ([#16488](https://github.com/netdata/netdata/issues/16488))
1537 +- On-Prem documentation full and light ([#16440](https://github.com/netdata/netdata/issues/16440))
1538 +- Switch to using Debian as a base for our Docker images. ([#15823](https://github.com/netdata/netdata/issues/15823))
1539 +- Spelling fixes to documentation ([#16490](https://github.com/netdata/netdata/issues/16490))
1540 +- Check context post processing queue before sending status to cloud ([#16472](https://github.com/netdata/netdata/issues/16472))
1541 +- Logs-management: Add function cancellability ([#16484](https://github.com/netdata/netdata/issues/16484))
1542 +- Add /var/log mount to docker ([#16496](https://github.com/netdata/netdata/issues/16496))
1543 +- Proc_net_dev: remove device config section ([#16492](https://github.com/netdata/netdata/issues/16492))
1544 +- Fix occasional shutdown deadlock ([#16495](https://github.com/netdata/netdata/issues/16495))
1545 +- Fix builds on macOS due to missing endianness functions ([#16489](https://github.com/netdata/netdata/issues/16489))
1546 +- When unregistering an ephemeral host, delete its chart labels ([#16486](https://github.com/netdata/netdata/issues/16486))
1547 +- Fix CID 410152 Dereference after null check ([#16502](https://github.com/netdata/netdata/issues/16502))
1548 +- Log2journal improvements part2 ([#16494](https://github.com/netdata/netdata/issues/16494))
1549 +- Diskspace/diskstats: don't create runtime disk config by default ([#16503](https://github.com/netdata/netdata/issues/16503))
1550 +- Remove discourse badge from readme ([#16499](https://github.com/netdata/netdata/issues/16499))
1551 +- Proc_net_dev: don't create runtime device config by default ([#16501](https://github.com/netdata/netdata/issues/16501))
1552 +- Convert some error messages to info ([#16505](https://github.com/netdata/netdata/issues/16505))
1553 +- Resolve coverity issue 410232 ([#16507](https://github.com/netdata/netdata/issues/16507))
1554 +- Logs-management: Add option to submit logs to system journal ([#16485](https://github.com/netdata/netdata/issues/16485))
1555 +- Journal improvements part 3 ([#16509](https://github.com/netdata/netdata/issues/16509))
1556 +- Log alarm notifications to health.log ([#16476](https://github.com/netdata/netdata/issues/16476))
1557 +- Add curl example to create_netdata_conf() ([#16498](https://github.com/netdata/netdata/issues/16498))
1558 +- Convert some error messages to info ([#16508](https://github.com/netdata/netdata/issues/16508))
1559 +- Docs: add with-systemd-units-monitoring example to docker ([#16513](https://github.com/netdata/netdata/issues/16513))
1560 +- Apps: fix "has aggregated" debug output ([#16512](https://github.com/netdata/netdata/issues/16512))
1561 +- Python.d: mute stock jobs logging during check() ([#16515](https://github.com/netdata/netdata/issues/16515))
1562 +- Logs-management: Add prefix to chart names ([#16514](https://github.com/netdata/netdata/issues/16514))
1563 +- Remove system info logging ([#16517](https://github.com/netdata/netdata/issues/16517))
1564 +- Python.d: logger: remove timestamp when logging to journald. ([#16516](https://github.com/netdata/netdata/issues/16516))
1565 +- Log2journal improvements 4 ([#16510](https://github.com/netdata/netdata/issues/16510))
1566 +- Regenerate integrations.js ([#16500](https://github.com/netdata/netdata/issues/16500))
1567 +- Code cleanup ([#16448](https://github.com/netdata/netdata/issues/16448))
1568 +- Change log level to debug for dbengine routine operations on start ([#16518](https://github.com/netdata/netdata/issues/16518))
1569 +- Include more cases for megacli degraded state ([#16522](https://github.com/netdata/netdata/issues/16522))
1570 +- Log method = none is not respected ([#16523](https://github.com/netdata/netdata/issues/16523))
1571 +- Logs-management: Disable logs management monitoring section ([#16525](https://github.com/netdata/netdata/issues/16525))
1572 +- Log2journal improvements 5 ([#16519](https://github.com/netdata/netdata/issues/16519))
1573 +- Make image available to Learn + add a category overview page for new … ([#16527](https://github.com/netdata/netdata/issues/16527))
1574 +- Update getting-started.md ([#16528](https://github.com/netdata/netdata/issues/16528))
1575 +- Update getting-started-light-poc.md ([#16532](https://github.com/netdata/netdata/issues/16532))
1576 +- Update bundled UI to v6.65.0 ([#16520](https://github.com/netdata/netdata/issues/16520))
1577 +- Link aclk.log to stdout in docker ([#16529](https://github.com/netdata/netdata/issues/16529))
1578 +- Update go.d plugin to v0.57.2 ([#16533](https://github.com/netdata/netdata/issues/16533))
1579 +- Acquire receiver_lock to to avoid race condition ([#16531](https://github.com/netdata/netdata/issues/16531))
1580 +- Fix alpine deps ([#16543](https://github.com/netdata/netdata/issues/16543))
1581 +- Reorg kickstart guide's steps ([#16534](https://github.com/netdata/netdata/issues/16534))
1582 +- Change level to debug "took too long to be updated" ([#16540](https://github.com/netdata/netdata/issues/16540))
1583 +- Apps: fix uptime for groups with 0 processes ([#16538](https://github.com/netdata/netdata/issues/16538))
1584 +- Add option to change page type for tier 0 to gorilla ([#16545](https://github.com/netdata/netdata/issues/16545))
1585 +- Docs required for release ([#16546](https://github.com/netdata/netdata/issues/16546))
1586 +- Proper Learn-friendly links ([#16547](https://github.com/netdata/netdata/issues/16547))
1587 +- Improve page validity check during database extent load ([#16552](https://github.com/netdata/netdata/issues/16552))
1588 +- Update bundled UI to v6.66.1 ([#16554](https://github.com/netdata/netdata/issues/16554))
1589 +- Regenerate integrations.js ([#16536](https://github.com/netdata/netdata/issues/16536))
1590 +
1591 +## [1.43.0] - 2023-10-16
1592 +
1593 +### Merged Pull Requests:
1594 +
1595 +- Update an oversight on the openSUSE 15.5 packages ([#15781](https://github.com/netdata/netdata/issues/15781))
1596 +- Mark integrations milestones as completed in README.md ([#15783](https://github.com/netdata/netdata/issues/15783))
1597 +- Update README.md
1598 +- Set correct path for ansible-playbook in deployment tutorial ([#15786](https://github.com/netdata/netdata/issues/15786))
1599 +- Fix docker-compose example ([#15784](https://github.com/netdata/netdata/issues/15784))
1600 +- Minor Dyncfg mvp0 fixes ([#15785](https://github.com/netdata/netdata/issues/15785))
1601 +- Count functions as collections, to restart plugins ([#15787](https://github.com/netdata/netdata/issues/15787))
1602 +- Fix typo in Readme ([#15794](https://github.com/netdata/netdata/issues/15794))
1603 +- Fix hpssa handle unassigned drives ([#15793](https://github.com/netdata/netdata/issues/15793))
1604 +- Prevent reporting negative retention when the db is empty ([#15796](https://github.com/netdata/netdata/issues/15796))
1605 +- Function systemd-journal: always have a nd_journal_process ([#15798](https://github.com/netdata/netdata/issues/15798))
1606 +- Bump openssl version of static builds to 1.1.1v ([#15779](https://github.com/netdata/netdata/issues/15779))
1607 +- Clean up python deps for RPM packages. ([#15804](https://github.com/netdata/netdata/issues/15804))
1608 +- Add proper SUID fallback for DEB plugin packages. ([#15803](https://github.com/netdata/netdata/issues/15803))
1609 +- Fix systemd journal build deps in DEB packages. ([#15805](https://github.com/netdata/netdata/issues/15805))
1610 +- Fix api v1 mgmt/health ([#15806](https://github.com/netdata/netdata/issues/15806))
1611 +- Return 412 instead of 403 when a bearer token is required ([#15808](https://github.com/netdata/netdata/issues/15808))
1612 +- Bump ui to v6.28.0 ([#15810](https://github.com/netdata/netdata/issues/15810))
1613 +- Nfacct.plugin increase restart time from 4 hours to 1 day ([#15801](https://github.com/netdata/netdata/issues/15801))
1614 +- Fix: the cleanup was not performed during the kickstart.sh dry run ([#15775](https://github.com/netdata/netdata/issues/15775))
1615 +- Fix packaging: link health.log to stdout ([#15813](https://github.com/netdata/netdata/issues/15813))
1616 +- Docs rename alarm to alert ([#15812](https://github.com/netdata/netdata/issues/15812))
1617 +- Systemd-journal fixes ([#15814](https://github.com/netdata/netdata/issues/15814))
1618 +- Installer setuid fallback for perf and slabinfo plugins ([#15807](https://github.com/netdata/netdata/issues/15807))
1619 +- Added /api/v2/ilove.svg endpoint ([#15815](https://github.com/netdata/netdata/issues/15815))
1620 +- Release job message status to avoid memory leak ([#15822](https://github.com/netdata/netdata/issues/15822))
1621 +- Update cmakelist ([#15817](https://github.com/netdata/netdata/issues/15817))
1622 +- ML improve init ([#15819](https://github.com/netdata/netdata/issues/15819))
1623 +- Improve dyncfg exit ([#15824](https://github.com/netdata/netdata/issues/15824))
1624 +- Release fd if setsockopt or bind fails ([#15826](https://github.com/netdata/netdata/issues/15826))
1625 +- Increase alert snapshot chunk size ([#15748](https://github.com/netdata/netdata/issues/15748))
1626 +- RPM: fixed attrs for conf.d dirs ([#15828](https://github.com/netdata/netdata/issues/15828))
1627 +- Avoid resource leak ([#15827](https://github.com/netdata/netdata/issues/15827))
1628 +- Systemd-journal in containers ([#15830](https://github.com/netdata/netdata/issues/15830))
1629 +- Workaround for systems that do not have SD_JOURNAL_OS_ROOT ([#15837](https://github.com/netdata/netdata/issues/15837))
1630 +- Added ilove.html ([#15836](https://github.com/netdata/netdata/issues/15836))
1631 +- Fix CID 382964: Code maintainability issues (SIZEOF_MISMATCH) ([#15833](https://github.com/netdata/netdata/issues/15833))
1632 +- Fix coverity 393052: API usage errors (LOCK) ([#15832](https://github.com/netdata/netdata/issues/15832))
1633 +- Fix use after free ([#15825](https://github.com/netdata/netdata/issues/15825))
1634 +- Fix warning when compiling with -flto ([#15838](https://github.com/netdata/netdata/issues/15838))
1635 +- Fix configure: WARNING: unrecognized options: --with-zlib ([#15840](https://github.com/netdata/netdata/issues/15840))
1636 +- Added CentOS-Stream to distros ([#15742](https://github.com/netdata/netdata/issues/15742))
1637 +- Bump bundled ui to v6.29.0 ([#15841](https://github.com/netdata/netdata/issues/15841))
1638 +- Fix compilation warning ([#15839](https://github.com/netdata/netdata/issues/15839))
1639 +- Fix static build SSL ([#15842](https://github.com/netdata/netdata/issues/15842))
1640 +- Facets histograms ([#15846](https://github.com/netdata/netdata/issues/15846))
1641 +- Reworked pluginsd caching of RDAs to avoid crashes ([#15845](https://github.com/netdata/netdata/issues/15845))
1642 +- Fix packaging static build openssl 32bit ([#15855](https://github.com/netdata/netdata/issues/15855))
1643 +- Packaging cleanup after #15842 ([#15857](https://github.com/netdata/netdata/issues/15857))
1644 +- Fix packaging mark stable static build ([#15854](https://github.com/netdata/netdata/issues/15854))
1645 +- Fix proc meminfo cached calculation ([#15859](https://github.com/netdata/netdata/issues/15859))
1646 +- Update deploy.yaml
1647 +- Update platform_info.md
1648 +- Update metadata.yaml
1649 +- Regenerate integrations.js ([#15862](https://github.com/netdata/netdata/issues/15862))
1650 +- Fix compilation warnings ([#15858](https://github.com/netdata/netdata/issues/15858))
1651 +- Apply a label prefix for netdata labels ([#15860](https://github.com/netdata/netdata/issues/15860))
1652 +- Add plugin and module information to collector integrations. ([#15864](https://github.com/netdata/netdata/issues/15864))
1653 +- Regenerate integrations.js ([#15867](https://github.com/netdata/netdata/issues/15867))
1654 +- Explicitly depend on version-matched plugins in native packages. ([#15861](https://github.com/netdata/netdata/issues/15861))
1655 +- Misc code cleanup ([#15665](https://github.com/netdata/netdata/issues/15665))
1656 +- Add a fail reason to pinpoint exactly what went wrong ([#15866](https://github.com/netdata/netdata/issues/15866))
1657 +- Unconditionally delete very old models. ([#15720](https://github.com/netdata/netdata/issues/15720))
1658 +- Add a chart that groups anomaly rate by chart type. ([#15856](https://github.com/netdata/netdata/issues/15856))
1659 +- ML add new `delete old models param` to readme ([#15873](https://github.com/netdata/netdata/issues/15873))
1660 +- Use the newer XXH3 128bits algorithm, instead of the classic XXH128 ([#15878](https://github.com/netdata/netdata/issues/15878))
1661 +- Allow any field to be a facet ([#15880](https://github.com/netdata/netdata/issues/15880))
1662 +- Regenerate integrations.js ([#15879](https://github.com/netdata/netdata/issues/15879))
1663 +- Update SQLITE version to 3.42.0 ([#15870](https://github.com/netdata/netdata/issues/15870))
1664 +- Metadata cleanup improvements ([#15462](https://github.com/netdata/netdata/issues/15462))
1665 +- Add index to ACLK table to improve update statements ([#15890](https://github.com/netdata/netdata/issues/15890))
1666 +- Fix build with --disable-https ([#15395](https://github.com/netdata/netdata/issues/15395))
1667 +- Make `anomaly_detection.type_anomaly_rate` stacked ([#15895](https://github.com/netdata/netdata/issues/15895))
1668 +- Bump ui to v6.32.0 ([#15897](https://github.com/netdata/netdata/issues/15897))
1669 +- Reduce label memory ([#15255](https://github.com/netdata/netdata/issues/15255))
1670 +- Limit atomic operations for statistics ([#15887](https://github.com/netdata/netdata/issues/15887))
1671 +- Add better recovery for corrupted metadata ([#15891](https://github.com/netdata/netdata/issues/15891))
1672 +- Improve shutdown of the metadata thread ([#15901](https://github.com/netdata/netdata/issues/15901))
1673 +- Update change-metrics-storage.md ([#15896](https://github.com/netdata/netdata/issues/15896))
1674 +- Update pfsense.md ([#15894](https://github.com/netdata/netdata/issues/15894))
1675 +- Assorted Dockerfile cleanup. ([#15902](https://github.com/netdata/netdata/issues/15902))
1676 +- Properly document issues with installing on hosts without IPv4. ([#15882](https://github.com/netdata/netdata/issues/15882))
1677 +- Python.d/sensors: Increase voltage limits 127 -> 400 ([#15905](https://github.com/netdata/netdata/issues/15905))
1678 +- Reduce workload during cleanup ([#15919](https://github.com/netdata/netdata/issues/15919))
1679 +- Reset the obsolete flag on service thread ([#15892](https://github.com/netdata/netdata/issues/15892))
1680 +- Replace _ with spaces for name variable for ntfy ([#15909](https://github.com/netdata/netdata/issues/15909))
1681 +- Don't return `-1` if the socket was closed ([#15771](https://github.com/netdata/netdata/issues/15771))
1682 +- Systemd-journal and facets improvements ([#15926](https://github.com/netdata/netdata/issues/15926))
1683 +- Fix memory leak on prometheus exporter and code cleanup ([#15929](https://github.com/netdata/netdata/issues/15929))
1684 +- Systemd-journal and facets: info and sources ([#15928](https://github.com/netdata/netdata/issues/15928))
1685 +- Improved facets info ([#15936](https://github.com/netdata/netdata/issues/15936))
1686 +- Bump actions/checkout from 3 to 4 ([#15935](https://github.com/netdata/netdata/issues/15935))
1687 +- Add specific info on how to access the dashboards ([#15925](https://github.com/netdata/netdata/issues/15925))
1688 +- Integrations: Add a note to enable the collectors ([#15945](https://github.com/netdata/netdata/issues/15945))
1689 +- Feat: Adds access control configuration for ntfy ([#15932](https://github.com/netdata/netdata/issues/15932))
1690 +- Skip copying environment/install-type files when checking existing installs. ([#15876](https://github.com/netdata/netdata/issues/15876))
1691 +- Facets optimizations ([#15940](https://github.com/netdata/netdata/issues/15940))
1692 +- Add description about packages ([#15941](https://github.com/netdata/netdata/issues/15941))
1693 +- Streaming logs ([#15948](https://github.com/netdata/netdata/issues/15948))
1694 +- Disk Labels ([#15949](https://github.com/netdata/netdata/issues/15949))
1695 +- Fix CID 400366 ([#15953](https://github.com/netdata/netdata/issues/15953))
1696 +- Update descriptions. ([#15952](https://github.com/netdata/netdata/issues/15952))
1697 +- Update slabinfo metadata ([#15951](https://github.com/netdata/netdata/issues/15951))
1698 +- Facets and journal improvements ([#15956](https://github.com/netdata/netdata/issues/15956))
1699 +- Fix journal direction parsing ([#15957](https://github.com/netdata/netdata/issues/15957))
1700 +- Clarifying the possible installation types ([#15958](https://github.com/netdata/netdata/issues/15958))
1701 +- Enable `ml_1min_node_ar` as a default alert ([#14687](https://github.com/netdata/netdata/issues/14687))
1702 +- RPM: build go.d.plugin native for CentOS-Stream ([#14551](https://github.com/netdata/netdata/issues/14551))
1703 +- Integrations: Add a note to install charts.d plugin ([#15943](https://github.com/netdata/netdata/issues/15943))
1704 +- Fix using undefined var when loading job statuses in python.d ([#15965](https://github.com/netdata/netdata/issues/15965))
1705 +- Skip trying to preserve file owners when bundling external code. ([#15966](https://github.com/netdata/netdata/issues/15966))
1706 +- Facets: data-only queries ([#15961](https://github.com/netdata/netdata/issues/15961))
1707 +- Facets: do not shadow local variable ([#15968](https://github.com/netdata/netdata/issues/15968))
1708 +- EBPF socket function ([#15850](https://github.com/netdata/netdata/issues/15850))
1709 +- Facets histogram when empty ([#15970](https://github.com/netdata/netdata/issues/15970))
1710 +- Facets histogram: do not send db retention for facets ([#15974](https://github.com/netdata/netdata/issues/15974))
1711 +- Facets: fixes 5 ([#15976](https://github.com/netdata/netdata/issues/15976))
1712 +- Apps.plugin function is not thread safe ([#15978](https://github.com/netdata/netdata/issues/15978))
1713 +- Bump UI to v6.37.1 ([#15980](https://github.com/netdata/netdata/issues/15980))
1714 +- Update go.d.plugin to v0.55.0 ([#15981](https://github.com/netdata/netdata/issues/15981))
1715 +- Regenerate integrations.js ([#15946](https://github.com/netdata/netdata/issues/15946))
1716 +- Functions: allow collectors to be restarted ([#15983](https://github.com/netdata/netdata/issues/15983))
1717 +- Metadata fixes for some collectors ([#15982](https://github.com/netdata/netdata/issues/15982))
1718 +- Regenerate integrations.js ([#15985](https://github.com/netdata/netdata/issues/15985))
1719 +- Initial tooling for Integrations Documentation ([#15893](https://github.com/netdata/netdata/issues/15893))
1720 +- Bump docker/login-action from 2 to 3 ([#15992](https://github.com/netdata/netdata/issues/15992))
1721 +- Bump docker/setup-qemu-action from 2 to 3 ([#15991](https://github.com/netdata/netdata/issues/15991))
1722 +- Bump docker/build-push-action from 4 to 5 ([#15990](https://github.com/netdata/netdata/issues/15990))
1723 +- Bump docker/setup-buildx-action from 2 to 3 ([#15989](https://github.com/netdata/netdata/issues/15989))
1724 +- Re-store rrdvars on late dimensions ([#15984](https://github.com/netdata/netdata/issues/15984))
1725 +- Extend ml default training from ~24 to ~48 hours ([#15971](https://github.com/netdata/netdata/issues/15971))
1726 +- Functions cancelling ([#15977](https://github.com/netdata/netdata/issues/15977))
1727 +- Fix compilation warnings ([#16001](https://github.com/netdata/netdata/issues/16001))
1728 +- Update CMakeLists.txt ([#16005](https://github.com/netdata/netdata/issues/16005))
1729 +- Update integrations/gen_docs_integrations.py ([#15997](https://github.com/netdata/netdata/issues/15997))
1730 +- Fix compilation warnings ([#16006](https://github.com/netdata/netdata/issues/16006))
1731 +- Add a summary field to alerts ([#15886](https://github.com/netdata/netdata/issues/15886))
1732 +- EBPF socket: function with event loop ([#16004](https://github.com/netdata/netdata/issues/16004))
1733 +- Preserve README info inside metadata.yaml for freeipmi.plugin ([#15955](https://github.com/netdata/netdata/issues/15955))
1734 +- Systemd-Journal: fix crash when the uid or gid do not have names ([#16015](https://github.com/netdata/netdata/issues/16015))
1735 +- Fix crash on setting thread name ([#16016](https://github.com/netdata/netdata/issues/16016))
1736 +- Update bundled UI to v6.39.0 ([#16020](https://github.com/netdata/netdata/issues/16020))
1737 +- Some collector metadata improvements ([#16008](https://github.com/netdata/netdata/issues/16008))
1738 +- Change the build image of EL packages from alma to rocky ([#15944](https://github.com/netdata/netdata/issues/15944))
1739 +- Clarify shipping repos cases ([#15960](https://github.com/netdata/netdata/issues/15960))
1740 +- Fix handling of CI skipping. ([#16022](https://github.com/netdata/netdata/issues/16022))
1741 +- Add systemd-journal.plugin to apps_groups.conf ([#16024](https://github.com/netdata/netdata/issues/16024))
1742 +- Fix package builds on Rocky Linux. ([#16026](https://github.com/netdata/netdata/issues/16026))
1743 +- Regenerate integrations.js ([#16011](https://github.com/netdata/netdata/issues/16011))
1744 +- Remove the line length limit from pluginsd ([#16013](https://github.com/netdata/netdata/issues/16013))
1745 +- Disable mongodb exporter builds where broken. ([#16033](https://github.com/netdata/netdata/issues/16033))
1746 +- Add description for Homebrew on Apple Silicon Mac(netdata/learn/#1789) ([#16027](https://github.com/netdata/netdata/issues/16027))
1747 +- Update collector metadata for python collectors ([#16019](https://github.com/netdata/netdata/issues/16019))
1748 +- Use `status` as units for `anomaly_detection.detector_events` ([#16028](https://github.com/netdata/netdata/issues/16028))
1749 +- Simplify the script for generating documentation from integrations ([#16009](https://github.com/netdata/netdata/issues/16009))
1750 +- Remove discontinued Hangouts and StackPulse notification methods ([#16041](https://github.com/netdata/netdata/issues/16041))
1751 +- Doc about running a local dashboard through Cloudflare (community) ([#16043](https://github.com/netdata/netdata/issues/16043))
1752 +- Fix summary field in table ([#16050](https://github.com/netdata/netdata/issues/16050))
1753 +- Run health queries from tier 0 ([#16032](https://github.com/netdata/netdata/issues/16032))
1754 +- Switch to uint64_t to avoid overflow in 32bit systems ([#16048](https://github.com/netdata/netdata/issues/16048))
1755 +- Fix missing find command when installing/updating on Rocky Linux systems. ([#16052](https://github.com/netdata/netdata/issues/16052))
1756 +- Update bundled ui version to v6.41.1 ([#16054](https://github.com/netdata/netdata/issues/16054))
1757 +- Maintain node's last connected timestamp in the db ([#15979](https://github.com/netdata/netdata/issues/15979))
1758 +- Regenerate integrations.js ([#16044](https://github.com/netdata/netdata/issues/16044))
1759 +- Health: add upsd alerts ([#16036](https://github.com/netdata/netdata/issues/16036))
1760 +- Update to use versioned base images for CI. ([#16053](https://github.com/netdata/netdata/issues/16053))
1761 +- Bugfix on integrations/gen_docs_integrations.py ([#16059](https://github.com/netdata/netdata/issues/16059))
1762 +- Update go.d version to v0.56.0 ([#16061](https://github.com/netdata/netdata/issues/16061))
1763 +- Fix coverity 402975 ([#16058](https://github.com/netdata/netdata/issues/16058))
1764 +- Make collectors/COLLECTORS.md have its list autogenerated from integrations.js ([#15995](https://github.com/netdata/netdata/issues/15995))
1765 +- Convert the ML database ([#16046](https://github.com/netdata/netdata/issues/16046))
1766 +- Improve description about tc.plugin ([#16068](https://github.com/netdata/netdata/issues/16068))
1767 +- [Integrations Docs] Add a badge for either netdata or community maintained ([#16073](https://github.com/netdata/netdata/issues/16073))
1768 +- Dyncfg add streaming support ([#15791](https://github.com/netdata/netdata/issues/15791))
1769 +- Send alerts summary field to cloud ([#16056](https://github.com/netdata/netdata/issues/16056))
1770 +- Split cgroup charts ([#15975](https://github.com/netdata/netdata/issues/15975))
1771 +- Regenerate integrations.js ([#16062](https://github.com/netdata/netdata/issues/16062))
1772 +- Change @linuxnetdata to @netdatahq ([#16082](https://github.com/netdata/netdata/issues/16082))
1773 +- Avoid duplicate keys in labels ([#16014](https://github.com/netdata/netdata/issues/16014))
1774 +- Systemd-Journal by file ([#16038](https://github.com/netdata/netdata/issues/16038))
1775 +- Address reported socket issue ([#16083](https://github.com/netdata/netdata/issues/16083))
1776 +- Functions: prevent a busy wait loop ([#16086](https://github.com/netdata/netdata/issues/16086))
1777 +- Severity level for logs ([#14727](https://github.com/netdata/netdata/issues/14727))
1778 +- Python.d: respect env NETDATA_LOG_SEVERITY_LEVEL ([#16084](https://github.com/netdata/netdata/issues/16084))
1779 +- Charts.d: respect env NETDATA_LOG_SEVERITY_LEVEL ([#16085](https://github.com/netdata/netdata/issues/16085))
1780 +- Update UI to v6.42.0 ([#16088](https://github.com/netdata/netdata/issues/16088))
1781 +- Dont use sd_journal_open_files_fd() that is buggy on older libsystemd ([#16090](https://github.com/netdata/netdata/issues/16090))
1782 +- Update UI to v6.42.1 ([#16091](https://github.com/netdata/netdata/issues/16091))
1783 +- Update go.d.plugin to v0.56.1 ([#16092](https://github.com/netdata/netdata/issues/16092))
1784 +- Fix querying out of retention ([#16094](https://github.com/netdata/netdata/issues/16094))
1785 +- Regenerate integrations.js ([#16093](https://github.com/netdata/netdata/issues/16093))
1786 +- External plugins: respect env NETDATA_LOG_SEVERITY_LEVEL ([#16089](https://github.com/netdata/netdata/issues/16089))
1787 +- Journal: fix incremental queries ([#16098](https://github.com/netdata/netdata/issues/16098))
1788 +- A simple journal optimization ([#16099](https://github.com/netdata/netdata/issues/16099))
1789 +- Better journal logging ([#16101](https://github.com/netdata/netdata/issues/16101))
1790 +- Update UI to v6.42.2 ([#16100](https://github.com/netdata/netdata/issues/16100))
1791 +- Update categories.yaml ([#16097](https://github.com/netdata/netdata/issues/16097))
1792 +- Fix systemd-journal.plugin README and prepare it for Learn ([#16096](https://github.com/netdata/netdata/issues/16096))
1793 +- Add integrations/cloud-notifications to cleanup ([#16102](https://github.com/netdata/netdata/issues/16102))
1794 +- Have one documentation page about Netdata Charts ([#16042](https://github.com/netdata/netdata/issues/16042))
1795 +- Documentation for Dynamic Configuration ([#15643](https://github.com/netdata/netdata/issues/15643))
1796 +- Journal: go up to stop anchor on data only queries ([#16107](https://github.com/netdata/netdata/issues/16107))
1797 +- Regenerate integrations.js ([#16103](https://github.com/netdata/netdata/issues/16103))
1798 +- Update collectors/python.d.plugin/pandas/metadata.yaml ([#16106](https://github.com/netdata/netdata/issues/16106))
1799 +- Skip database migration steps in new installation ([#16071](https://github.com/netdata/netdata/issues/16071))
1800 +- Journal: respect anchor on non-data-only queries ([#16109](https://github.com/netdata/netdata/issues/16109))
1801 +- Fix in generate integrations docs script ([#16108](https://github.com/netdata/netdata/issues/16108))
1802 +- Update UI to v6.43.0 ([#16112](https://github.com/netdata/netdata/issues/16112))
1803 +- Fix crash on parsing clabel command with no source ([#16114](https://github.com/netdata/netdata/issues/16114))
1804 +- Do not force OOMKill ([#16115](https://github.com/netdata/netdata/issues/16115))
1805 +- Regenerate integrations.js ([#16111](https://github.com/netdata/netdata/issues/16111))
1806 +- Dont strip newlines when forwarding FUNCTION_PAYLOAD ([#16120](https://github.com/netdata/netdata/issues/16120))
1807 +- Split apps charts ([#16095](https://github.com/netdata/netdata/issues/16095))
1808 +- Journal: fix the 1 second latency in play mode ([#16123](https://github.com/netdata/netdata/issues/16123))
1809 +- Update UI to v6.45.0 ([#16124](https://github.com/netdata/netdata/issues/16124))
1810 +- Remove multiple categories due to bug ([#16126](https://github.com/netdata/netdata/issues/16126))
1811 +- Regenerate integrations.js ([#16125](https://github.com/netdata/netdata/issues/16125))
1812 +- Apps: change user_group to usergroup ([#16131](https://github.com/netdata/netdata/issues/16131))
1813 +- Fix journal help and mark debug keys in the output ([#16133](https://github.com/netdata/netdata/issues/16133))
1814 +- Fix proc netstat metrics ([#16122](https://github.com/netdata/netdata/issues/16122))
1815 +- Retain a list structure instead of a set for data collection integrations categories ([#16130](https://github.com/netdata/netdata/issues/16130))
1816 +- Regenerate integrations.js ([#16132](https://github.com/netdata/netdata/issues/16132))
1817 +- Add summary to alerts configurations ([#16129](https://github.com/netdata/netdata/issues/16129))
1818 +- Remove family from alerts ([#16025](https://github.com/netdata/netdata/issues/16025))
1819 +- Fix random crashes on pthread_detach() ([#16137](https://github.com/netdata/netdata/issues/16137))
1820 +- Introduce stringify function for integrations ([#16140](https://github.com/netdata/netdata/issues/16140))
1821 +- Fixes in integration generation script ([#16141](https://github.com/netdata/netdata/issues/16141))
1822 +- Bugfix in integrations/setup/template ([#16142](https://github.com/netdata/netdata/issues/16142))
1823 +- Regenerate integrations.js ([#16138](https://github.com/netdata/netdata/issues/16138))
1824 +- Update python.d./varnish/metadata.yaml ([#16143](https://github.com/netdata/netdata/issues/16143))
1825 +- Regenerate integrations.js ([#16144](https://github.com/netdata/netdata/issues/16144))
1826 +- Health: don't log an unknown key error for "families" ([#16145](https://github.com/netdata/netdata/issues/16145))
1827 +- Code improvements ([#16104](https://github.com/netdata/netdata/issues/16104))
1828 +- Fix `test -x` check for uninstaller script ([#16146](https://github.com/netdata/netdata/issues/16146))
1829 +- Journal: updates ([#16150](https://github.com/netdata/netdata/issues/16150))
1830 +- Make io charts "write" negative in apps and cgroups (systemd) ([#16152](https://github.com/netdata/netdata/issues/16152))
1831 +- Uninstaller: remove ND systemd preset and tmp dir ([#16148](https://github.com/netdata/netdata/issues/16148))
1832 +- Docker: make chmod o+rX / non fatal ([#16156](https://github.com/netdata/netdata/issues/16156))
1833 +- Fix compilation warnings ([#16158](https://github.com/netdata/netdata/issues/16158))
1834 +- Don't queue removed when there is a newer alert ([#16157](https://github.com/netdata/netdata/issues/16157))
1835 +- Batch ML model load commands ([#16155](https://github.com/netdata/netdata/issues/16155))
1836 +- [BUGFIX] MQTT ARM fix ([#16154](https://github.com/netdata/netdata/issues/16154))
1837 +- Fix repo path for openSUSE 15.5 packages ([#16161](https://github.com/netdata/netdata/issues/16161))
1838 +- Modify eBPF exit ([#16159](https://github.com/netdata/netdata/issues/16159))
1839 +- Apps: remove mem_private on FreeBSD ([#16166](https://github.com/netdata/netdata/issues/16166))
1840 +- Fix netdata-uninstaller; blindly deletes NETDATA_PREFIX env var ([#16167](https://github.com/netdata/netdata/issues/16167))
1841 +- Facets: do not corrupt the index when doubling the hashtable ([#16171](https://github.com/netdata/netdata/issues/16171))
1842 +- Add icons to integrations markdown files ([#16169](https://github.com/netdata/netdata/issues/16169))
1843 +- Regenerate integrations.js ([#16176](https://github.com/netdata/netdata/issues/16176))
1844 +- Update go.d to v0.56.2 ([#16181](https://github.com/netdata/netdata/issues/16181))
1845 +- Regenerate integrations.js ([#16182](https://github.com/netdata/netdata/issues/16182))
1846 +- Disable _go_build in centos 8 & 9 ([#16183](https://github.com/netdata/netdata/issues/16183))
1847 +- Add support for Fedora 39 native packages into our CI ([#16180](https://github.com/netdata/netdata/issues/16180))
1848 +- Add support for Ubuntu 23.10 native packages into our CI ([#16179](https://github.com/netdata/netdata/issues/16179))
1849 +- Update bundled static packages ([#16177](https://github.com/netdata/netdata/issues/16177))
1850 +- Functions columns ([#16184](https://github.com/netdata/netdata/issues/16184))
1851 +- Fix access of memory after free ([#16185](https://github.com/netdata/netdata/issues/16185))
1852 +- Suppress "families" log ([#16186](https://github.com/netdata/netdata/issues/16186))
1853 +- Add agent version on startup ([#16188](https://github.com/netdata/netdata/issues/16188))
1854 +- Journal updates ([#16189](https://github.com/netdata/netdata/issues/16189))
1855 +- Update bundled UI to v6.49.0 ([#16192](https://github.com/netdata/netdata/issues/16192))
1856 +- Faster facets ([#16190](https://github.com/netdata/netdata/issues/16190))
1857 +- Systemd-journal timeout to 55 secs ([#16194](https://github.com/netdata/netdata/issues/16194))
1858 +- Journal timeout ([#16195](https://github.com/netdata/netdata/issues/16195))
1859 +- Apps: always expose "other" group ([#16198](https://github.com/netdata/netdata/issues/16198))
1860 +- Health: attach drops ratio alarms to net.drops ([#16199](https://github.com/netdata/netdata/issues/16199))
1861 +- Update ui to 6.50.2 ([#16201](https://github.com/netdata/netdata/issues/16201))
1862 +- Update ui to 6.50.2 again ([#16202](https://github.com/netdata/netdata/issues/16202))
1863 +- Add order in available histograms ([#16204](https://github.com/netdata/netdata/issues/16204))
1864 +- Regenerate integrations.js ([#16200](https://github.com/netdata/netdata/issues/16200))
1865 +- Rework guide, add SSL with self-signed certs ([#16153](https://github.com/netdata/netdata/issues/16153))
1866 +- Ui-6.51.0 ([#16208](https://github.com/netdata/netdata/issues/16208))
1867 +- Allow patterns in journal queries ([#16210](https://github.com/netdata/netdata/issues/16210))
1868 +- Registry action hello should always work ([#16212](https://github.com/netdata/netdata/issues/16212))
1869 +- Apps: fix divide by zero when calc avg uptime ([#16211](https://github.com/netdata/netdata/issues/16211))
1870 +- Add summary to /alerts ([#16213](https://github.com/netdata/netdata/issues/16213))
1871 +- Disable logging to syslog by default ([#16214](https://github.com/netdata/netdata/issues/16214))
1872 +- Update bundled UI to v6.52.0 ([#16216](https://github.com/netdata/netdata/issues/16216))
1873 +- Update bundled UI to v6.52.1 ([#16217](https://github.com/netdata/netdata/issues/16217))
1874 +- Dynamic meta queue size ([#16218](https://github.com/netdata/netdata/issues/16218))
1875 +- Update bundled UI to v6.52.2 ([#16219](https://github.com/netdata/netdata/issues/16219))
1876 +
1877 +## [1.42.0] - 2023-08-09
1878 +
1879 +### Merged Pull Requests:
1880 +
1881 +- Update README.md
1882 +- Add linux powercap metrics collector ([#15364](https://github.com/netdata/netdata/issues/15364))
1883 +- Add short descriptions to cgroups yaml ([#15457](https://github.com/netdata/netdata/issues/15457))
1884 +- Add community key in schema ([#15465](https://github.com/netdata/netdata/issues/15465))
1885 +- Freeipmi yaml updates ([#15458](https://github.com/netdata/netdata/issues/15458))
1886 +- Macos yaml updates ([#15459](https://github.com/netdata/netdata/issues/15459))
1887 +- Update proc plugin yaml ([#15460](https://github.com/netdata/netdata/issues/15460))
1888 +- Hash table charts ([#15323](https://github.com/netdata/netdata/issues/15323))
1889 +- Store and transmit chart_name to cloud in alert events ([#15441](https://github.com/netdata/netdata/issues/15441))
1890 +- Apps.plugin fds limits improvements ([#15467](https://github.com/netdata/netdata/issues/15467))
1891 +- Fix the calculation of incremental-sum ([#15468](https://github.com/netdata/netdata/issues/15468))
1892 +- Fix non-interactive options for apt-get and zypper. ([#15288](https://github.com/netdata/netdata/issues/15288))
1893 +- Meta schema change multi-instance to multi_instance ([#15470](https://github.com/netdata/netdata/issues/15470))
1894 +- Fix anchors ([#15469](https://github.com/netdata/netdata/issues/15469))
1895 +- Rename most-popular to most_popular in categories.yaml ([#15476](https://github.com/netdata/netdata/issues/15476))
1896 +- Fix coverity issue ([#15475](https://github.com/netdata/netdata/issues/15475))
1897 +- Overhaul deployment strategies documentation ([#15464](https://github.com/netdata/netdata/issues/15464))
1898 +- Docs: note that health foreach works only with template ([#15478](https://github.com/netdata/netdata/issues/15478))
1899 +- Update debugfs plugin metadata. ([#15463](https://github.com/netdata/netdata/issues/15463))
1900 +- Add basic slabinfo metadata. ([#15484](https://github.com/netdata/netdata/issues/15484))
1901 +- Yaml file updates ([#15477](https://github.com/netdata/netdata/issues/15477))
1902 +- Memory Controller (MC) and DIMM Error Detection And Correction (EDAC) ([#15473](https://github.com/netdata/netdata/issues/15473))
1903 +- Improve the update of the alert chart name in the database ([#15490](https://github.com/netdata/netdata/issues/15490))
1904 +- Fix resource leak - CID 396310 ([#15491](https://github.com/netdata/netdata/issues/15491))
1905 +- Freeipmi flush keepalive msgs ([#15499](https://github.com/netdata/netdata/issues/15499))
1906 +- Update charts.d.plugin yaml ([#15483](https://github.com/netdata/netdata/issues/15483))
1907 +- Add required properties to multi-module schema ([#15496](https://github.com/netdata/netdata/issues/15496))
1908 +- Apps.plugin limits tracing ([#15504](https://github.com/netdata/netdata/issues/15504))
1909 +- Docs: clarify health percentage option ([#15492](https://github.com/netdata/netdata/issues/15492))
1910 +- Drop support for native packages of Ubuntu 22.10 ([#15292](https://github.com/netdata/netdata/issues/15292))
1911 +- Add a machine distinct id to analytics ([#15485](https://github.com/netdata/netdata/issues/15485))
1912 +- EBPF Yaml ([#15474](https://github.com/netdata/netdata/issues/15474))
1913 +- Allow manage/health api call to be used without bearer ([#15503](https://github.com/netdata/netdata/issues/15503))
1914 +- Make title reflect legacy agent dashboard ([#15479](https://github.com/netdata/netdata/issues/15479))
1915 +- Readme: reorder cols in whats new and add links ([#15455](https://github.com/netdata/netdata/issues/15455))
1916 +- Add schema for deployment integrations and centralize integrations schemas. ([#15509](https://github.com/netdata/netdata/issues/15509))
1917 +- Fill in metadata for idlejitter plugin. ([#15506](https://github.com/netdata/netdata/issues/15506))
1918 +- Fix collector multi schema ([#15520](https://github.com/netdata/netdata/issues/15520))
1919 +- Wait for node_id while claiming ([#15526](https://github.com/netdata/netdata/issues/15526))
1920 +- Allow to create alert hashes with --disable-cloud ([#15519](https://github.com/netdata/netdata/issues/15519))
1921 +- Add quick_start key to deploy schema. ([#15522](https://github.com/netdata/netdata/issues/15522))
1922 +- Add a schema for the categories.yaml file. ([#15521](https://github.com/netdata/netdata/issues/15521))
1923 +- Python collector yaml updates ([#15517](https://github.com/netdata/netdata/issues/15517))
1924 +- Update gitignore to include vscode settings for schema validation ([#15508](https://github.com/netdata/netdata/issues/15508))
1925 +- Updated all Linux distros, macOS and Docker ([#15532](https://github.com/netdata/netdata/issues/15532))
1926 +- Added cloud status in registry?action=hello ([#15530](https://github.com/netdata/netdata/issues/15530))
1927 +- Proc integrations ([#15494](https://github.com/netdata/netdata/issues/15494))
1928 +- Update platform support info and add a schema. ([#15531](https://github.com/netdata/netdata/issues/15531))
1929 +- PCI Advanced Error Reporting (AER) ([#15488](https://github.com/netdata/netdata/issues/15488))
1930 +- Update nfacct yaml ([#15535](https://github.com/netdata/netdata/issues/15535))
1931 +- Update yaml description (diskspace) ([#15527](https://github.com/netdata/netdata/issues/15527))
1932 +- Freeimpi yaml ([#15533](https://github.com/netdata/netdata/issues/15533))
1933 +- Update metadata.yaml for some python collectors ([#15513](https://github.com/netdata/netdata/issues/15513))
1934 +- Add `diskquota` collector to third party collectors list ([#15524](https://github.com/netdata/netdata/issues/15524))
1935 +- Change api.netdata.cloud to app.netdata.cloud ([#15538](https://github.com/netdata/netdata/issues/15538))
1936 +- Docs: fix apps fd badges and typos ([#15539](https://github.com/netdata/netdata/issues/15539))
1937 +- Bump ui to v6.22.0 ([#15542](https://github.com/netdata/netdata/issues/15542))
1938 +- Update metadata.yaml for some python collectors ([#15510](https://github.com/netdata/netdata/issues/15510))
1939 +- Update python d varnish metadata ([#15528](https://github.com/netdata/netdata/issues/15528))
1940 +- Fill in yaml files for some python collectors ([#15541](https://github.com/netdata/netdata/issues/15541))
1941 +- Fix deployment and categories ([#15540](https://github.com/netdata/netdata/issues/15540))
1942 +- Add Samba collector yaml ([#15507](https://github.com/netdata/netdata/issues/15507))
1943 +- Add exporter integration schema. ([#15545](https://github.com/netdata/netdata/issues/15545))
1944 +- Refactor RRD code. ([#15423](https://github.com/netdata/netdata/issues/15423))
1945 +- Avoid an extra uuid_copy when creating new MRG entries ([#15502](https://github.com/netdata/netdata/issues/15502))
1946 +- Postfix metadata.yaml - add links and some descriptions ([#15544](https://github.com/netdata/netdata/issues/15544))
1947 +- Update memcached metadata.yaml ([#15529](https://github.com/netdata/netdata/issues/15529))
1948 +- Fix expiration dates for API responses ([#15546](https://github.com/netdata/netdata/issues/15546))
1949 +- Bump ui to v6.22.1 ([#15550](https://github.com/netdata/netdata/issues/15550))
1950 +- Fixes for `deploy.yaml`. ([#15551](https://github.com/netdata/netdata/issues/15551))
1951 +- Fixed typos in code blocks and added missing icons ([#15555](https://github.com/netdata/netdata/issues/15555))
1952 +- Add schema and examples for notification method metadata. ([#15549](https://github.com/netdata/netdata/issues/15549))
1953 +- Detect the path the netdata-claim.sh script is in ([#15556](https://github.com/netdata/netdata/issues/15556))
1954 +- Added Exporter and Notifications categories and removed them from Data Collection ([#15561](https://github.com/netdata/netdata/issues/15561))
1955 +- Fix ebpf.plugin system swapcalls ([#15553](https://github.com/netdata/netdata/issues/15553))
1956 +- Fix yamls ([#15547](https://github.com/netdata/netdata/issues/15547))
1957 +- Update metadata.yaml for some python collectors - 2 ([#15537](https://github.com/netdata/netdata/issues/15537))
1958 +- Fix schema validation for some meta files ([#15569](https://github.com/netdata/netdata/issues/15569))
1959 +- Added FreeBSD integration and fixed Windows installation Steps ([#15570](https://github.com/netdata/netdata/issues/15570))
1960 +- Fixed deployment commands for Docker, Kubernetes and Linux ([#15572](https://github.com/netdata/netdata/issues/15572))
1961 +- Timex yaml update ([#15565](https://github.com/netdata/netdata/issues/15565))
1962 +- Update ioping yaml ([#15534](https://github.com/netdata/netdata/issues/15534))
1963 +- Add missing file in CMakeLists.txt ([#15574](https://github.com/netdata/netdata/issues/15574))
1964 +- Drop duplicate / unused index ([#15568](https://github.com/netdata/netdata/issues/15568))
1965 +- Xen yaml update ([#15567](https://github.com/netdata/netdata/issues/15567))
1966 +- Create metadata.yaml for OpenTSDB Exporter ([#15563](https://github.com/netdata/netdata/issues/15563))
1967 +- Small readme icon fix ([#15583](https://github.com/netdata/netdata/issues/15583))
1968 +- Filter out systemd-udevd.service/udevd ([#15571](https://github.com/netdata/netdata/issues/15571))
1969 +- Remove temporarily the CI Tumbleweed support ([#15554](https://github.com/netdata/netdata/issues/15554))
1970 +- Update icon for power supply ([#15586](https://github.com/netdata/netdata/issues/15586))
1971 +- Fix cpu MHz from /proc/cpuinfo ([#15584](https://github.com/netdata/netdata/issues/15584))
1972 +- Fix typo in notification schema. ([#15588](https://github.com/netdata/netdata/issues/15588))
1973 +- Update metadata for multiple python collectors. ([#15543](https://github.com/netdata/netdata/issues/15543))
1974 +- Update Slabinfo Logo ([#15585](https://github.com/netdata/netdata/issues/15585))
1975 +- Update icons for relevant integrations in proc.plugin ([#15587](https://github.com/netdata/netdata/issues/15587))
1976 +- Create metadata.yaml for JSON exporter ([#15579](https://github.com/netdata/netdata/issues/15579))
1977 +- Create metadata.yaml for MongoDB exporter ([#15580](https://github.com/netdata/netdata/issues/15580))
1978 +- Create metadata.yaml for AWS kinesis exporter ([#15577](https://github.com/netdata/netdata/issues/15577))
1979 +- Create metadata.yaml for Google PubSub exporter ([#15578](https://github.com/netdata/netdata/issues/15578))
1980 +- Create multi_metadata.yaml for graphite exporters ([#15576](https://github.com/netdata/netdata/issues/15576))
1981 +- Create multi_metadata.yaml ([#15575](https://github.com/netdata/netdata/issues/15575))
1982 +- Remove the noise by silencing alerts that dont need to wake up people ([#15590](https://github.com/netdata/netdata/issues/15590))
1983 +- Change nvidia_smi link to go version in COLLECTORS.md ([#15536](https://github.com/netdata/netdata/issues/15536))
1984 +- Perf yaml ([#15558](https://github.com/netdata/netdata/issues/15558))
1985 +- Update slabinfo yaml ([#15560](https://github.com/netdata/netdata/issues/15560))
1986 +- TC yaml update ([#15562](https://github.com/netdata/netdata/issues/15562))
1987 +- EBPF Yaml complement ([#15516](https://github.com/netdata/netdata/issues/15516))
1988 +- Added a sample metadata.yaml for Alerta ([#15591](https://github.com/netdata/netdata/issues/15591))
1989 +- Fix health query ([#15589](https://github.com/netdata/netdata/issues/15589))
1990 +- CUPS yaml update ([#15594](https://github.com/netdata/netdata/issues/15594))
1991 +- Updated icons in deploy section ([#15596](https://github.com/netdata/netdata/issues/15596))
1992 +- Fix tomcat meta ([#15592](https://github.com/netdata/netdata/issues/15592))
1993 +- 10 points per query min ([#15595](https://github.com/netdata/netdata/issues/15595))
1994 +- Update pandas collector metadata ([#15582](https://github.com/netdata/netdata/issues/15582))
1995 +- Update zscores metadata yaml ([#15581](https://github.com/netdata/netdata/issues/15581))
1996 +- Update python sensors metadata yaml ([#15548](https://github.com/netdata/netdata/issues/15548))
1997 +- Update icon ([#15608](https://github.com/netdata/netdata/issues/15608))
1998 +- Update icon ([#15607](https://github.com/netdata/netdata/issues/15607))
1999 +- Update icons ([#15609](https://github.com/netdata/netdata/issues/15609))
2000 +- Sample Cloud Notifications metadata for Discord ([#15597](https://github.com/netdata/netdata/issues/15597))
2001 +- Fix descriptions in config objects, make them single line ([#15610](https://github.com/netdata/netdata/issues/15610))
2002 +- Remove metrics.csv files ([#15593](https://github.com/netdata/netdata/issues/15593))
2003 +- Reviewed icos for a bunch of integrations ([#15599](https://github.com/netdata/netdata/issues/15599))
2004 +- Update documentation ([#15606](https://github.com/netdata/netdata/issues/15606))
2005 +- Ci disable yamllint line-length check ([#15612](https://github.com/netdata/netdata/issues/15612))
2006 +- Comment out anomalies metadata and add note ([#15573](https://github.com/netdata/netdata/issues/15573))
2007 +- Update metadata.yaml for charts.d collectors ([#15559](https://github.com/netdata/netdata/issues/15559))
2008 +- Fix up notification schema to better support cloud notifications. ([#15616](https://github.com/netdata/netdata/issues/15616))
2009 +- Fix icons for db integrations ([#15621](https://github.com/netdata/netdata/issues/15621))
2010 +- Fix icons for webservers integrations ([#15624](https://github.com/netdata/netdata/issues/15624))
2011 +- Rename multi_metadata.yaml to metadata.yaml ([#15619](https://github.com/netdata/netdata/issues/15619))
2012 +- Fix icons for message brokers and hardware ([#15626](https://github.com/netdata/netdata/issues/15626))
2013 +- Rename multi_metadata.yaml to metadata.yaml ([#15618](https://github.com/netdata/netdata/issues/15618))
2014 +- Updated all cloud notifications except generic webhook ([#15615](https://github.com/netdata/netdata/issues/15615))
2015 +- Macos yaml update ([#15602](https://github.com/netdata/netdata/issues/15602))
2016 +- Updated Cloud Notification Integrations with the new schema ([#15628](https://github.com/netdata/netdata/issues/15628))
2017 +- FreeBSD yaml update ([#15603](https://github.com/netdata/netdata/issues/15603))
2018 +- Add notification metadata for agent notifications ([#15622](https://github.com/netdata/netdata/issues/15622))
2019 +- Add additional variable section to instance data in schema. ([#15627](https://github.com/netdata/netdata/issues/15627))
2020 +- Add key for notifications to control what global config options get displayed ([#15625](https://github.com/netdata/netdata/issues/15625))
2021 +- Review images for integrations from security to windows systems ([#15630](https://github.com/netdata/netdata/issues/15630))
2022 +- Update metadata.yaml ([#15632](https://github.com/netdata/netdata/issues/15632))
2023 +- Debugfs yaml update ([#15633](https://github.com/netdata/netdata/issues/15633))
2024 +- Bump ui to v6.23.0 ([#15629](https://github.com/netdata/netdata/issues/15629))
2025 +- Fix potential crash bug. ([#15605](https://github.com/netdata/netdata/issues/15605))
2026 +- Minor changes in README.md ([#15601](https://github.com/netdata/netdata/issues/15601))
2027 +- The icon_filename value was not in quotes - Fixed ([#15635](https://github.com/netdata/netdata/issues/15635))
2028 +- Update graphite metadata.yaml ([#15634](https://github.com/netdata/netdata/issues/15634))
2029 +- Update netdata-functions.md ([#14441](https://github.com/netdata/netdata/issues/14441))
2030 +- Convert collectors meta files from single to multi ([#15642](https://github.com/netdata/netdata/issues/15642))
2031 +- Fix icons for notifications ([#15644](https://github.com/netdata/netdata/issues/15644))
2032 +- Fix name in the yaml of example python collector ([#15646](https://github.com/netdata/netdata/issues/15646))
2033 +- Fix icons ([#15645](https://github.com/netdata/netdata/issues/15645))
2034 +- Fixing icons in netdata/netdata repo ([#15647](https://github.com/netdata/netdata/issues/15647))
2035 +- Fix exporter schema to support multiple entries per file. ([#15649](https://github.com/netdata/netdata/issues/15649))
2036 +- Fixing FreeBSD icons ([#15650](https://github.com/netdata/netdata/issues/15650))
2037 +- Fix exporter icons ([#15652](https://github.com/netdata/netdata/issues/15652))
2038 +- Disable freeipmi in docker by default ([#15651](https://github.com/netdata/netdata/issues/15651))
2039 +- Fix Apps plugin icons ([#15655](https://github.com/netdata/netdata/issues/15655))
2040 +- Fix pandas category ([#15654](https://github.com/netdata/netdata/issues/15654))
2041 +- Fix icon for solarwinds ([#15657](https://github.com/netdata/netdata/issues/15657))
2042 +- Fix proc.plugin meta filename ([#15659](https://github.com/netdata/netdata/issues/15659))
2043 +- Update categories.yaml to add notifications ([#15613](https://github.com/netdata/netdata/issues/15613))
2044 +- Small improvements to README.md ([#15658](https://github.com/netdata/netdata/issues/15658))
2045 +- Freeipmi change restart message to info ([#15664](https://github.com/netdata/netdata/issues/15664))
2046 +- Fix icon prometheus exporter icon ([#15666](https://github.com/netdata/netdata/issues/15666))
2047 +- Remove " Metrics" from linux categories ([#15669](https://github.com/netdata/netdata/issues/15669))
2048 +- Fixing tables (aws sns) ([#15671](https://github.com/netdata/netdata/issues/15671))
2049 +- Fix table formatting (custom exporter) ([#15668](https://github.com/netdata/netdata/issues/15668))
2050 +- Update metadata.yaml for Cloud Notifications ([#15670](https://github.com/netdata/netdata/issues/15670))
2051 +- Fix formatting ([#15673](https://github.com/netdata/netdata/issues/15673))
2052 +- Adapt Cloud notifications to the new schema ([#15674](https://github.com/netdata/netdata/issues/15674))
2053 +- Update deploy.yaml to fix Docker and Kubernetes commands ([#15676](https://github.com/netdata/netdata/issues/15676))
2054 +- Meta MacOS => macOS ([#15675](https://github.com/netdata/netdata/issues/15675))
2055 +- Update Webhook icon ([#15677](https://github.com/netdata/netdata/issues/15677))
2056 +- Update metadata.yaml ([#15678](https://github.com/netdata/netdata/issues/15678))
2057 +- Update metadata.yaml ([#15679](https://github.com/netdata/netdata/issues/15679))
2058 +- Update metadata.yaml ([#15680](https://github.com/netdata/netdata/issues/15680))
2059 +- Update categories.yaml ([#15681](https://github.com/netdata/netdata/issues/15681))
2060 +- Update categories.yaml ([#15682](https://github.com/netdata/netdata/issues/15682))
2061 +- Update categories.yaml ([#15683](https://github.com/netdata/netdata/issues/15683))
2062 +- Update categories.yaml ([#15685](https://github.com/netdata/netdata/issues/15685))
2063 +- Update metadata.yaml ([#15684](https://github.com/netdata/netdata/issues/15684))
2064 +- Update deploy.yaml ([#15687](https://github.com/netdata/netdata/issues/15687))
2065 +- Update categories.yaml ([#15686](https://github.com/netdata/netdata/issues/15686))
2066 +- Update metadata.yaml ([#15688](https://github.com/netdata/netdata/issues/15688))
2067 +- Update categories.yaml ([#15689](https://github.com/netdata/netdata/issues/15689))
2068 +- Update metadata.yaml ([#15690](https://github.com/netdata/netdata/issues/15690))
2069 +- Update names ([#15691](https://github.com/netdata/netdata/issues/15691))
2070 +- Bump go.d.plugin v0.54.1 ([#15692](https://github.com/netdata/netdata/issues/15692))
2071 +- Fix: 🐛 docker bind-mount stock files creation ([#15639](https://github.com/netdata/netdata/issues/15639))
2072 +- Add initial tooling for generating integrations.js file. ([#15406](https://github.com/netdata/netdata/issues/15406))
2073 +- Fix integrations regen workflow ([#15693](https://github.com/netdata/netdata/issues/15693))
2074 +- Use PyPI packages for integrations generation dependencies.
2075 +- Correctly fix dependencies for generating integrations.
2076 +- Fix edit-config for containerized Netdata when running from host ([#15641](https://github.com/netdata/netdata/issues/15641))
2077 +- Regenerate integrations.js ([#15695](https://github.com/netdata/netdata/issues/15695))
2078 +- Extend eBPF default shutdown ([#15694](https://github.com/netdata/netdata/issues/15694))
2079 +- Update categories.yaml ([#15696](https://github.com/netdata/netdata/issues/15696))
2080 +- Update vscode yaml schemas association ([#15697](https://github.com/netdata/netdata/issues/15697))
2081 +- Dynamic Config MVP0 ([#15486](https://github.com/netdata/netdata/issues/15486))
2082 +- Fix handling of troubleshooting section in integrations. ([#15700](https://github.com/netdata/netdata/issues/15700))
2083 +- Integrations: fix metrics availability ([#15701](https://github.com/netdata/netdata/issues/15701))
2084 +- Fix typo in categories for beanstalk collector metadata. ([#15703](https://github.com/netdata/netdata/issues/15703))
2085 +- Assorted fixes for integrations templates. ([#15702](https://github.com/netdata/netdata/issues/15702))
2086 +- Regenerate integrations.js ([#15705](https://github.com/netdata/netdata/issues/15705))
2087 +- Better cleanup of aclk alert table entries ([#15706](https://github.com/netdata/netdata/issues/15706))
2088 +- Integrations: fix docker compose indent ([#15708](https://github.com/netdata/netdata/issues/15708))
2089 +- Regenerate integrations.js ([#15709](https://github.com/netdata/netdata/issues/15709))
2090 +- Update metadata.yaml ([#15710](https://github.com/netdata/netdata/issues/15710))
2091 +- Regenerate integrations.js ([#15713](https://github.com/netdata/netdata/issues/15713))
2092 +- Fix meta deploy docker swarm NC env var ([#15716](https://github.com/netdata/netdata/issues/15716))
2093 +- Regenerate integrations.js ([#15717](https://github.com/netdata/netdata/issues/15717))
2094 +- Update the bundled v2 dashboard to the latest release. ([#15718](https://github.com/netdata/netdata/issues/15718))
2095 +- Fix the freez pointer of dyncfg ([#15719](https://github.com/netdata/netdata/issues/15719))
2096 +- Prefer titles, families, units and priorities from collected charts ([#15614](https://github.com/netdata/netdata/issues/15614))
2097 +- Revert "Refactor RRD code. ([#15423](https://github.com/netdata/netdata/issues/15423))" ([#15723](https://github.com/netdata/netdata/issues/15723))
2098 +- Disable systemdunits alarms ([#15726](https://github.com/netdata/netdata/issues/15726))
2099 +- Fix memory corruption ([#15724](https://github.com/netdata/netdata/issues/15724))
2100 +- Systemd-journal plugin ([#15363](https://github.com/netdata/netdata/issues/15363))
2101 +- Fix systemd-journal makefile ([#15727](https://github.com/netdata/netdata/issues/15727))
2102 +- Changes to the templates for integrations ([#15721](https://github.com/netdata/netdata/issues/15721))
2103 +- Regenerate integrations.js ([#15728](https://github.com/netdata/netdata/issues/15728))
2104 +- Update to latest copy of v2 dashboard. ([#15735](https://github.com/netdata/netdata/issues/15735))
2105 +- Proc.plugin: dont log if pressure/irq does not exist ([#15732](https://github.com/netdata/netdata/issues/15732))
2106 +- Adjust namespace used for sd_journal_open ([#15736](https://github.com/netdata/netdata/issues/15736))
2107 +- Faster facets and journal fixes ([#15737](https://github.com/netdata/netdata/issues/15737))
2108 +- Don't overwrite my vscode settings! ([#15738](https://github.com/netdata/netdata/issues/15738))
2109 +- Ci: run "Generate Integrations" only in netdata/netdata ([#15731](https://github.com/netdata/netdata/issues/15731))
2110 +- Add systemd-journal.plugin to gitignore ([#15743](https://github.com/netdata/netdata/issues/15743))
2111 +- Ci: add systemd-journal and metdata to labeler ([#15746](https://github.com/netdata/netdata/issues/15746))
2112 +- Prefer cap over setuid for sysetmd-journal in installer ([#15741](https://github.com/netdata/netdata/issues/15741))
2113 +- Add dependencies for systemd journal plugin. ([#15747](https://github.com/netdata/netdata/issues/15747))
2114 +- Add netdata-plugin-systemd-journal package. ([#15733](https://github.com/netdata/netdata/issues/15733))
2115 +- Meta: align left metrics, alerts, and config options ([#15749](https://github.com/netdata/netdata/issues/15749))
2116 +- Regenerate integrations.js ([#15751](https://github.com/netdata/netdata/issues/15751))
2117 +- Ci labeler: remove integrations from area/docs ([#15750](https://github.com/netdata/netdata/issues/15750))
2118 +- Update bundled UI to v2.26.2 ([#15758](https://github.com/netdata/netdata/issues/15758))
2119 +- Fix nvidia_smi power_readings for new drivers ([#15759](https://github.com/netdata/netdata/issues/15759))
2120 +- [cloud-blocker] https_client add TLS ext. SNI + support chunked transfer encoding ([#15739](https://github.com/netdata/netdata/issues/15739))
2121 +- Add AMD GPU collector ([#15515](https://github.com/netdata/netdata/issues/15515))
2122 +- Update metadata.yaml ([#15762](https://github.com/netdata/netdata/issues/15762))
2123 +- Update metadata.yaml ([#15761](https://github.com/netdata/netdata/issues/15761))
2124 +- Update metadata.yaml
2125 +- Regenerate integrations.js ([#15760](https://github.com/netdata/netdata/issues/15760))
2126 +- Meta update proc drm icon ([#15763](https://github.com/netdata/netdata/issues/15763))
2127 +- Regenerate integrations.js ([#15764](https://github.com/netdata/netdata/issues/15764))
2128 +- Update ui to v6.26.3 ([#15767](https://github.com/netdata/netdata/issues/15767))
2129 +- Fix CID 398318 ([#15766](https://github.com/netdata/netdata/issues/15766))
2130 +- Change FreeBSD / macOS system.swap(io) to mem.swap(io) ([#15769](https://github.com/netdata/netdata/issues/15769))
2131 +- Fix coverity issues introduced via drm proc module ([#15765](https://github.com/netdata/netdata/issues/15765))
2132 +- Extend the trimming window to avoid empty points at the end of queries ([#15773](https://github.com/netdata/netdata/issues/15773))
2133 +- Regenerate integrations.js ([#15772](https://github.com/netdata/netdata/issues/15772))
2134 +- Fix claiming via UI for static build ([#15774](https://github.com/netdata/netdata/issues/15774))
2135 +- Ci: codacy exclude web/gui/v2/ ([#15780](https://github.com/netdata/netdata/issues/15780))
2136 +- Ci: fix labeler area/docs ([#15776](https://github.com/netdata/netdata/issues/15776))
2137 +- Update UI to v6.27.0 ([#15778](https://github.com/netdata/netdata/issues/15778))
2138 +
2139 +## [1.41.0] - 2023-07-19
2140 +
2141 +### Merged Pull Requests:
2142 +
2143 +- Redirect to index.html when a file is not found by web server ([#15143](https://github.com/netdata/netdata/issues/15143))
2144 +- Sqlite_health.c: remove `uuid.h` include ([#15195](https://github.com/netdata/netdata/issues/15195))
2145 +- RPM: Added elfutils-libelf-devel for build with eBPF (again) ([#15192](https://github.com/netdata/netdata/issues/15192))
2146 +- Consistently start the agent as root and rely on it to drop privileges properly. ([#14890](https://github.com/netdata/netdata/issues/14890))
2147 +- RocketChat cloud integration docs ([#15205](https://github.com/netdata/netdata/issues/15205))
2148 +- Fix file permissions under directory ([#15208](https://github.com/netdata/netdata/issues/15208))
2149 +- Fix health crash ([#15209](https://github.com/netdata/netdata/issues/15209))
2150 +- Add two functions that allow someone to start/stop ML. ([#15185](https://github.com/netdata/netdata/issues/15185))
2151 +- Speed up eBPF exit before to bring functions ([#15187](https://github.com/netdata/netdata/issues/15187))
2152 +- Fix issues in sync thread (eBPF plugin) ([#15174](https://github.com/netdata/netdata/issues/15174))
2153 +- /api/v2/nodes and streaming function ([#15168](https://github.com/netdata/netdata/issues/15168))
2154 +- Obvious memory reductions ([#15204](https://github.com/netdata/netdata/issues/15204))
2155 +- RW_SPINLOCK: recursive readers support ([#15217](https://github.com/netdata/netdata/issues/15217))
2156 +- Update dashboard to version v3.0.0. ([#15219](https://github.com/netdata/netdata/issues/15219))
2157 +- Cgroups: remove pod_uid and container_id labels in k8s ([#15216](https://github.com/netdata/netdata/issues/15216))
2158 +- Fix arch detection on i386 (native packages) ([#15218](https://github.com/netdata/netdata/issues/15218))
2159 +- Fix /api/v2/contexts,nodes,nodes_instances,q before match ([#15223](https://github.com/netdata/netdata/issues/15223))
2160 +- Fix SSL non-blocking retry handling in the web server ([#15222](https://github.com/netdata/netdata/issues/15222))
2161 +- Use a single health log table ([#15157](https://github.com/netdata/netdata/issues/15157))
2162 +- Remove erroneous space for unit ([#15226](https://github.com/netdata/netdata/issues/15226))
2163 +- Allow overriding pipename from env ([#15215](https://github.com/netdata/netdata/issues/15215))
2164 +- Fix not handling N/A value in python.d/nvidia_smi ([#15231](https://github.com/netdata/netdata/issues/15231))
2165 +- /api/v2 improvements ([#15227](https://github.com/netdata/netdata/issues/15227))
2166 +- Create index for health log migration ([#15233](https://github.com/netdata/netdata/issues/15233))
2167 +- New alerts endpoint ([#15232](https://github.com/netdata/netdata/issues/15232))
2168 +- Add module column to apps.plugin csv ([#15235](https://github.com/netdata/netdata/issues/15235))
2169 +- Fix handling of plugin ownership in static builds. ([#15230](https://github.com/netdata/netdata/issues/15230))
2170 +- Install the correct systemd unit file on older RPM systems. ([#15240](https://github.com/netdata/netdata/issues/15240))
2171 +- Fix coverity 393183 & 393182 ([#15234](https://github.com/netdata/netdata/issues/15234))
2172 +- URL rewrite at the agent web server to support multiple dashboard versions ([#15247](https://github.com/netdata/netdata/issues/15247))
2173 +- Relax jnfv2 caching ([#15224](https://github.com/netdata/netdata/issues/15224))
2174 +- Use gperf for the pluginsd/streaming parser hashtable ([#15251](https://github.com/netdata/netdata/issues/15251))
2175 +- Delay collecting virtual network interfaces ([#15244](https://github.com/netdata/netdata/issues/15244))
2176 +- Update pfsense.md package install instructions ([#15250](https://github.com/netdata/netdata/issues/15250))
2177 +- Fix $(libh2o_dir) not expanded properly sometimes. ([#15253](https://github.com/netdata/netdata/issues/15253))
2178 +- Update libbpf version ([#15258](https://github.com/netdata/netdata/issues/15258))
2179 +- Fix tc.plugin charts labels ([#15262](https://github.com/netdata/netdata/issues/15262))
2180 +- Assorted kickstart script improvements. ([#15243](https://github.com/netdata/netdata/issues/15243))
2181 +- Add hardening options to CFLAGS by default if they are available. ([#15087](https://github.com/netdata/netdata/issues/15087))
2182 +- Small readme improvements ([#15270](https://github.com/netdata/netdata/issues/15270))
2183 +- Exporting: change priority to synchronous when calculating value ([#15276](https://github.com/netdata/netdata/issues/15276))
2184 +- Rewrite /api/v2/alerts ([#15257](https://github.com/netdata/netdata/issues/15257))
2185 +- Optimizations Part 2 ([#15267](https://github.com/netdata/netdata/issues/15267))
2186 +- Agent dashboard reorganization. ([#15200](https://github.com/netdata/netdata/issues/15200))
2187 +- Revert "Optimizations Part 2" ([#15279](https://github.com/netdata/netdata/issues/15279))
2188 +- Fixed mistype for 'send automatic labels' Prometheus option ([#15282](https://github.com/netdata/netdata/issues/15282))
2189 +- Optimizations part 2 ([#15280](https://github.com/netdata/netdata/issues/15280))
2190 +- Add configuration file for netdata-updater.sh. ([#15149](https://github.com/netdata/netdata/issues/15149))
2191 +- Misc alert fixes ([#15274](https://github.com/netdata/netdata/issues/15274))
2192 +- Use stat() instead of lstat() ([#15287](https://github.com/netdata/netdata/issues/15287))
2193 +- Only try to enable _FORTIFY_SOURCE if the user has not disabled optimizations ([#15284](https://github.com/netdata/netdata/issues/15284))
2194 +- Expose CmdLine in apps function ([#15275](https://github.com/netdata/netdata/issues/15275))
2195 +- Merged spaces, war rooms and invite your team to one place ([#15289](https://github.com/netdata/netdata/issues/15289))
2196 +- Docs: update stream.conf "health enabled by default" description ([#15291](https://github.com/netdata/netdata/issues/15291))
2197 +- Replace `info` macro with a less generic name ([#15266](https://github.com/netdata/netdata/issues/15266))
2198 +- Optimizations part 3 ([#15293](https://github.com/netdata/netdata/issues/15293))
2199 +- Remove extra parenthesis from doc ([#15290](https://github.com/netdata/netdata/issues/15290))
2200 +- Add profile.plugin ([#13962](https://github.com/netdata/netdata/issues/13962))
2201 +- S/info/netdata_log_info/ ([#15299](https://github.com/netdata/netdata/issues/15299))
2202 +- Yaml template finalization ([#15265](https://github.com/netdata/netdata/issues/15265))
2203 +- Send alert chart labels config key to cloud ([#15283](https://github.com/netdata/netdata/issues/15283))
2204 +- Change info to netdata_log_info in sqlite_db_migration.c ([#15303](https://github.com/netdata/netdata/issues/15303))
2205 +- Ci: disable clang format ([#15305](https://github.com/netdata/netdata/issues/15305))
2206 +- Check for source field when requesting /api/v1/alarm_log ([#15306](https://github.com/netdata/netdata/issues/15306))
2207 +- Release acquired dimensions ([#15307](https://github.com/netdata/netdata/issues/15307))
2208 +- Change query to store host system info values ([#15300](https://github.com/netdata/netdata/issues/15300))
2209 +- Move collectors meta to metadata/ ([#15308](https://github.com/netdata/netdata/issues/15308))
2210 +- Update metrics-streaming-and-replication.md ([#15297](https://github.com/netdata/netdata/issues/15297))
2211 +- Fix wording issue in Docker README ([#15298](https://github.com/netdata/netdata/issues/15298))
2212 +- Health: respect overriding nc binary for IRC notifications ([#15310](https://github.com/netdata/netdata/issues/15310))
2213 +- Hide not available for viewers charts when exporting in shell format ([#15309](https://github.com/netdata/netdata/issues/15309))
2214 +- Code reorg and cleanup - enrichment of /api/v2 ([#15294](https://github.com/netdata/netdata/issues/15294))
2215 +- Fix(alerting): removing some of criticals ([#15124](https://github.com/netdata/netdata/issues/15124))
2216 +- Stale vitual hosts ([#15313](https://github.com/netdata/netdata/issues/15313))
2217 +- Fix alerts transitions sorting ([#15315](https://github.com/netdata/netdata/issues/15315))
2218 +- Additional CO-RE code (eBPF.plugin) ([#15078](https://github.com/netdata/netdata/issues/15078))
2219 +- Bump go.d.plugin to v0.54.0 ([#15312](https://github.com/netdata/netdata/issues/15312))
2220 +- Add add summary linking to alert instances (ati) when options=summary,values is requested ([#15317](https://github.com/netdata/netdata/issues/15317))
2221 +- Local-listener using libnetdata ([#15319](https://github.com/netdata/netdata/issues/15319))
2222 +- Avoid memory allocations for alert transitions facets processing ([#15318](https://github.com/netdata/netdata/issues/15318))
2223 +- Local-listeners: use host prefix in read_cmdline ([#15320](https://github.com/netdata/netdata/issues/15320))
2224 +- Rename generic `error` function ([#15296](https://github.com/netdata/netdata/issues/15296))
2225 +- Create integrations JSON schema ([#15302](https://github.com/netdata/netdata/issues/15302))
2226 +- Fix coverity issue 394862 - Argument cannot be negative ([#15324](https://github.com/netdata/netdata/issues/15324))
2227 +- Single module schema, add required properties ([#15326](https://github.com/netdata/netdata/issues/15326))
2228 +- Fix compilation on BSD ([#15331](https://github.com/netdata/netdata/issues/15331))
2229 +- Alerts_transitions outputs hostnames and items statistics ([#15329](https://github.com/netdata/netdata/issues/15329))
2230 +- Add missing required field in schema ([#15335](https://github.com/netdata/netdata/issues/15335))
2231 +- Multi-threaded version of freeipmi.plugin ([#15327](https://github.com/netdata/netdata/issues/15327))
2232 +- Use spinlock in host and chart ([#15328](https://github.com/netdata/netdata/issues/15328))
2233 +- Add internal stats metrics csv ([#15337](https://github.com/netdata/netdata/issues/15337))
2234 +- Bearer authorization API ([#15321](https://github.com/netdata/netdata/issues/15321))
2235 +- Bearer improvements ([#15342](https://github.com/netdata/netdata/issues/15342))
2236 +- Fix workflow references in release workflow.
2237 +- Remove availability from required fields on metric level ([#15340](https://github.com/netdata/netdata/issues/15340))
2238 +- Fix coverity issues ([#15345](https://github.com/netdata/netdata/issues/15345))
2239 +- Bearer protection - additions ([#15349](https://github.com/netdata/netdata/issues/15349))
2240 +- Add missing labels to freeipmi metrics csv ([#15347](https://github.com/netdata/netdata/issues/15347))
2241 +- Health: fix evaluating expression with `nan` ([#15348](https://github.com/netdata/netdata/issues/15348))
2242 +- Add yaml metadata for metrics.csv files ([#15238](https://github.com/netdata/netdata/issues/15238))
2243 +- Fix installation type command ([#15351](https://github.com/netdata/netdata/issues/15351))
2244 +- Docs: make the default Docker installation provide the full feature set ([#15339](https://github.com/netdata/netdata/issues/15339))
2245 +- Attempt to more aggressively skip CI jobs on PRs if those jobs are irrelevant to the PR. ([#15341](https://github.com/netdata/netdata/issues/15341))
2246 +- Update dashboard to version v3.0.1. ([#15352](https://github.com/netdata/netdata/issues/15352))
2247 +- Rename log Macros (debug) ([#15322](https://github.com/netdata/netdata/issues/15322))
2248 +- Rename multi module yamls to same name but wuth prefix ([#15356](https://github.com/netdata/netdata/issues/15356))
2249 +- Fix(freeipmi): set sensor state on every reading ([#15360](https://github.com/netdata/netdata/issues/15360))
2250 +- Format the sdr cache filenames ([#15361](https://github.com/netdata/netdata/issues/15361))
2251 +- Keep health log history in seconds ([#15314](https://github.com/netdata/netdata/issues/15314))
2252 +- Move not really related props single-module.json -> definitions.json ([#15366](https://github.com/netdata/netdata/issues/15366))
2253 +- Update libbpf on netdata repo ([#15343](https://github.com/netdata/netdata/issues/15343))
2254 +- Add keys to integrations schema, categories, icon path, plus some fixes ([#15365](https://github.com/netdata/netdata/issues/15365))
2255 +- Dont log error on opening .environment ([#15371](https://github.com/netdata/netdata/issues/15371))
2256 +- Simplify collector schema by moving some props under meta ([#15372](https://github.com/netdata/netdata/issues/15372))
2257 +- Add most-popular entry in oneOf of categories in definitions.json ([#15370](https://github.com/netdata/netdata/issues/15370))
2258 +- EBPF Functions (enable/disable threads) ([#15214](https://github.com/netdata/netdata/issues/15214))
2259 +- Health: fix windows alarms for vnodes ([#15376](https://github.com/netdata/netdata/issues/15376))
2260 +- Update bundled v2 dashboard. ([#15374](https://github.com/netdata/netdata/issues/15374))
2261 +- Agent alert notifications redirect ([#15350](https://github.com/netdata/netdata/issues/15350))
2262 +- Update bundled v2 dashboard ([#15377](https://github.com/netdata/netdata/issues/15377))
2263 +- Fix coverity issues ([#15375](https://github.com/netdata/netdata/issues/15375))
2264 +- Rename log_access and log_health ([#15368](https://github.com/netdata/netdata/issues/15368))
2265 +- Update http response code descriptions ([#15379](https://github.com/netdata/netdata/issues/15379))
2266 +- Fix CodeQL alert ([#15384](https://github.com/netdata/netdata/issues/15384))
2267 +- Update libbpf version (1.2.2) ([#15373](https://github.com/netdata/netdata/issues/15373))
2268 +- Add missing files to web/gui/Makefile.am. ([#15383](https://github.com/netdata/netdata/issues/15383))
2269 +- Updates on JSON schemas ([#15382](https://github.com/netdata/netdata/issues/15382))
2270 +- Update bundled v2 dashboard; make v2 the default dashboard ([#15386](https://github.com/netdata/netdata/issues/15386))
2271 +- Dont add all nodes to registry action hello ([#15388](https://github.com/netdata/netdata/issues/15388))
2272 +- Revert "dont add all nodes to registry action hello" ([#15389](https://github.com/netdata/netdata/issues/15389))
2273 +- Dont add all nodes to registry action hello ([#15390](https://github.com/netdata/netdata/issues/15390))
2274 +- Add expiration to bearer token response ([#15392](https://github.com/netdata/netdata/issues/15392))
2275 +- Packaging: fix arch detection in update_static ([#15396](https://github.com/netdata/netdata/issues/15396))
2276 +- Collector meta schema: global config examples folding + per example ([#15398](https://github.com/netdata/netdata/issues/15398))
2277 +- Make yamls pass the schema, and use decided temporary naming scheme ([#15401](https://github.com/netdata/netdata/issues/15401))
2278 +- Create categories.yaml ([#15385](https://github.com/netdata/netdata/issues/15385))
2279 +- Bump v2 dashboard to latest prod ([#15402](https://github.com/netdata/netdata/issues/15402))
2280 +- Remove collector meta definitions ([#15403](https://github.com/netdata/netdata/issues/15403))
2281 +- Pre release fixes ([#15405](https://github.com/netdata/netdata/issues/15405))
2282 +- Hide eBPF functions ([#15404](https://github.com/netdata/netdata/issues/15404))
2283 +- Add reference to cncf ([#15408](https://github.com/netdata/netdata/issues/15408))
2284 +- Update README.md ([#15044](https://github.com/netdata/netdata/issues/15044))
2285 +- Update README.md ([#15412](https://github.com/netdata/netdata/issues/15412))
2286 +- Update README.md ([#15414](https://github.com/netdata/netdata/issues/15414))
2287 +- Update README.md ([#15416](https://github.com/netdata/netdata/issues/15416))
2288 +- Update README.md
2289 +- Update REDISTRIBUTED.md
2290 +- Collector meta: restrict chart_type to known values ([#15413](https://github.com/netdata/netdata/issues/15413))
2291 +- Make skipped CI run even faster. ([#15407](https://github.com/netdata/netdata/issues/15407))
2292 +- Use real-time clock for http response headers ([#15421](https://github.com/netdata/netdata/issues/15421))
2293 +- Minor typo fix on consul.conf ([#15419](https://github.com/netdata/netdata/issues/15419))
2294 +- Support nativa packages for openSUSE tumbleweed ([#14692](https://github.com/netdata/netdata/issues/14692))
2295 +- Update README.md ([#15424](https://github.com/netdata/netdata/issues/15424))
2296 +- Fix unlocked registry access and add hostname to search response ([#15426](https://github.com/netdata/netdata/issues/15426))
2297 +- Update v2 dashboard ([#15427](https://github.com/netdata/netdata/issues/15427))
2298 +- Monitor applications file descriptor limits ([#15417](https://github.com/netdata/netdata/issues/15417))
2299 +- Bugfix on alerts generation for yamls ([#15420](https://github.com/netdata/netdata/issues/15420))
2300 +- Suppress H2O compilation warnings ([#15378](https://github.com/netdata/netdata/issues/15378))
2301 +- Remove duplicate category from categories.yaml ([#15432](https://github.com/netdata/netdata/issues/15432))
2302 +- Readme: add link for netdata cloud and sign-in cta ([#15431](https://github.com/netdata/netdata/issues/15431))
2303 +- Decode url before checking for question mark ([#15422](https://github.com/netdata/netdata/issues/15422))
2304 +- Add catch-all category entry in categories.yaml ([#15434](https://github.com/netdata/netdata/issues/15434))
2305 +- Build optimizations ([#15381](https://github.com/netdata/netdata/issues/15381))
2306 +- Add chart id and name to alert instances and transitions ([#15430](https://github.com/netdata/netdata/issues/15430))
2307 +- Disable apps_group_file_descriptors_utilization alarm ([#15435](https://github.com/netdata/netdata/issues/15435))
2308 +- Apps.plugin fds limits improvements ([#15437](https://github.com/netdata/netdata/issues/15437))
2309 +- Update CODEOWNERS ([#15433](https://github.com/netdata/netdata/issues/15433))
2310 +- Removed dup categories ([#15440](https://github.com/netdata/netdata/issues/15440))
2311 +- Added missing fields to alerts instances ([#15442](https://github.com/netdata/netdata/issues/15442))
2312 +- Fix alerts transitions search when something specific is asked for ([#15447](https://github.com/netdata/netdata/issues/15447))
2313 +- Collector meta: remove meta.alternative_monitored_instances ([#15445](https://github.com/netdata/netdata/issues/15445))
2314 +- Bump v2 dashboard to v6.21.3 ([#15448](https://github.com/netdata/netdata/issues/15448))
2315 +- Fix multiline ([#15449](https://github.com/netdata/netdata/issues/15449))
2316 +- Create netdata-assistant docs ([#15438](https://github.com/netdata/netdata/issues/15438))
2317 +- Documentation update for the release of the new UI ([#15359](https://github.com/netdata/netdata/issues/15359))
2318 +- Add cgroups yaml ([#15450](https://github.com/netdata/netdata/issues/15450))
2319 +- Add apps yaml ([#15451](https://github.com/netdata/netdata/issues/15451))
2320 +- Updates to metadata.yaml ([#15452](https://github.com/netdata/netdata/issues/15452))
2321 +- Include license for web v2 ([#15453](https://github.com/netdata/netdata/issues/15453))
2322 +
2323 +## [1.40.0] - 2023-06-14
2324 +
2325 +### Merged Pull Requests:
2326 +
2327 +- Update chart documentation ([#15010](https://github.com/netdata/netdata/issues/15010))
2328 +- Review the billing docs for the flow ([#15014](https://github.com/netdata/netdata/issues/15014))
2329 +- Rollback ML transaction on failure. ([#15013](https://github.com/netdata/netdata/issues/15013))
2330 +- Update troubleshooting-agent-with-cloud-connection.md ([#15029](https://github.com/netdata/netdata/issues/15029))
2331 +- Slight wording fix on the database readme ([#15034](https://github.com/netdata/netdata/issues/15034))
2332 +- Silence dimensions with noisy ML models ([#15011](https://github.com/netdata/netdata/issues/15011))
2333 +- Adjust buffers to prevent overflow ([#15025](https://github.com/netdata/netdata/issues/15025))
2334 +- Initial minimal h2o webserver integration ([#14585](https://github.com/netdata/netdata/issues/14585))
2335 +- Make zlib compulsory dep ([#14928](https://github.com/netdata/netdata/issues/14928))
2336 +- Update tor.chart.py ([#15041](https://github.com/netdata/netdata/issues/15041))
2337 +- Remove old logic for handling of legacy stock config files. ([#14829](https://github.com/netdata/netdata/issues/14829))
2338 +- Fatal in claim() only if --claim-only is used ([#15039](https://github.com/netdata/netdata/issues/15039))
2339 +- Libjudy: remove JudyLTablesGen ([#14984](https://github.com/netdata/netdata/issues/14984))
2340 +- Fix handling of permissions in static installs. ([#15042](https://github.com/netdata/netdata/issues/15042))
2341 +- Wording fix in interact with charts doc ([#15040](https://github.com/netdata/netdata/issues/15040))
2342 +- Small update ml defaults ([#15046](https://github.com/netdata/netdata/issues/15046))
2343 +- Update SQLITE to version 3.41.2 ([#15031](https://github.com/netdata/netdata/issues/15031))
2344 +- Reduce netdatacli size ([#15024](https://github.com/netdata/netdata/issues/15024))
2345 +- Bump google-github-actions/setup-gcloud from 1.1.0 to 1.1.1 ([#15053](https://github.com/netdata/netdata/issues/15053))
2346 +- Bump google-github-actions/upload-cloud-storage from 1.0.1 to 1.0.3 ([#15052](https://github.com/netdata/netdata/issues/15052))
2347 +- Comment out default `role_recipients_*` values ([#15047](https://github.com/netdata/netdata/issues/15047))
2348 +- Debugfs collector ([#15017](https://github.com/netdata/netdata/issues/15017))
2349 +- Fix(debugfs/zswap): don't collect metrics if Zswap is disabled ([#15054](https://github.com/netdata/netdata/issues/15054))
2350 +- Fix ACLK memleak ([#15055](https://github.com/netdata/netdata/issues/15055))
2351 +- Bump go.d.plugin to v0.53.0 ([#15059](https://github.com/netdata/netdata/issues/15059))
2352 +- Fix infiniband bytes counters multiplier and divisor ([#14748](https://github.com/netdata/netdata/issues/14748))
2353 +- Remove Fedora 36 from CI and platform support. ([#14938](https://github.com/netdata/netdata/issues/14938))
2354 +- Fix memory leak when sending alerts checkoint ([#15060](https://github.com/netdata/netdata/issues/15060))
2355 +- Update netdata-security.md ([#15063](https://github.com/netdata/netdata/issues/15063))
2356 +- Update CODEOWNERS ([#15064](https://github.com/netdata/netdata/issues/15064))
2357 +- Update netdata-security.md ([#15067](https://github.com/netdata/netdata/issues/15067))
2358 +- Update netdata-security.md ([#15068](https://github.com/netdata/netdata/issues/15068))
2359 +- Honor maximum message size limit of MQTT server ([#15009](https://github.com/netdata/netdata/issues/15009))
2360 +- Fix CodeQL warning ([#15062](https://github.com/netdata/netdata/issues/15062))
2361 +- Update Security doc ([#15072](https://github.com/netdata/netdata/issues/15072))
2362 +- Free context when establishing ACLK connection ([#15073](https://github.com/netdata/netdata/issues/15073))
2363 +- Simplify loop in alert checkpoint ([#15065](https://github.com/netdata/netdata/issues/15065))
2364 +- Use chart labels to filter alerts ([#14982](https://github.com/netdata/netdata/issues/14982))
2365 +- Python Dependency Migration - OracleDB Python Module ([#15074](https://github.com/netdata/netdata/issues/15074))
2366 +- Better cleanup of health log table ([#15045](https://github.com/netdata/netdata/issues/15045))
2367 +- Try to detect bind mounts ([#14831](https://github.com/netdata/netdata/issues/14831))
2368 +- Release buffer in case of error -- CID 385075 ([#15090](https://github.com/netdata/netdata/issues/15090))
2369 +- Mentioned waive off of space subscription price ([#15082](https://github.com/netdata/netdata/issues/15082))
2370 +- Create category overview pages for learn's restructure ([#15091](https://github.com/netdata/netdata/issues/15091))
2371 +- Address issue with Thanos Receiver ([#15094](https://github.com/netdata/netdata/issues/15094))
2372 +- Fix cockroachdb alarms ([#15095](https://github.com/netdata/netdata/issues/15095))
2373 +- New eBPF option ([#14691](https://github.com/netdata/netdata/issues/14691))
2374 +- Invert order in remote write ([#15097](https://github.com/netdata/netdata/issues/15097))
2375 +- Add chart labels to Prometheus. ([#15099](https://github.com/netdata/netdata/issues/15099))
2376 +- /api/v2/data percentage calculation on grouped queries ([#15100](https://github.com/netdata/netdata/issues/15100))
2377 +- Update ml defaults to 24h ([#15093](https://github.com/netdata/netdata/issues/15093))
2378 +- Fix the units when returning percentage of a group ([#15105](https://github.com/netdata/netdata/issues/15105))
2379 +- Percentage-of-group: fix uninitialized array vh ([#15106](https://github.com/netdata/netdata/issues/15106))
2380 +- Update agent telemetry url to be cloud function instead of posthog ([#15085](https://github.com/netdata/netdata/issues/15085))
2381 +- Oracledb: make conn protocol configurable ([#15104](https://github.com/netdata/netdata/issues/15104))
2382 +- Only queue an alert to the cloud when it's inserted ([#15110](https://github.com/netdata/netdata/issues/15110))
2383 +- Percentage of group is now aggregatable at cloud across multiple nodes ([#15109](https://github.com/netdata/netdata/issues/15109))
2384 +- Split plugins to individual packages for DEB/RPM packaging. ([#13927](https://github.com/netdata/netdata/issues/13927))
2385 +- Improve some of the error messages in the kickstart script. ([#15061](https://github.com/netdata/netdata/issues/15061))
2386 +- Initial draft for the silencing docs ([#15112](https://github.com/netdata/netdata/issues/15112))
2387 +- Fix handling of eBPF plugin for DEB packages. ([#15117](https://github.com/netdata/netdata/issues/15117))
2388 +- Revert "percentage of group is now aggregatable at cloud across multiple nodes" ([#15122](https://github.com/netdata/netdata/issues/15122))
2389 +- Fix package versioning issues. ([#15125](https://github.com/netdata/netdata/issues/15125))
2390 +- Percentage of group aggregatable at cloud - fixed for backwards compatibility ([#15126](https://github.com/netdata/netdata/issues/15126))
2391 +- Add netdata demo rooms to the list of demo urls ([#15120](https://github.com/netdata/netdata/issues/15120))
2392 +- Fix bundling of eBPF legacy code for DEB packages. ([#15127](https://github.com/netdata/netdata/issues/15127))
2393 +- Health: remove "families" from alarms config ([#15086](https://github.com/netdata/netdata/issues/15086))
2394 +- Fix: allow square brackets in label value ([#15131](https://github.com/netdata/netdata/issues/15131))
2395 +- Provide necessary permission for the kickstart to run the netdata-updater script ([#15132](https://github.com/netdata/netdata/issues/15132))
2396 +- Fix a typo in `libnetdata/simple_pattern/README.md` ([#15135](https://github.com/netdata/netdata/issues/15135))
2397 +- Updated events docs and minor fix on silecing rules table ([#15134](https://github.com/netdata/netdata/issues/15134))
2398 +- Generate, store and transmit a unique alert event_hash_id ([#15111](https://github.com/netdata/netdata/issues/15111))
2399 +- Minor - fix syntax in config.ac ([#15139](https://github.com/netdata/netdata/issues/15139))
2400 +- Send EXIT before exiting in freeipmi and debugfs plugins ([#15140](https://github.com/netdata/netdata/issues/15140))
2401 +- Check null transition id and config hash ([#15147](https://github.com/netdata/netdata/issues/15147))
2402 +- Mattermost cloud integration docs ([#15141](https://github.com/netdata/netdata/issues/15141))
2403 +- Update libbpf ([#15038](https://github.com/netdata/netdata/issues/15038))
2404 +- Freeipmi: add availability status chart and alarm ([#15151](https://github.com/netdata/netdata/issues/15151))
2405 +- Re-write of SSL support in Netdata; restoration of SIGCHLD; detection of stale plugins; streaming improvements ([#15113](https://github.com/netdata/netdata/issues/15113))
2406 +- Make plugin packages hard dependencies. ([#15160](https://github.com/netdata/netdata/issues/15160))
2407 +- Restrict ebpf dep in DEB package to amd64 only. ([#15161](https://github.com/netdata/netdata/issues/15161))
2408 +- Add library to encode/decode Gorilla compressed buffers. ([#15128](https://github.com/netdata/netdata/issues/15128))
2409 +- Fix CID 385073 -- Uninitialized scalar variable ([#15163](https://github.com/netdata/netdata/issues/15163))
2410 +- Api v2 nodes for streaming statuses ([#15162](https://github.com/netdata/netdata/issues/15162))
2411 +- Change mandatory packages for RPMs ([#15165](https://github.com/netdata/netdata/issues/15165))
2412 +- Fix user and group handling in DEB packages. ([#15166](https://github.com/netdata/netdata/issues/15166))
2413 +- Fix coverity issues ([#15169](https://github.com/netdata/netdata/issues/15169))
2414 +- Update smartd_log.conf ([#15171](https://github.com/netdata/netdata/issues/15171))
2415 +- Change package conflicts policy on deb based packages ([#15170](https://github.com/netdata/netdata/issues/15170))
2416 +- Bump go.d.plugin to v0.53.1 ([#15179](https://github.com/netdata/netdata/issues/15179))
2417 +- EBPF unittest + bug fix ([#15146](https://github.com/netdata/netdata/issues/15146))
2418 +- Do strdupz on empty string ([#15183](https://github.com/netdata/netdata/issues/15183))
2419 +- Set setuid for go.d.plugin in container ([#15180](https://github.com/netdata/netdata/issues/15180))
2420 +- Bump go.d.plugin to v0.53.2 ([#15184](https://github.com/netdata/netdata/issues/15184))
2421 +- Ebpf: disable sync by default ([#15190](https://github.com/netdata/netdata/issues/15190))
2422 +- Add support for openSUSE 15.5 ([#15189](https://github.com/netdata/netdata/issues/15189))
2423 +
2424 +## [1.39.0] - 2023-05-08
2425 +
2426 +### Merged Pull Requests:
2427 +
2428 +- Typos in in notification docs ([#14440](https://github.com/netdata/netdata/issues/14440))
2429 +- Add @andrewm4894 as docs/ codeowner ([#14398](https://github.com/netdata/netdata/issues/14398))
2430 +- Kickstart.sh: Fix `--release-channel` as `--nightly-channel` options ([#14424](https://github.com/netdata/netdata/issues/14424))
2431 +- Indicate what root privileges are needed for in kickstart.sh. ([#14314](https://github.com/netdata/netdata/issues/14314))
2432 +- Roles permissions docs ([#14391](https://github.com/netdata/netdata/issues/14391))
2433 +- Minor fix in the metadata of libnetdata/ebpf AND log documents ([#14445](https://github.com/netdata/netdata/issues/14445))
2434 +- Minor fix, convert metadata of the learn to hidden sections ([#14427](https://github.com/netdata/netdata/issues/14427))
2435 +- Do not report dimensions that failed to be queried ([#14447](https://github.com/netdata/netdata/issues/14447))
2436 +- Fix agent build failure on FreeBSD 14.0 due to new tcpstat struct ([#14446](https://github.com/netdata/netdata/issues/14446))
2437 +- Add cakrit as docs and md codeowner ([#14442](https://github.com/netdata/netdata/issues/14442))
2438 +- Roles permissions docs ([#14444](https://github.com/netdata/netdata/issues/14444))
2439 +- Add note about not needing to have room id ([#14390](https://github.com/netdata/netdata/issues/14390))
2440 +- Add mention of cloud in next steps UI etc ([#14459](https://github.com/netdata/netdata/issues/14459))
2441 +- Update the "Kubernetes visualizations" doc ([#14347](https://github.com/netdata/netdata/issues/14347))
2442 +- Update the "Install Netdata with kickstart.sh" doc ([#14338](https://github.com/netdata/netdata/issues/14338))
2443 +- Streaming interpolated values ([#14431](https://github.com/netdata/netdata/issues/14431))
2444 +- Remove deprecated python.d collectors announced in v1.38.0 ([#14454](https://github.com/netdata/netdata/issues/14454))
2445 +- Fix the concurrency group name for PR labeler workflow. ([#14460](https://github.com/netdata/netdata/issues/14460))
2446 +- Bump google-github-actions/setup-gcloud from 1.0.1 to 1.1.0 ([#14438](https://github.com/netdata/netdata/issues/14438))
2447 +- Bump docker/build-push-action from 3 to 4 ([#14437](https://github.com/netdata/netdata/issues/14437))
2448 +- Fix links and add to learn ([#14458](https://github.com/netdata/netdata/issues/14458))
2449 +- Add export for people running their own registry ([#14457](https://github.com/netdata/netdata/issues/14457))
2450 +- Add contents of packaging/installer/readme.md ([#14461](https://github.com/netdata/netdata/issues/14461))
2451 +- Only load required charts for rrdvars ([#14443](https://github.com/netdata/netdata/issues/14443))
2452 +- Update the "Install Netdata with Docker" doc ([#14385](https://github.com/netdata/netdata/issues/14385))
2453 +- Delete docs/cloud/get-started.mdx ([#14382](https://github.com/netdata/netdata/issues/14382))
2454 +- Update the "Deploy Kubernetes monitoring with Netdata" doc ([#14345](https://github.com/netdata/netdata/issues/14345))
2455 +- Update static build packages ([#14450](https://github.com/netdata/netdata/issues/14450))
2456 +- Moved contents of get started to installer readme ([#14467](https://github.com/netdata/netdata/issues/14467))
2457 +- Correct link to ansible playbook ([#14468](https://github.com/netdata/netdata/issues/14468))
2458 +- Move ansible md ([#14469](https://github.com/netdata/netdata/issues/14469))
2459 +- Add markdown files in Learn ([#14466](https://github.com/netdata/netdata/issues/14466))
2460 +- Fix a possible bug with an image ([#14472](https://github.com/netdata/netdata/issues/14472))
2461 +- Add sbindir_POST template for v235 service file ([#14471](https://github.com/netdata/netdata/issues/14471))
2462 +- Fix random crash on agent shutdown ([#14470](https://github.com/netdata/netdata/issues/14470))
2463 +- Upgrade demo sites to the getting started section ([#14474](https://github.com/netdata/netdata/issues/14474))
2464 +- Add a file to Learn ([#14473](https://github.com/netdata/netdata/issues/14473))
2465 +- Incorporate interoperability and fix edit link ([#14475](https://github.com/netdata/netdata/issues/14475))
2466 +- Remove obsolete or redundant docs ([#14476](https://github.com/netdata/netdata/issues/14476))
2467 +- Generates dual ksy for njfv2 + fix for padding after page blocks ([#14383](https://github.com/netdata/netdata/issues/14383))
2468 +- Fix compiler error when CLOSE_RANGE_CLOEXEC is missing ([#14430](https://github.com/netdata/netdata/issues/14430))
2469 +- Update AD title ([#14484](https://github.com/netdata/netdata/issues/14484))
2470 +- Make the introduction a category link ([#14485](https://github.com/netdata/netdata/issues/14485))
2471 +- Update Demo-Sites.md ([#14488](https://github.com/netdata/netdata/issues/14488))
2472 +- Try making it landing page of getting started directly ([#14489](https://github.com/netdata/netdata/issues/14489))
2473 +- Virtual hosts for data collection ([#14464](https://github.com/netdata/netdata/issues/14464))
2474 +- Fix crash when child connects ([#14492](https://github.com/netdata/netdata/issues/14492))
2475 +- Fix coverity issues ([#14480](https://github.com/netdata/netdata/issues/14480))
2476 +- Category overview pages ([#14495](https://github.com/netdata/netdata/issues/14495))
2477 +- Delete getting-started-overview.md ([#14497](https://github.com/netdata/netdata/issues/14497))
2478 +- Correct title of contribute to doccumentation ([#14498](https://github.com/netdata/netdata/issues/14498))
2479 +- Events docs ([#14341](https://github.com/netdata/netdata/issues/14341))
2480 +- Plans docs ([#14491](https://github.com/netdata/netdata/issues/14491))
2481 +- Reorganize contents of Getting Started ([#14499](https://github.com/netdata/netdata/issues/14499))
2482 +- Update Demo-Sites.md ([#14501](https://github.com/netdata/netdata/issues/14501))
2483 +- Top level learn changes ([#14503](https://github.com/netdata/netdata/issues/14503))
2484 +- Revert changes to platform support policy ([#14504](https://github.com/netdata/netdata/issues/14504))
2485 +- More learn reorg/reordering ([#14505](https://github.com/netdata/netdata/issues/14505))
2486 +- Fix broken links in collectors/COLLECTORS.md ([#14502](https://github.com/netdata/netdata/issues/14502))
2487 +- Guides and collectors reorg and cleanup part 1 ([#14507](https://github.com/netdata/netdata/issues/14507))
2488 +- Move collectors under Integrations/Monitoring ([#14509](https://github.com/netdata/netdata/issues/14509))
2489 +- Member role on roles permissions docs ([#14500](https://github.com/netdata/netdata/issues/14500))
2490 +- Learn integrations category changes ([#14510](https://github.com/netdata/netdata/issues/14510))
2491 +- Make external plugins a category page in learn ([#14511](https://github.com/netdata/netdata/issues/14511))
2492 +- Add .NET info ([#14429](https://github.com/netdata/netdata/issues/14429))
2493 +- Prevent crash when running '-W createdataset' ([#14455](https://github.com/netdata/netdata/issues/14455))
2494 +- Replicating gaps ([#14506](https://github.com/netdata/netdata/issues/14506))
2495 +- Added section to explain impacts on member role ([#14527](https://github.com/netdata/netdata/issues/14527))
2496 +- Fix broken links in markdown files ([#14513](https://github.com/netdata/netdata/issues/14513))
2497 +- Update role-based-access.md ([#14528](https://github.com/netdata/netdata/issues/14528))
2498 +- Simplify parser README.md and add parser files to CMakeLists.txt ([#14523](https://github.com/netdata/netdata/issues/14523))
2499 +- Update main metric retention docs ([#14530](https://github.com/netdata/netdata/issues/14530))
2500 +- Add Debian 12 to our CI and platform support document. ([#14529](https://github.com/netdata/netdata/issues/14529))
2501 +- Use curl from static builds if no system-wide copy exists. ([#14403](https://github.com/netdata/netdata/issues/14403))
2502 +- Use BoxListItemRegexLink component in docs/quickstart/insfrastructure.md ([#14533](https://github.com/netdata/netdata/issues/14533))
2503 +- Fix broken Alma Linux entries in build matrix generation. ([#14536](https://github.com/netdata/netdata/issues/14536))
2504 +- Reorganize learn documents under Integrations part 2 ([#14538](https://github.com/netdata/netdata/issues/14538))
2505 +- Fix broken svgs and improve database queries API doc ([#14539](https://github.com/netdata/netdata/issues/14539))
2506 +- Add renamed markdown files ([#14540](https://github.com/netdata/netdata/issues/14540))
2507 +- JSON internal API, IEEE754 base64/hex streaming, weights endpoint optimization ([#14493](https://github.com/netdata/netdata/issues/14493))
2508 +- Remove unused config options and functions ([#14542](https://github.com/netdata/netdata/issues/14542))
2509 +- Assorted shellcheck cleanup. ([#14524](https://github.com/netdata/netdata/issues/14524))
2510 +- Fix setting go.d.plugin capabilities ([#14525](https://github.com/netdata/netdata/issues/14525))
2511 +- Reorg markdown files for learn ([#14547](https://github.com/netdata/netdata/issues/14547))
2512 +- Hide netdata for IoT from learn. ([#14548](https://github.com/netdata/netdata/issues/14548))
2513 +- Update learn path of python plugin readme ([#14549](https://github.com/netdata/netdata/issues/14549))
2514 +- Roles docs: Add Early Bird and Member role ([#14537](https://github.com/netdata/netdata/issues/14537))
2515 +- More reorg learn 021623 ([#14550](https://github.com/netdata/netdata/issues/14550))
2516 +- Fix broken links in integrations-overview ([#14554](https://github.com/netdata/netdata/issues/14554))
2517 +- Reorg learn 021723 ([#14556](https://github.com/netdata/netdata/issues/14556))
2518 +- Update email notification docs with info about setup in Docker. ([#14555](https://github.com/netdata/netdata/issues/14555))
2519 +- Add misc landing page and move proxy guides ([#14557](https://github.com/netdata/netdata/issues/14557))
2520 +- Make secure nodes a category landing page ([#14558](https://github.com/netdata/netdata/issues/14558))
2521 +- Fix kickstart link ([#14559](https://github.com/netdata/netdata/issues/14559))
2522 +- Re-index when machine guid changes ([#14535](https://github.com/netdata/netdata/issues/14535))
2523 +- Remove obsolete instruction to lower memory usage ([#14568](https://github.com/netdata/netdata/issues/14568))
2524 +- Reviewed plans page to be according to latest updates ([#14560](https://github.com/netdata/netdata/issues/14560))
2525 +- Fix broken links in our documentation ([#14565](https://github.com/netdata/netdata/issues/14565))
2526 +- Include troubleshooting section in the docs of python.d modules ([#13721](https://github.com/netdata/netdata/issues/13721))
2527 +- Fix doc capitalization and remove obsolete section ([#14569](https://github.com/netdata/netdata/issues/14569))
2528 +- Remove References category from learn ([#14571](https://github.com/netdata/netdata/issues/14571))
2529 +- Bump go.d to v0.51.0 ([#14572](https://github.com/netdata/netdata/issues/14572))
2530 +- Pandas collector add `read_sql()` support ([#14563](https://github.com/netdata/netdata/issues/14563))
2531 +- Fix coverity issues ([#14543](https://github.com/netdata/netdata/issues/14543))
2532 +- Fix two issues with the edit-config script. ([#14545](https://github.com/netdata/netdata/issues/14545))
2533 +- Support installing extra packages in Docker images at runtime. ([#14456](https://github.com/netdata/netdata/issues/14456))
2534 +- Update static binary readme ([#14574](https://github.com/netdata/netdata/issues/14574))
2535 +- Reorg learn ([#14575](https://github.com/netdata/netdata/issues/14575))
2536 +- Update README.md ([#14576](https://github.com/netdata/netdata/issues/14576))
2537 +- Memory management eBPF ([#14462](https://github.com/netdata/netdata/issues/14462))
2538 +- Reorg learn 2102 1 ([#14577](https://github.com/netdata/netdata/issues/14577))
2539 +- Add link to all installation options ([#14578](https://github.com/netdata/netdata/issues/14578))
2540 +- Learn installation reorg part 2 ([#14579](https://github.com/netdata/netdata/issues/14579))
2541 +- Final install reorg for learn ([#14580](https://github.com/netdata/netdata/issues/14580))
2542 +- Correct the sidebar position label metdata for learn ([#14583](https://github.com/netdata/netdata/issues/14583))
2543 +- Misc SSL improvements 2 ([#14334](https://github.com/netdata/netdata/issues/14334))
2544 +- Merge security documents ([#14588](https://github.com/netdata/netdata/issues/14588))
2545 +- Change link text to collectors.md ([#14590](https://github.com/netdata/netdata/issues/14590))
2546 +- Clean host structure ([#14584](https://github.com/netdata/netdata/issues/14584))
2547 +- Get update every from page ([#14573](https://github.com/netdata/netdata/issues/14573))
2548 +- /api/v2/data - multi-host/context/instance/dimension/label queries ([#14564](https://github.com/netdata/netdata/issues/14564))
2549 +- Delete interact-dashboard-charts ([#14594](https://github.com/netdata/netdata/issues/14594))
2550 +- Update interact-new-charts.md ([#14596](https://github.com/netdata/netdata/issues/14596))
2551 +- Replace web server readme with its improved replica ([#14598](https://github.com/netdata/netdata/issues/14598))
2552 +- Add flake8 to review CI to check Python files. ([#14582](https://github.com/netdata/netdata/issues/14582))
2553 +- Add deployment strategies ([#14600](https://github.com/netdata/netdata/issues/14600))
2554 +- Update deployment-strategies.md ([#14601](https://github.com/netdata/netdata/issues/14601))
2555 +- Fix context unittest coredump ([#14595](https://github.com/netdata/netdata/issues/14595))
2556 +- Prevent core dump when the agent is performing a quick shutdown ([#14587](https://github.com/netdata/netdata/issues/14587))
2557 +- Add a scheduled CI job to flag supported platforms going EOL upstream. ([#14581](https://github.com/netdata/netdata/issues/14581))
2558 +- Temporarily remove platform EOL check for Debian 12 ([#14603](https://github.com/netdata/netdata/issues/14603))
2559 +- Fix broken links ([#14605](https://github.com/netdata/netdata/issues/14605))
2560 +- Update overview.md ([#14607](https://github.com/netdata/netdata/issues/14607))
2561 +- Reorg information and add titles ([#14608](https://github.com/netdata/netdata/issues/14608))
2562 +- Fix links to chart interactions ([#14609](https://github.com/netdata/netdata/issues/14609))
2563 +- Update go.d.plugin v0.51.1 ([#14611](https://github.com/netdata/netdata/issues/14611))
2564 +- Reorg learn 0226 ([#14610](https://github.com/netdata/netdata/issues/14610))
2565 +- Fix links from removed docs ([#14612](https://github.com/netdata/netdata/issues/14612))
2566 +- Fix proxy links in netdata security ([#14613](https://github.com/netdata/netdata/issues/14613))
2567 +- Fix relative link to anonymous statistics ([#14614](https://github.com/netdata/netdata/issues/14614))
2568 +- Use vector allocation whenever is possible (eBPF) ([#14591](https://github.com/netdata/netdata/issues/14591))
2569 +- Bump actions/checkout from 2 to 3 ([#14615](https://github.com/netdata/netdata/issues/14615))
2570 +- Reorganize system directory to better reflect what files are actually used for. ([#14544](https://github.com/netdata/netdata/issues/14544))
2571 +- Bump go.d.plugin v0.51.2 ([#14618](https://github.com/netdata/netdata/issues/14618))
2572 +- Reorg learn 0227 ([#14621](https://github.com/netdata/netdata/issues/14621))
2573 +- Rename glossary ([#14622](https://github.com/netdata/netdata/issues/14622))
2574 +- Fix python version check to work for 3.10 and above ([#14616](https://github.com/netdata/netdata/issues/14616))
2575 +- Port ML from C++ to C. ([#14567](https://github.com/netdata/netdata/issues/14567))
2576 +- Fix handling of no data in platform EOL checks. ([#14617](https://github.com/netdata/netdata/issues/14617))
2577 +- Update REFERENCE.md ([#14627](https://github.com/netdata/netdata/issues/14627))
2578 +- Make the title metadata H1 in all markdown files ([#14625](https://github.com/netdata/netdata/issues/14625))
2579 +- Add an option to the kickstart script to override distro detection. ([#14589](https://github.com/netdata/netdata/issues/14589))
2580 +- Misc SSL improvements 3 ([#14602](https://github.com/netdata/netdata/issues/14602))
2581 +- Added Challenge secret and rooms object on the payload ([#14496](https://github.com/netdata/netdata/issues/14496))
2582 +- Fix broken link ([#14630](https://github.com/netdata/netdata/issues/14630))
2583 +- Ensure consistency of kickstart script options that change operational mode of the script. ([#13896](https://github.com/netdata/netdata/issues/13896))
2584 +- Re-add link from install page to DEB/RPM package documentation. ([#14631](https://github.com/netdata/netdata/issues/14631))
2585 +- Add link to native packages also on the list ([#14633](https://github.com/netdata/netdata/issues/14633))
2586 +- Fix broken links ([#14634](https://github.com/netdata/netdata/issues/14634))
2587 +- Assorted improvements to OpenRC support. ([#14620](https://github.com/netdata/netdata/issues/14620))
2588 +- Link statically libnetfilter_acct into our static builds ([#14516](https://github.com/netdata/netdata/issues/14516))
2589 +- [docs]: Revert #14178 that documents how to set nofile limit for Netdata containers ([#14635](https://github.com/netdata/netdata/issues/14635))
2590 +- Update change-metrics-storage.md ([#14640](https://github.com/netdata/netdata/issues/14640))
2591 +- Update change-metrics-storage.md ([#14641](https://github.com/netdata/netdata/issues/14641))
2592 +- Update pi-hole-raspberry-pi.md ([#14644](https://github.com/netdata/netdata/issues/14644))
2593 +- Update README.md ([#14647](https://github.com/netdata/netdata/issues/14647))
2594 +- Update guidelines.md ([#14649](https://github.com/netdata/netdata/issues/14649))
2595 +- /api/v2/contexts ([#14592](https://github.com/netdata/netdata/issues/14592))
2596 +- Fix doc links ([#14650](https://github.com/netdata/netdata/issues/14650))
2597 +- Fix links ([#14651](https://github.com/netdata/netdata/issues/14651))
2598 +- Fix handling of missing release codename on DEB systems. ([#14642](https://github.com/netdata/netdata/issues/14642))
2599 +- Fix simple_pattern_create on freebsd ([#14656](https://github.com/netdata/netdata/issues/14656))
2600 +- Fix broken links in glossary.md ([#14653](https://github.com/netdata/netdata/issues/14653))
2601 +- Add support for bypassing static build cache on PRs. ([#14646](https://github.com/netdata/netdata/issues/14646))
2602 +- Bump actions/add-to-project from 0.4.0 to 0.4.1 ([#14669](https://github.com/netdata/netdata/issues/14669))
2603 +- Properly handle service type detection failures when installing as a system service. ([#14658](https://github.com/netdata/netdata/issues/14658))
2604 +- Add note on readme on how to easily see all ml related blog posts ([#14675](https://github.com/netdata/netdata/issues/14675))
2605 +- Fix intermittent permissions issues in some Docker builds. ([#14629](https://github.com/netdata/netdata/issues/14629))
2606 +- If a child is not streaming, send to the cloud last known version instead of unknown ([#14671](https://github.com/netdata/netdata/issues/14671))
2607 +- Guard for null host when sending node instances ([#14673](https://github.com/netdata/netdata/issues/14673))
2608 +- Handle conffiles for DEB packages explicitly instead of automatically. ([#14662](https://github.com/netdata/netdata/issues/14662))
2609 +- Move images in "interact-new-charts" from zenhub to github ([#14654](https://github.com/netdata/netdata/issues/14654))
2610 +- Fix conditionals for claim-only case in kickstart.sh. ([#14679](https://github.com/netdata/netdata/issues/14679))
2611 +- Fix platform EOL checks to properly return success. ([#14681](https://github.com/netdata/netdata/issues/14681))
2612 +- Fix issue template formatting for platform EOL check.
2613 +- Fix build matrix generation for platform EOL check.
2614 +- Fix kernel test script ([#14676](https://github.com/netdata/netdata/issues/14676))
2615 +- EBPF new charts (user ring) ([#14623](https://github.com/netdata/netdata/issues/14623))
2616 +- Fix Azure IMDS ([#14686](https://github.com/netdata/netdata/issues/14686))
2617 +- Fix cloud node stale status when a virtual host is created ([#14660](https://github.com/netdata/netdata/issues/14660))
2618 +- Send an EOF from charts.d.plugin before exit ([#14680](https://github.com/netdata/netdata/issues/14680))
2619 +- Remove google hangouts from list of integrations ([#14689](https://github.com/netdata/netdata/issues/14689))
2620 +- Add FAQ information provided by Finance ([#14664](https://github.com/netdata/netdata/issues/14664))
2621 +- Reviewed role description to be according to app ([#14672](https://github.com/netdata/netdata/issues/14672))
2622 +- Fix: detect the host os in k8s on non-docker cri ([#14694](https://github.com/netdata/netdata/issues/14694))
2623 +- Fix compilation error when --disable-cloud is specified ([#14695](https://github.com/netdata/netdata/issues/14695))
2624 +- Refactor ML code. ([#14659](https://github.com/netdata/netdata/issues/14659))
2625 +- /api/v2/X improvements part 3 ([#14665](https://github.com/netdata/netdata/issues/14665))
2626 +- Revert "Handle conffiles for DEB packages explicitly instead of automatically." ([#14700](https://github.com/netdata/netdata/issues/14700))
2627 +- Fix system info disk size detection on raspberry pi ([#14711](https://github.com/netdata/netdata/issues/14711))
2628 +- Don’t try to use tput in edit-config unless it’s installed. ([#14705](https://github.com/netdata/netdata/issues/14705))
2629 +- Add Amazon Linux 2 to CI and platform support. ([#14599](https://github.com/netdata/netdata/issues/14599))
2630 +- Add vnodes default configuration file. ([#14553](https://github.com/netdata/netdata/issues/14553))
2631 +- Change H1 of collector docs to separate from the website ([#14715](https://github.com/netdata/netdata/issues/14715))
2632 +- Add instructions for reconnecting a Docker node to another Space ([#14714](https://github.com/netdata/netdata/issues/14714))
2633 +- /api/v2 part 4 ([#14706](https://github.com/netdata/netdata/issues/14706))
2634 +- RPM: Added elfutils-libelf-devel for build with eBPF ([#14552](https://github.com/netdata/netdata/issues/14552))
2635 +- Auto-trigger MSI build on release. ([#14721](https://github.com/netdata/netdata/issues/14721))
2636 +- Add experimental support for running under runit. ([#13841](https://github.com/netdata/netdata/issues/13841))
2637 +- Improve guideline docs ([#14678](https://github.com/netdata/netdata/issues/14678))
2638 +- Update change-metrics-storage.md ([#14726](https://github.com/netdata/netdata/issues/14726))
2639 +- Add go.d example collector to #etc section ([#14722](https://github.com/netdata/netdata/issues/14722))
2640 +- New build_external scenario. ([#14725](https://github.com/netdata/netdata/issues/14725))
2641 +- Correct calc and explain how to get METRICS in RAM usage ([#14733](https://github.com/netdata/netdata/issues/14733))
2642 +- Update change-metrics-storage.md ([#14734](https://github.com/netdata/netdata/issues/14734))
2643 +- Pandas collector replace `self.warn()` with `self.warning()` ([#14736](https://github.com/netdata/netdata/issues/14736))
2644 +- Update dashboard to version v2.30.0. ([#14732](https://github.com/netdata/netdata/issues/14732))
2645 +- Update data-privacy.md ([#14738](https://github.com/netdata/netdata/issues/14738))
2646 +- Update data-privacy.md ([#14739](https://github.com/netdata/netdata/issues/14739))
2647 +- Create pci-soc-hipaa.md ([#14740](https://github.com/netdata/netdata/issues/14740))
2648 +- Add contexts to privacy doc. ([#14741](https://github.com/netdata/netdata/issues/14741))
2649 +- Update change-metrics-storage.md ([#14742](https://github.com/netdata/netdata/issues/14742))
2650 +- Update Performance Optimization Options ([#14743](https://github.com/netdata/netdata/issues/14743))
2651 +- Use one thread for ACLK synchonization ([#14281](https://github.com/netdata/netdata/issues/14281))
2652 +- Increase RRD_ID_LENGTH_MAX to 1000 ([#14744](https://github.com/netdata/netdata/issues/14744))
2653 +- Bump go.d.plugin version to v0.51.3 ([#14745](https://github.com/netdata/netdata/issues/14745))
2654 +- Update edit-config documentation ([#14749](https://github.com/netdata/netdata/issues/14749))
2655 +- Organize information from war-rooms.md to its correct location ([#14729](https://github.com/netdata/netdata/issues/14729))
2656 +- Update sign-in.md ([#14751](https://github.com/netdata/netdata/issues/14751))
2657 +- Suggest PRs to go to the community project ([#14724](https://github.com/netdata/netdata/issues/14724))
2658 +- Update deployment-strategies.md ([#14716](https://github.com/netdata/netdata/issues/14716))
2659 +- Add ethtool in third party collectors ([#14753](https://github.com/netdata/netdata/issues/14753))
2660 +- Add CI support for Fedora 38 & Ubuntu 23.04 native packages ([#14735](https://github.com/netdata/netdata/issues/14735))
2661 +- Bump go.d.plugin to v0.51.4 ([#14756](https://github.com/netdata/netdata/issues/14756))
2662 +- Bundle libyaml ([#14704](https://github.com/netdata/netdata/issues/14704))
2663 +- Accept all=true for alarms api v1 call ([#14762](https://github.com/netdata/netdata/issues/14762))
2664 +- Minor addition to distros matrix ([#14767](https://github.com/netdata/netdata/issues/14767))
2665 +- Fix /sys/block/zram in docker ([#14759](https://github.com/netdata/netdata/issues/14759))
2666 +- Update "View active alerts" documentation ([#14766](https://github.com/netdata/netdata/issues/14766))
2667 +- Pass node_id and config_hash vars when queueing alert configurations ([#14769](https://github.com/netdata/netdata/issues/14769))
2668 +- Use static thread-pool for training. ([#14702](https://github.com/netdata/netdata/issues/14702))
2669 +- Assorted improvements for our platform EOL check code. ([#14768](https://github.com/netdata/netdata/issues/14768))
2670 +- Update API ([#14772](https://github.com/netdata/netdata/issues/14772))
2671 +- Add gzip compression info to nginx proxy readme ([#14773](https://github.com/netdata/netdata/issues/14773))
2672 +- Create reverse-proxies.md ([#14774](https://github.com/netdata/netdata/issues/14774))
2673 +- Update performance.md ([#14776](https://github.com/netdata/netdata/issues/14776))
2674 +- Update reverse-proxies.md ([#14777](https://github.com/netdata/netdata/issues/14777))
2675 +- Improve performance.md ([#14778](https://github.com/netdata/netdata/issues/14778))
2676 +- Replace hardcoded links pointing to "learn.netdata.cloud" with github absolute links ([#14779](https://github.com/netdata/netdata/issues/14779))
2677 +- Add validation step before using Azure metadata (AZURE_IMDS_DATA) ([#14775](https://github.com/netdata/netdata/issues/14775))
2678 +- Revert "Use static thread-pool for training. ([#14702](https://github.com/netdata/netdata/issues/14702))" ([#14782](https://github.com/netdata/netdata/issues/14782))
2679 +- Update dashboard to version v2.30.1. ([#14784](https://github.com/netdata/netdata/issues/14784))
2680 +- Update journal v2 ([#14750](https://github.com/netdata/netdata/issues/14750))
2681 +- /api/v2/X part 5 ([#14718](https://github.com/netdata/netdata/issues/14718))
2682 +- Uuid_compare() replaced with uuid_memcmp() ([#14787](https://github.com/netdata/netdata/issues/14787))
2683 +- /api/v2/X part 6 ([#14785](https://github.com/netdata/netdata/issues/14785))
2684 +- Use mCPU in k8s cgroup cpu charts title ([#14791](https://github.com/netdata/netdata/issues/14791))
2685 +- Fix capitalization on readme ([#14793](https://github.com/netdata/netdata/issues/14793))
2686 +- Fix links in README.md ([#14794](https://github.com/netdata/netdata/issues/14794))
2687 +- Schedule node info to the cloud after child connection ([#14790](https://github.com/netdata/netdata/issues/14790))
2688 +- Fix handling of logrotate on static installs. ([#14792](https://github.com/netdata/netdata/issues/14792))
2689 +- Replace `/docs` links with GitHub links ([#14796](https://github.com/netdata/netdata/issues/14796))
2690 +- Add validation step before using GCP metadata ([#14801](https://github.com/netdata/netdata/issues/14801))
2691 +- Fix how we are handling system services in RPM packages. ([#14781](https://github.com/netdata/netdata/issues/14781))
2692 +- Address Learn feedback from users ([#14802](https://github.com/netdata/netdata/issues/14802))
2693 +- Update role-based-access.md ([#14811](https://github.com/netdata/netdata/issues/14811))
2694 +- Consolidate security and privacy documents ([#14812](https://github.com/netdata/netdata/issues/14812))
2695 +- Update privacy link in aclk doc ([#14813](https://github.com/netdata/netdata/issues/14813))
2696 +- Minor improvements to netdata-security.md ([#14815](https://github.com/netdata/netdata/issues/14815))
2697 +- Diskspace: don't collect inodes on msdosfs ([#14809](https://github.com/netdata/netdata/issues/14809))
2698 +- /api/v2/X part 7 ([#14797](https://github.com/netdata/netdata/issues/14797))
2699 +- Fix failure logic for publishing packages. ([#14720](https://github.com/netdata/netdata/issues/14720))
2700 +- Clean up install method list in bug report template. ([#14819](https://github.com/netdata/netdata/issues/14819))
2701 +- Configure extent cache size ([#14821](https://github.com/netdata/netdata/issues/14821))
2702 +- Delete installation instructions specific to FreeNAS ([#14826](https://github.com/netdata/netdata/issues/14826))
2703 +- Add Amazon Linux 2023 to CI, packaging, and platform support. ([#14771](https://github.com/netdata/netdata/issues/14771))
2704 +- Update change-metrics-storage.md ([#14834](https://github.com/netdata/netdata/issues/14834))
2705 +- Update database engine readme ([#14836](https://github.com/netdata/netdata/issues/14836))
2706 +- Update change-metrics-storage.md ([#14835](https://github.com/netdata/netdata/issues/14835))
2707 +- Update deployment-strategies.md ([#14837](https://github.com/netdata/netdata/issues/14837))
2708 +- Update enable-notifications.md ([#14838](https://github.com/netdata/netdata/issues/14838))
2709 +- Update netdata-security.md ([#14833](https://github.com/netdata/netdata/issues/14833))
2710 +- Docs, shorten too long titles, and add a description below ([#14820](https://github.com/netdata/netdata/issues/14820))
2711 +- Add some third party collectors ([#14830](https://github.com/netdata/netdata/issues/14830))
2712 +- First batch of adding descriptions to the documentation ([#14825](https://github.com/netdata/netdata/issues/14825))
2713 +- Fix Btrfs unallocated space accounting ([#14824](https://github.com/netdata/netdata/issues/14824))
2714 +- Update parent child examples ([#14842](https://github.com/netdata/netdata/issues/14842))
2715 +- Fix double host prefix when reading ZFS pools state ([#14840](https://github.com/netdata/netdata/issues/14840))
2716 +- Minor - add capability signifying this agent can speak apiv2 ([#14817](https://github.com/netdata/netdata/issues/14817))
2717 +- Fix #14841 Exception funktion call Rados.mon_command() ([#14844](https://github.com/netdata/netdata/issues/14844))
2718 +- Fix typo alerms -> alarms ([#14854](https://github.com/netdata/netdata/issues/14854))
2719 +- Remove ubuntu 18.04 from our CI ([#14731](https://github.com/netdata/netdata/issues/14731))
2720 +- Update posthog domain ([#14818](https://github.com/netdata/netdata/issues/14818))
2721 +- Bump google-github-actions/upload-cloud-storage from 1.0.0 to 1.0.1 ([#14853](https://github.com/netdata/netdata/issues/14853))
2722 +- Review usage of you to say user instead ([#14858](https://github.com/netdata/netdata/issues/14858))
2723 +- Update Agent notification methods documentation ([#14827](https://github.com/netdata/netdata/issues/14827))
2724 +- Add labels for cgroup name ([#14856](https://github.com/netdata/netdata/issues/14856))
2725 +- Add basic clang-format checking to PR review. ([#13951](https://github.com/netdata/netdata/issues/13951))
2726 +- Fix js tag in documentation ([#14862](https://github.com/netdata/netdata/issues/14862))
2727 +- Update link from http to https ([#14864](https://github.com/netdata/netdata/issues/14864))
2728 +- Add opsgenie integration docs ([#14828](https://github.com/netdata/netdata/issues/14828))
2729 +- Set a default registry unique id when there is none for statistics script ([#14861](https://github.com/netdata/netdata/issues/14861))
2730 +- Assorted installer code cleanup. ([#14632](https://github.com/netdata/netdata/issues/14632))
2731 +- Bump go.d.plugin v0.52.0 ([#14870](https://github.com/netdata/netdata/issues/14870))
2732 +- Fix regex syntax for clang-format checks. ([#14871](https://github.com/netdata/netdata/issues/14871))
2733 +- Boost dbengine ([#14832](https://github.com/netdata/netdata/issues/14832))
2734 +- Cgroups.plugin: add image label ([#14872](https://github.com/netdata/netdata/issues/14872))
2735 +- Add support for alert notifications to ntfy.sh ([#14875](https://github.com/netdata/netdata/issues/14875))
2736 +- /api/v2 part 8 ([#14885](https://github.com/netdata/netdata/issues/14885))
2737 +- Bump actions/add-to-project from 0.4.1 to 0.5.0 ([#14881](https://github.com/netdata/netdata/issues/14881))
2738 +- Bump peter-evans/create-pull-request from 4 to 5 ([#14883](https://github.com/netdata/netdata/issues/14883))
2739 +- Handle conffiles for DEB packages explicitly instead of automatically. ([#14703](https://github.com/netdata/netdata/issues/14703))
2740 +- EBPF bug fixes ([#14869](https://github.com/netdata/netdata/issues/14869))
2741 +- /api/v2 part 9 ([#14888](https://github.com/netdata/netdata/issues/14888))
2742 +- Add example configuration to w1sensor collector ([#14886](https://github.com/netdata/netdata/issues/14886))
2743 +- Update the bundled version of makeself used to create static builds. ([#14822](https://github.com/netdata/netdata/issues/14822))
2744 +- Collect additional BTRFS metrics ([#14636](https://github.com/netdata/netdata/issues/14636))
2745 +- Remove dry run option from uninstall documentation ([#14894](https://github.com/netdata/netdata/issues/14894))
2746 +- Add opsgenie as a business level notificaiton method ([#14895](https://github.com/netdata/netdata/issues/14895))
2747 +- Update README.md ([#14898](https://github.com/netdata/netdata/issues/14898))
2748 +- Update README.md ([#14899](https://github.com/netdata/netdata/issues/14899))
2749 +- Update REFERENCE.md ([#14900](https://github.com/netdata/netdata/issues/14900))
2750 +- Disable threads that update with high frequency ([#14897](https://github.com/netdata/netdata/issues/14897))
2751 +- Cgroups: add option to use Kubelet for pods metadata ([#14891](https://github.com/netdata/netdata/issues/14891))
2752 +- /api/v2 part 10 ([#14904](https://github.com/netdata/netdata/issues/14904))
2753 +- Update change-metrics-storage.md ([#14905](https://github.com/netdata/netdata/issues/14905))
2754 +- Save and load ML models ([#14810](https://github.com/netdata/netdata/issues/14810))
2755 +- Revert ML changes. ([#14908](https://github.com/netdata/netdata/issues/14908))
2756 +- Update suggested replication setups ([#14914](https://github.com/netdata/netdata/issues/14914))
2757 +- Add section for scaling parent nodes ([#14915](https://github.com/netdata/netdata/issues/14915))
2758 +- Add windows diagram ([#14916](https://github.com/netdata/netdata/issues/14916))
2759 +- Fix judyltablesgen crosscompile ([#14349](https://github.com/netdata/netdata/issues/14349))
2760 +- Change docusaurus admonitions to our style of admonitions ([#14917](https://github.com/netdata/netdata/issues/14917))
2761 +- Minor - remove RX_MSGLEN_MAX ([#14918](https://github.com/netdata/netdata/issues/14918))
2762 +- Fix warnings and error when compiling with --disable-dbengine ([#14919](https://github.com/netdata/netdata/issues/14919))
2763 +- Fix/introduce links inside charts.d.plugin documentation ([#14884](https://github.com/netdata/netdata/issues/14884))
2764 +- Document CetusGuard as a Docker socket proxy solution ([#14806](https://github.com/netdata/netdata/issues/14806))
2765 +- Bump go.d.plugin to v0.52.1 ([#14921](https://github.com/netdata/netdata/issues/14921))
2766 +- Make the document more generic ([#14932](https://github.com/netdata/netdata/issues/14932))
2767 +- Bump go.d.plugin v0.52.2 ([#14933](https://github.com/netdata/netdata/issues/14933))
2768 +- Skip ML initialization when it's been disabled in netdata.conf ([#14920](https://github.com/netdata/netdata/issues/14920))
2769 +- Initialize machine GUID earlier in the agent startup sequence ([#14922](https://github.com/netdata/netdata/issues/14922))
2770 +- Zfspool: add suspended state ([#14934](https://github.com/netdata/netdata/issues/14934))
2771 +- Update using-host-labels.md ([#14939](https://github.com/netdata/netdata/issues/14939))
2772 +- Update COLLECTORS.md
2773 +- Fix broken image, in database/README.md ([#14936](https://github.com/netdata/netdata/issues/14936))
2774 +- Add a description to proc.plugin/README.md ([#14935](https://github.com/netdata/netdata/issues/14935))
2775 +- Optimize the cheat sheet to be in a printable form factor ([#14903](https://github.com/netdata/netdata/issues/14903))
2776 +- Add windows MSI installer start stop restart instructions to docs ([#14929](https://github.com/netdata/netdata/issues/14929))
2777 +- Replace "XYZ view" with "XYZ tab" in documentation files ([#14930](https://github.com/netdata/netdata/issues/14930))
2778 +- Add Docker instructions to enable Nvidia GPUs ([#14924](https://github.com/netdata/netdata/issues/14924))
2779 +- WEBRTC for communication between agents and browsers ([#14874](https://github.com/netdata/netdata/issues/14874))
2780 +- Fix 32bit segv ([#14940](https://github.com/netdata/netdata/issues/14940))
2781 +- Skip alert template variables from alert snapshots ([#14763](https://github.com/netdata/netdata/issues/14763))
2782 +- Add a checkpoint message to alerts stream ([#14847](https://github.com/netdata/netdata/issues/14847))
2783 +- Remove netdatacli response size limitation ([#14906](https://github.com/netdata/netdata/issues/14906))
2784 +- Update freebsd.md ([#14010](https://github.com/netdata/netdata/issues/14010))
2785 +- Update README.md ([#14948](https://github.com/netdata/netdata/issues/14948))
2786 +- Disable SQL operations in training thread ([#14947](https://github.com/netdata/netdata/issues/14947))
2787 +- Update dbengine README.md ([#14951](https://github.com/netdata/netdata/issues/14951))
2788 +- Terminate JSX element in doc file ([#14952](https://github.com/netdata/netdata/issues/14952))
2789 +- Address issues on `EC2` (eBPF). ([#14902](https://github.com/netdata/netdata/issues/14902))
2790 +- Prevent pager from preventing non-interactive install ([#14950](https://github.com/netdata/netdata/issues/14950))
2791 +- Reject child when context is loading ([#14960](https://github.com/netdata/netdata/issues/14960))
2792 +- Update README.md ([#14962](https://github.com/netdata/netdata/issues/14962))
2793 +- Document netdatacli dumpconfig option ([#14963](https://github.com/netdata/netdata/issues/14963))
2794 +- Add adaptec_raid metrics.csv ([#14955](https://github.com/netdata/netdata/issues/14955))
2795 +- Fix handling of users and groups on install. ([#14961](https://github.com/netdata/netdata/issues/14961))
2796 +- Update ML README.md ([#14964](https://github.com/netdata/netdata/issues/14964))
2797 +- Add support for acquire/release operations on RRDSETs ([#14945](https://github.com/netdata/netdata/issues/14945))
2798 +- Add metrics.csv to apps.plugin ([#14968](https://github.com/netdata/netdata/issues/14968))
2799 +- Add metrics.csv to timex.plugin ([#14970](https://github.com/netdata/netdata/issues/14970))
2800 +- Add metrics.csv to charts.d ([#14966](https://github.com/netdata/netdata/issues/14966))
2801 +- Add metrics.csv to slabinfo.plugin ([#14971](https://github.com/netdata/netdata/issues/14971))
2802 +- Add metrics.csv to xenstat.plugin ([#14972](https://github.com/netdata/netdata/issues/14972))
2803 +- Add metrics.csv to perf.plugin ([#14973](https://github.com/netdata/netdata/issues/14973))
2804 +- Do not convert to percentage, when the raw option is given ([#14969](https://github.com/netdata/netdata/issues/14969))
2805 +- Add metrics.csv to some c collectors ([#14974](https://github.com/netdata/netdata/issues/14974))
2806 +- Fix adding chart labels in tc.plugin ([#14976](https://github.com/netdata/netdata/issues/14976))
2807 +- Add metrics.csv to macos, freebsd and cgroups plugins ([#14977](https://github.com/netdata/netdata/issues/14977))
2808 +- Interrupt callback on api/v1/data ([#14978](https://github.com/netdata/netdata/issues/14978))
2809 +- Fix TYPO in README.md ([#14980](https://github.com/netdata/netdata/issues/14980))
2810 +- Add metrics.csv to proc.plugin ([#14979](https://github.com/netdata/netdata/issues/14979))
2811 +- Add metadata.csv to python.d.plugin ([#14959](https://github.com/netdata/netdata/issues/14959))
2812 +- Add metrics.csv for ebpf ([#14965](https://github.com/netdata/netdata/issues/14965))
2813 +- Fix config generation for plugins ([#14990](https://github.com/netdata/netdata/issues/14990))
2814 +- Remove alpine 3.14 from the ci ([#14873](https://github.com/netdata/netdata/issues/14873))
2815 +- Disable CPU full pressure at the system level ([#14991](https://github.com/netdata/netdata/issues/14991))
2816 +- Feat: add OpsGenie alert levels to payload ([#14992](https://github.com/netdata/netdata/issues/14992))
2817 +- Update netdata-security.md ([#14995](https://github.com/netdata/netdata/issues/14995))
2818 +- Set api v2 version 2 ([#14954](https://github.com/netdata/netdata/issues/14954))
2819 +- Add Cancel Pending Request Message ([#14953](https://github.com/netdata/netdata/issues/14953))
2820 +- Remove lighttpd2 from docs ([#14997](https://github.com/netdata/netdata/issues/14997))
2821 +- Load/Store ML models ([#14981](https://github.com/netdata/netdata/issues/14981))
2822 +- Fix cmake errors ([#14998](https://github.com/netdata/netdata/issues/14998))
2823 +- Address log issue ([#14958](https://github.com/netdata/netdata/issues/14958))
2824 +- Add support for monitoring thp, ballooning, zswap, ksm cow ([#15000](https://github.com/netdata/netdata/issues/15000))
2825 +- Weights endpoint: volume diff of anomaly rates ([#15004](https://github.com/netdata/netdata/issues/15004))
2826 +- Bump Coverity scan tool version. ([#15003](https://github.com/netdata/netdata/issues/15003))
2827 +- Fix coverity issues ([#15005](https://github.com/netdata/netdata/issues/15005))
2828 +- Feat(apps.plugin): collect context switches ([#15002](https://github.com/netdata/netdata/issues/15002))
2829 +- Differentiate error codes better when claiming from kickstart script. ([#15015](https://github.com/netdata/netdata/issues/15015))
2830 +- Set file capabilities correctly on static installs. ([#15018](https://github.com/netdata/netdata/issues/15018))
2831 +- Add `grafana` to `apps_groups.conf` ([#15020](https://github.com/netdata/netdata/issues/15020))
2832 +- On data and weight queries now instances filter matches also instance_id@node_id ([#15021](https://github.com/netdata/netdata/issues/15021))
2833 +- Fix typo in file capabilities settings in static installer. ([#15023](https://github.com/netdata/netdata/issues/15023))
2834 +
2835 +## [1.38.0] - 2023-02-06
2836 +
2837 +### Merged Pull Requests:
2838 +
2839 +- Remove python.d/springboot ([#14075](https://github.com/netdata/netdata/issues/14075))
2840 +- Remove openSUSE Leap 15.3 from CI and support. ([#13416](https://github.com/netdata/netdata/issues/13416))
2841 +- Fix backfilling statistics ([#14074](https://github.com/netdata/netdata/issues/14074))
2842 +- Fix SSL related crashes ([#14076](https://github.com/netdata/netdata/issues/14076))
2843 +- Add workflow dispatch trigger for parent/child with cloud integration smoke tests ([#14070](https://github.com/netdata/netdata/issues/14070))
2844 +- Optimize workers statistics performance ([#14077](https://github.com/netdata/netdata/issues/14077))
2845 +- Replication fixes 9 ([#14079](https://github.com/netdata/netdata/issues/14079))
2846 +- Add basic dashboard info for NGINX Plus ([#14080](https://github.com/netdata/netdata/issues/14080))
2847 +- Fix 1.37 crashes ([#14081](https://github.com/netdata/netdata/issues/14081))
2848 +- Update workflows to use $GITHUB_OUTPUT instead of ::set-output:: ([#13960](https://github.com/netdata/netdata/issues/13960))
2849 +- Fix typo in Fedora 37 build configuration. ([#14082](https://github.com/netdata/netdata/issues/14082))
2850 +- Fix __atomic_compare_exchange_n() atomics ([#14085](https://github.com/netdata/netdata/issues/14085))
2851 +- Fix v1.37 dbengine page alignment crashes ([#14086](https://github.com/netdata/netdata/issues/14086))
2852 +- Wmi descriptions ([#14001](https://github.com/netdata/netdata/issues/14001))
2853 +- Docs: add a note to set container nofile ulimit for Fedora users ([#14092](https://github.com/netdata/netdata/issues/14092))
2854 +- Cleanly reimplement system/edit-config.in. ([#13702](https://github.com/netdata/netdata/issues/13702))
2855 +- Fix missing required package install of tar on FreeBSD ([#14095](https://github.com/netdata/netdata/issues/14095))
2856 +- Add version to netdatacli ([#14094](https://github.com/netdata/netdata/issues/14094))
2857 +- Remove deprecated methods for passing additional options to install code. ([#12943](https://github.com/netdata/netdata/issues/12943))
2858 +- Add clickhouse third party collector and install instructions ([#14021](https://github.com/netdata/netdata/issues/14021))
2859 +- Fix docker host editable config ([#14104](https://github.com/netdata/netdata/issues/14104))
2860 +- Fix health emphemerality labels src ([#14105](https://github.com/netdata/netdata/issues/14105))
2861 +- Fix minor typo. ([#14111](https://github.com/netdata/netdata/issues/14111))
2862 +- Ci: fix cgroup-parent name in packaging ([#14118](https://github.com/netdata/netdata/issues/14118))
2863 +- Remove deprecated python.d collectors announced in v1.37.0 deprecation notice ([#14072](https://github.com/netdata/netdata/issues/14072))
2864 +- Remove deprecated fping.plugin in accordance with v1.37.0 deprecation notice ([#14073](https://github.com/netdata/netdata/issues/14073))
2865 +- Add filtering options to functions table output ([#14108](https://github.com/netdata/netdata/issues/14108))
2866 +- Don't log too much about streaming connections ([#14117](https://github.com/netdata/netdata/issues/14117))
2867 +- Heartbeat: don't log every discrepancy ([#14122](https://github.com/netdata/netdata/issues/14122))
2868 +- Fix get_system_cpus() ([#14116](https://github.com/netdata/netdata/issues/14116))
2869 +- ARAL: add destroy function and optimize ifdefs ([#14121](https://github.com/netdata/netdata/issues/14121))
2870 +- Bump go.d.plugin to v0.46.0 ([#14124](https://github.com/netdata/netdata/issues/14124))
2871 +- Fix eBPF load on RH 8.x family and improve code. ([#14090](https://github.com/netdata/netdata/issues/14090))
2872 +- MQTT 5 publish topic alias support ([#14067](https://github.com/netdata/netdata/issues/14067))
2873 +- Fix httpcheck alarms ([#14133](https://github.com/netdata/netdata/issues/14133))
2874 +- Fix conditions for uploading repoconfig packages to new infra. ([#14134](https://github.com/netdata/netdata/issues/14134))
2875 +- Fix incorrect matrix parameter names in repoconfig package upload workflow.
2876 +- Remove Fedora 35 from the list of supported platforms. ([#14136](https://github.com/netdata/netdata/issues/14136))
2877 +- Expose ACLK SSL KeyLog interface for developers ([#14109](https://github.com/netdata/netdata/issues/14109))
2878 +- Use chart labels in portcheck alarms ([#14137](https://github.com/netdata/netdata/issues/14137))
2879 +- Fix(packaging): add setuid for cgroup-network and ebpf.plugin in RPM ([#14140](https://github.com/netdata/netdata/issues/14140))
2880 +- Correctly fix repoconfig package uploads.
2881 +- Really, truly fix the repoconfig package upload process.
2882 +- Revert "MQTT 5 publish topic alias support" ([#14145](https://github.com/netdata/netdata/issues/14145))
2883 +- Disable integration by default (eBPF <-> APPS) ([#14147](https://github.com/netdata/netdata/issues/14147))
2884 +- Bump go.d.plugin to v0.46.1 ([#14151](https://github.com/netdata/netdata/issues/14151))
2885 +- Populate field values in send_slack() for Mattermost ([#14153](https://github.com/netdata/netdata/issues/14153))
2886 +- Add a health configuration option of what alarms to load ([#14150](https://github.com/netdata/netdata/issues/14150))
2887 +- Switch to self-hosted infrastructure for RPM package distribution. ([#14100](https://github.com/netdata/netdata/issues/14100))
2888 +- Document memory mode alloc ([#14142](https://github.com/netdata/netdata/issues/14142))
2889 +- Support HTTP proxy Basic auth ([#13762](https://github.com/netdata/netdata/issues/13762))
2890 +- Fix nodejs app detection ([#14156](https://github.com/netdata/netdata/issues/14156))
2891 +- Fix race on query thread startup ([#14164](https://github.com/netdata/netdata/issues/14164))
2892 +- Refactor ML code and add support for multiple KMeans models. ([#14065](https://github.com/netdata/netdata/issues/14065))
2893 +- Add tkatsoulas as a codeowner for documentation. ([#14169](https://github.com/netdata/netdata/issues/14169))
2894 +- Finish switch to self-hosted RPM repositories. ([#14158](https://github.com/netdata/netdata/issues/14158))
2895 +- Minor - fix localhost nodeinstance fnc caps ([#14166](https://github.com/netdata/netdata/issues/14166))
2896 +- Fix a typo in debian postinst ([#14171](https://github.com/netdata/netdata/issues/14171))
2897 +- Revert "Refactor ML code and add support for multiple KMeans models. … ([#14172](https://github.com/netdata/netdata/issues/14172))
2898 +- Ensure --claim-url for the claim script is a URL ([#14160](https://github.com/netdata/netdata/issues/14160))
2899 +- Minor - Adds query type "function[s]" for aclk chart ([#14165](https://github.com/netdata/netdata/issues/14165))
2900 +- Feat(packaging): add netdata to www-data group on Proxmox ([#14168](https://github.com/netdata/netdata/issues/14168))
2901 +- Docs: explicitly set the `nofile` limit for Netdata container and document the reason for this ([#14178](https://github.com/netdata/netdata/issues/14178))
2902 +- Add alarms and dashboard info for Consul ([#14163](https://github.com/netdata/netdata/issues/14163))
2903 +- Use specific charts labels instead of family in alarms ([#14173](https://github.com/netdata/netdata/issues/14173))
2904 +- Remove interface name from cgroup net family ([#14174](https://github.com/netdata/netdata/issues/14174))
2905 +- Bump go.d.plugin to v0.47.0 ([#14182](https://github.com/netdata/netdata/issues/14182))
2906 +- Fix logrotate postrotate ([#14180](https://github.com/netdata/netdata/issues/14180))
2907 +- Add compatibility links for RHEL repos. ([#14176](https://github.com/netdata/netdata/issues/14176))
2908 +- Add `telegraf` to `apps_groups.conf` monitoring section ([#14188](https://github.com/netdata/netdata/issues/14188))
2909 +- Bump go.d.plugin to v0.48.0 ([#14195](https://github.com/netdata/netdata/issues/14195))
2910 +- EBPF (memory, NV, basis for functions) ([#14131](https://github.com/netdata/netdata/issues/14131))
2911 +- Switch to actions/labeler@v4 for labeling PRs. ([#14203](https://github.com/netdata/netdata/issues/14203))
2912 +- Finish renaming the `--install` option to `--install-prefix`. ([#13881](https://github.com/netdata/netdata/issues/13881))
2913 +- Refactor ML code and add support for multiple KMeans models ([#14198](https://github.com/netdata/netdata/issues/14198))
2914 +- Fix typos ([#14194](https://github.com/netdata/netdata/issues/14194))
2915 +- Dont call worker_utilization_finish() twice ([#14204](https://github.com/netdata/netdata/issues/14204))
2916 +- Create ML charts on child hosts. ([#14207](https://github.com/netdata/netdata/issues/14207))
2917 +- Fix docker builds ([#14211](https://github.com/netdata/netdata/issues/14211))
2918 +- Use brackets around info variables ([#14206](https://github.com/netdata/netdata/issues/14206))
2919 +- Add few alarms for elasticsearch ([#14197](https://github.com/netdata/netdata/issues/14197))
2920 +- Remove lgtm.com ([#14216](https://github.com/netdata/netdata/issues/14216))
2921 +- Bump go.d v0.49.0 ([#14220](https://github.com/netdata/netdata/issues/14220))
2922 +- MQTT5 Topic Alias ([#14148](https://github.com/netdata/netdata/issues/14148))
2923 +- Fix consul_raft_leadership_transitions alarm units ([#14232](https://github.com/netdata/netdata/issues/14232))
2924 +- Ci: show docker logs if docker-test fails ([#14219](https://github.com/netdata/netdata/issues/14219))
2925 +- Drop ARMv7 native packages for Fedora 36. ([#14233](https://github.com/netdata/netdata/issues/14233))
2926 +- DBENGINE v2 ([#14125](https://github.com/netdata/netdata/issues/14125))
2927 +- Pre gcc v5 support and allow building without dbengine ([#14239](https://github.com/netdata/netdata/issues/14239))
2928 +- Cancel ml threads on shutdown and join them on host free ([#14240](https://github.com/netdata/netdata/issues/14240))
2929 +- `ml - machine learning` to just `machine learning` ([#14242](https://github.com/netdata/netdata/issues/14242))
2930 +- Profile startup and shutdown timings ([#14243](https://github.com/netdata/netdata/issues/14243))
2931 +- Allow the cache to grow when huge queries are running that exceed the cache size ([#14247](https://github.com/netdata/netdata/issues/14247))
2932 +- Rename "Pid" to "PID" in functions ([#14144](https://github.com/netdata/netdata/issues/14144))
2933 +- Remove temporary allocations when preprocessing a samples buffer ([#14208](https://github.com/netdata/netdata/issues/14208))
2934 +- Fix kickstart download counter badges in documentation. ([#14246](https://github.com/netdata/netdata/issues/14246))
2935 +- Update handling of uploads of DEB packages to our new infrastructure. ([#14253](https://github.com/netdata/netdata/issues/14253))
2936 +- Update netdata-overview.xml ([#14245](https://github.com/netdata/netdata/issues/14245))
2937 +- DBENGINE v2 - improvements part 1 ([#14251](https://github.com/netdata/netdata/issues/14251))
2938 +- Fix(proc.plugin): handle disabled IPv6 ([#14252](https://github.com/netdata/netdata/issues/14252))
2939 +- Remove daemon/common.h header from libnetdata ([#14248](https://github.com/netdata/netdata/issues/14248))
2940 +- Always mark nightly build releases as latest. ([#14261](https://github.com/netdata/netdata/issues/14261))
2941 +- Enable retries for SSL_ERROR_WANT_READ ([#14120](https://github.com/netdata/netdata/issues/14120))
2942 +- Fix binpkg updates on OpenSUSE ([#14260](https://github.com/netdata/netdata/issues/14260))
2943 +- Chore(packaging): remove python-pymongo ([#14196](https://github.com/netdata/netdata/issues/14196))
2944 +- DBENGINE v2 - improvements 2 ([#14257](https://github.com/netdata/netdata/issues/14257))
2945 +- Fix(health): don't assume 2 cores if the number is unknown ([#14265](https://github.com/netdata/netdata/issues/14265))
2946 +- More 32bit fixes ([#14264](https://github.com/netdata/netdata/issues/14264))
2947 +- Skip cross-platform validation when preparing releases. ([#14268](https://github.com/netdata/netdata/issues/14268))
2948 +- Adds some introspection into the MQTT_WSS ([#14039](https://github.com/netdata/netdata/issues/14039))
2949 +- Fix(pacakging): fix cpu/memory metrics when running inside LXC container as systemd service ([#14255](https://github.com/netdata/netdata/issues/14255))
2950 +- Switch nightlies to GitHub releases. ([#14020](https://github.com/netdata/netdata/issues/14020))
2951 +- Bump go.d.plugin to v0.49.1 ([#14275](https://github.com/netdata/netdata/issues/14275))
2952 +- Replace individual collector images/links on infographic ([#14262](https://github.com/netdata/netdata/issues/14262))
2953 +- Set an explicit timeout in updater checks. ([#14273](https://github.com/netdata/netdata/issues/14273))
2954 +- Fix conditional in matrix generation for packaging jobs. ([#14274](https://github.com/netdata/netdata/issues/14274))
2955 +- Minor - add kaitaistruct for journal v2 files ([#14267](https://github.com/netdata/netdata/issues/14267))
2956 +- Update infographic image on main README ([#14276](https://github.com/netdata/netdata/issues/14276))
2957 +- Check session variable before resuming it ([#14279](https://github.com/netdata/netdata/issues/14279))
2958 +- Readme updates ([#14224](https://github.com/netdata/netdata/issues/14224))
2959 +- Make sure variables are streamed after SENDER_CONNECTED flag is set ([#14283](https://github.com/netdata/netdata/issues/14283))
2960 +- Store host and claim info in sqlite as soon as possible ([#14263](https://github.com/netdata/netdata/issues/14263))
2961 +- DBENGINE v2 - improvements part 3 ([#14269](https://github.com/netdata/netdata/issues/14269))
2962 +- Fix for dbengine2 improvements part 3 ([#14284](https://github.com/netdata/netdata/issues/14284))
2963 +- DBENGINE v2 - improvements part 4 ([#14285](https://github.com/netdata/netdata/issues/14285))
2964 +- Revert health to run in a single thread ([#14244](https://github.com/netdata/netdata/issues/14244))
2965 +- Fix(alarms): treat 0 processors as unknown in load_cpu_number ([#14286](https://github.com/netdata/netdata/issues/14286))
2966 +- Allow multiple local-build/static-install options in kickstart ([#14287](https://github.com/netdata/netdata/issues/14287))
2967 +- DBENGINE v2 - improvements part 5 ([#14289](https://github.com/netdata/netdata/issues/14289))
2968 +- Improve file descriptor closing loops ([#14213](https://github.com/netdata/netdata/issues/14213))
2969 +- Remove archivedcharts endpoint, optimize indices ([#14296](https://github.com/netdata/netdata/issues/14296))
2970 +- Fix macos struct definition. ([#14297](https://github.com/netdata/netdata/issues/14297))
2971 +- Track memory footprint of Netdata ([#14294](https://github.com/netdata/netdata/issues/14294))
2972 +- Update to SQLITE version 3.40.1 ([#14282](https://github.com/netdata/netdata/issues/14282))
2973 +- Switch to self-hosted infrastructure for DEB package distribution. ([#14290](https://github.com/netdata/netdata/issues/14290))
2974 +- Fix build CI jobs. ([#14302](https://github.com/netdata/netdata/issues/14302))
2975 +- Add consul license expiration time alarm ([#14298](https://github.com/netdata/netdata/issues/14298))
2976 +- Bump go.d.plugin to v0.49.2 ([#14305](https://github.com/netdata/netdata/issues/14305))
2977 +- Fixes required to make the agent work without crashes on MacOS ([#14304](https://github.com/netdata/netdata/issues/14304))
2978 +- Fix Exporiting compilaton error ([#14306](https://github.com/netdata/netdata/issues/14306))
2979 +- DBENGINE v2 - improvements part 6 ([#14299](https://github.com/netdata/netdata/issues/14299))
2980 +- Update kickstart script to use new DEB infrastructure. ([#14301](https://github.com/netdata/netdata/issues/14301))
2981 +- Remove mqtt-c from websockets ([#14181](https://github.com/netdata/netdata/issues/14181))
2982 +- DBENGINE v2 - improvements part 7 ([#14307](https://github.com/netdata/netdata/issues/14307))
2983 +- DBENGINE v2 - improvements part 8 ([#14319](https://github.com/netdata/netdata/issues/14319))
2984 +- Fix up codeowners based on recent staffing changes. ([#14320](https://github.com/netdata/netdata/issues/14320))
2985 +- Fix(proc.plugin): add "cpu" label to per core util% charts ([#14322](https://github.com/netdata/netdata/issues/14322))
2986 +- Minor - kaitai for netdata datafiles ([#14312](https://github.com/netdata/netdata/issues/14312))
2987 +- Misc SSL improvements ([#14317](https://github.com/netdata/netdata/issues/14317))
2988 +- Introduce the new Structure of the documentation ([#13915](https://github.com/netdata/netdata/issues/13915))
2989 +- Assorted infrastructure cleanup. ([#14223](https://github.com/netdata/netdata/issues/14223))
2990 +- Revert "Misc SSL improvements" ([#14327](https://github.com/netdata/netdata/issues/14327))
2991 +- Add Collector log ([#14309](https://github.com/netdata/netdata/issues/14309))
2992 +- DBENGINE v2 - improvements part 9 ([#14326](https://github.com/netdata/netdata/issues/14326))
2993 +- Add |nowarn and |noclear notification modifiers ([#14330](https://github.com/netdata/netdata/issues/14330))
2994 +- DBENGINE v2 - improvements part 10 ([#14332](https://github.com/netdata/netdata/issues/14332))
2995 +- Use "getent group" instead of reading "/etc/group" to get group information ([#14316](https://github.com/netdata/netdata/issues/14316))
2996 +- Improve ebpf exit ([#14270](https://github.com/netdata/netdata/issues/14270))
2997 +- Minor fix on notification doc (Discord) ([#14339](https://github.com/netdata/netdata/issues/14339))
2998 +- Delete BUILD.md ([#14348](https://github.com/netdata/netdata/issues/14348))
2999 +- Update functions documents ([#14331](https://github.com/netdata/netdata/issues/14331))
3000 +- Add libnetdata readmes to learn, delete empty ([#14371](https://github.com/netdata/netdata/issues/14371))
3001 +- Add ansible.md to learn ([#14350](https://github.com/netdata/netdata/issues/14350))
3002 +- Delete BREAKING_CHANGES.md ([#14353](https://github.com/netdata/netdata/issues/14353))
3003 +- Delete data structures readme ([#14354](https://github.com/netdata/netdata/issues/14354))
3004 +- Delete QUICKSTART.md ([#14355](https://github.com/netdata/netdata/issues/14355))
3005 +- Add main health readme to learn ([#14356](https://github.com/netdata/netdata/issues/14356))
3006 +- Delete libnetdata readme ([#14357](https://github.com/netdata/netdata/issues/14357))
3007 +- Add redistributed doc into learn ([#14352](https://github.com/netdata/netdata/issues/14352))
3008 +- Revert "Add libnetdata readmes to learn, delete empty" ([#14373](https://github.com/netdata/netdata/issues/14373))
3009 +- Add explanation of config files to learn ([#14360](https://github.com/netdata/netdata/issues/14360))
3010 +- Add dictionary readme to learn ([#14361](https://github.com/netdata/netdata/issues/14361))
3011 +- Add BUFFER lib doc to learn ([#14362](https://github.com/netdata/netdata/issues/14362))
3012 +- Add ARL readme to learn ([#14363](https://github.com/netdata/netdata/issues/14363))
3013 +- Add July README to learn ([#14364](https://github.com/netdata/netdata/issues/14364))
3014 +- Add one way allocator readme to learn ([#14365](https://github.com/netdata/netdata/issues/14365))
3015 +- Add simple patterns readme to learn ([#14366](https://github.com/netdata/netdata/issues/14366))
3016 +- Add collectors list to learn temporarily ([#14369](https://github.com/netdata/netdata/issues/14369))
3017 +- Add collectors main readme to learn ([#14370](https://github.com/netdata/netdata/issues/14370))
3018 +- Revert "Delete libnetdata readme" ([#14374](https://github.com/netdata/netdata/issues/14374))
3019 +- Update the Get started doc ([#14336](https://github.com/netdata/netdata/issues/14336))
3020 +- Patch master ([#14377](https://github.com/netdata/netdata/issues/14377))
3021 +- DBENGINE v2 - improvements part 11 ([#14337](https://github.com/netdata/netdata/issues/14337))
3022 +- Bump go.d.plugin v0.50.0 ([#14378](https://github.com/netdata/netdata/issues/14378))
3023 +- Add missing entries in README.md ([#14351](https://github.com/netdata/netdata/issues/14351))
3024 +- Publish Docker images to GHCR.io and Quay.io ([#14372](https://github.com/netdata/netdata/issues/14372))
3025 +- Fix publishing Docker Images to secondary registries. ([#14389](https://github.com/netdata/netdata/issues/14389))
3026 +- Update the notifications/integrations docs ([#14335](https://github.com/netdata/netdata/issues/14335))
3027 +- Fix typo on the page ([#14397](https://github.com/netdata/netdata/issues/14397))
3028 +- Fix typos in Docker debug image tags. ([#14400](https://github.com/netdata/netdata/issues/14400))
3029 +- Remove equality when deciding how to use point ([#14402](https://github.com/netdata/netdata/issues/14402))
3030 +- Add nvidia smi pci bandwidth percent collector ([#14315](https://github.com/netdata/netdata/issues/14315))
3031 +- Don't send alert variables to the cloud ([#14325](https://github.com/netdata/netdata/issues/14325))
3032 +- Fix link to ebpf collector ([#14405](https://github.com/netdata/netdata/issues/14405))
3033 +- DBENGINE v2 - improvements part 12 ([#14379](https://github.com/netdata/netdata/issues/14379))
3034 +- Feat(charts.d): add load usage (Watts) to nuts collector ([#14407](https://github.com/netdata/netdata/issues/14407))
3035 +- Covert our documentation links to GH absolute links ([#14344](https://github.com/netdata/netdata/issues/14344))
3036 +- Fix(cgroups.plugin): fix collecting full pressure stall time ([#14410](https://github.com/netdata/netdata/issues/14410))
3037 +- DBENGINE v2 - bug fixes ([#14413](https://github.com/netdata/netdata/issues/14413))
3038 +- Fix kickstart and updater not working with BusyBox wget ([#14392](https://github.com/netdata/netdata/issues/14392))
3039 +- Fix kubelet alarms ([#14414](https://github.com/netdata/netdata/issues/14414))
3040 +- Minor fixes for markdown links ([#14415](https://github.com/netdata/netdata/issues/14415))
3041 +- Update dashboard ([#14342](https://github.com/netdata/netdata/issues/14342))
3042 +- Add help line to functions response ([#14399](https://github.com/netdata/netdata/issues/14399))
3043 +- Fix functions memory leak ([#14419](https://github.com/netdata/netdata/issues/14419))
3044 +- Better logging of invalid pages detected on dbengine files ([#14420](https://github.com/netdata/netdata/issues/14420))
3045 +- Reduce service exit ([#14381](https://github.com/netdata/netdata/issues/14381))
3046 +- Update screenshot of timezone selector ([#14425](https://github.com/netdata/netdata/issues/14425))
3047 +- Move under Developer in Learn ([#14417](https://github.com/netdata/netdata/issues/14417))
3048 +- Libnetdata readmes learn ([#14416](https://github.com/netdata/netdata/issues/14416))
3049 +- Fix typo on the netdata-functions.md ([#14426](https://github.com/netdata/netdata/issues/14426))
3050 +- Stop training thread from processing training requests once cancelled. ([#14423](https://github.com/netdata/netdata/issues/14423))
3051 +- Check on parents the microseconds delta sent by agents ([#14422](https://github.com/netdata/netdata/issues/14422))
3052 +- Turn error() to internal_error() ([#14428](https://github.com/netdata/netdata/issues/14428))
3053 +- Updated w1sensor.chart.py ([#14435](https://github.com/netdata/netdata/issues/14435))
3054 +- Replication to streaming transition when there are gaps ([#14434](https://github.com/netdata/netdata/issues/14434))
3055 +
3056 +## [1.37.0] - 2022-11-30
3057 +
3058 +### Merged Pull Requests:
3059 +
3060 +- Calculate name hash after rrdvar_fix_name ([#13509](https://github.com/netdata/netdata/issues/13509))
3061 +- Fix(packaging): add CAP_NET_ADMIN for go.d.plugin ([#13507](https://github.com/netdata/netdata/issues/13507))
3062 +- Chore(python.d): remove python.d/* announced in v1.36.0 deprecation notice ([#13503](https://github.com/netdata/netdata/issues/13503))
3063 +- Print rrdcontexts versions with PRIu64 ([#13511](https://github.com/netdata/netdata/issues/13511))
3064 +- Modify PID monitoring (ebpf.plugin) ([#13397](https://github.com/netdata/netdata/issues/13397))
3065 +- Remove extra U from log message ([#13514](https://github.com/netdata/netdata/issues/13514))
3066 +- Docs: add some tips on collecting per-queue metrics for RabbitMQ ([#12227](https://github.com/netdata/netdata/issues/12227))
3067 +- Docs(postfix): add a note about `authorized_mailq_users` ([#13515](https://github.com/netdata/netdata/issues/13515))
3068 +- Fix(ci): fix fetching tags in Build workflow ([#13517](https://github.com/netdata/netdata/issues/13517))
3069 +- Reduce memcpy and memory usage on mqtt5 ([#13450](https://github.com/netdata/netdata/issues/13450))
3070 +- Netdata.service: Update PIDFile to avoid systemd legacy path warning ([#13504](https://github.com/netdata/netdata/issues/13504))
3071 +- Remove reference to charts now in netdata monitoring ([#13521](https://github.com/netdata/netdata/issues/13521))
3072 +- Support chart labels in alerts ([#13290](https://github.com/netdata/netdata/issues/13290))
3073 +- Use LVM UUIDs in chart ids for logical volumes ([#13525](https://github.com/netdata/netdata/issues/13525))
3074 +- Update FreeIPMI and CUPS plugin documentation. ([#13526](https://github.com/netdata/netdata/issues/13526))
3075 +- Fix(cgroups.plugin): use Docker API for name resolution when Docker is a snap package ([#13523](https://github.com/netdata/netdata/issues/13523))
3076 +- Fix(health): set default curl connection timeout if not set ([#13529](https://github.com/netdata/netdata/issues/13529))
3077 +- Schedule next rotation based on absolute time ([#13531](https://github.com/netdata/netdata/issues/13531))
3078 +- Add `jupyter` to `apps_groups.conf` ([#13533](https://github.com/netdata/netdata/issues/13533))
3079 +- Add summary dashboard for PostgreSQL ([#13534](https://github.com/netdata/netdata/issues/13534))
3080 +- Chore(python.d): rename dockerd job on lock registration ([#13537](https://github.com/netdata/netdata/issues/13537))
3081 +- Bump go.d version to v0.36.0 ([#13538](https://github.com/netdata/netdata/issues/13538))
3082 +- Update MacOS community support details ([#13536](https://github.com/netdata/netdata/issues/13536))
3083 +- Bump Coverity version to latest (2022.06). ([#13541](https://github.com/netdata/netdata/issues/13541))
3084 +- Cleanup of APIs ([#13539](https://github.com/netdata/netdata/issues/13539))
3085 +- Fix telegram-bot rate limit ([#13119](https://github.com/netdata/netdata/issues/13119))
3086 +- Fix a crash when xen libraries are misconfigured ([#13535](https://github.com/netdata/netdata/issues/13535))
3087 +- Bump go.d.plugin to v0.37.0 ([#13546](https://github.com/netdata/netdata/issues/13546))
3088 +- Add docker dashboard info ([#13547](https://github.com/netdata/netdata/issues/13547))
3089 +- Fix coverity 380387 ([#13551](https://github.com/netdata/netdata/issues/13551))
3090 +- Bump go.d.plugin to v0.37.1 ([#13555](https://github.com/netdata/netdata/issues/13555))
3091 +- Feat(python.d/sensors): discover chips, features at runtime ([#13545](https://github.com/netdata/netdata/issues/13545))
3092 +- Improve PID monitoring (step 2) ([#13530](https://github.com/netdata/netdata/issues/13530))
3093 +- Prefer context attributes from non archived charts ([#13559](https://github.com/netdata/netdata/issues/13559))
3094 +- Update dashboard to version v2.28.6. ([#13562](https://github.com/netdata/netdata/issues/13562))
3095 +- Fix(health.d/mysql): adjust `mysql_galera_cluster_size_max_2m` lookup to make time in warn/crit predictable ([#13563](https://github.com/netdata/netdata/issues/13563))
3096 +- Remove aclk_api.[ch] ([#13540](https://github.com/netdata/netdata/issues/13540))
3097 +- Add more monitoring tools to `apps_groups.conf` ([#13566](https://github.com/netdata/netdata/issues/13566))
3098 +- Chore: removing logging that a chart collection in the same interpolation point ([#13567](https://github.com/netdata/netdata/issues/13567))
3099 +- Minor - eBPF cmake missing include dir ([#13568](https://github.com/netdata/netdata/issues/13568))
3100 +- Add `apt` to `apps_groups.conf` ([#13571](https://github.com/netdata/netdata/issues/13571))
3101 +- Bump go.d.plugin to v0.37.2 ([#13574](https://github.com/netdata/netdata/issues/13574))
3102 +- Updating info for postgreqsql metrics ([#13573](https://github.com/netdata/netdata/issues/13573))
3103 +- Prevent crash on rrdcontext apis when rrdcontexts is not initialized ([#13578](https://github.com/netdata/netdata/issues/13578))
3104 +- Fix(python.d/nvidia_smi): repsect update_every for polling ([#13579](https://github.com/netdata/netdata/issues/13579))
3105 +- Feat(python.d/nvidia_smi): collect power state ([#13580](https://github.com/netdata/netdata/issues/13580))
3106 +- Sqlite3 global statistics ([#13594](https://github.com/netdata/netdata/issues/13594))
3107 +- Add link to the performance optimization guide ([#13595](https://github.com/netdata/netdata/issues/13595))
3108 +- Update logind dashboard info ([#13597](https://github.com/netdata/netdata/issues/13597))
3109 +- Fix(cgroups.plugin): fix chart id length check ([#13601](https://github.com/netdata/netdata/issues/13601))
3110 +- Bump go.d.plugin to v0.38.0 ([#13603](https://github.com/netdata/netdata/issues/13603))
3111 +- Temporary fix for command injection vulnerability in GHA workflow. ([#13600](https://github.com/netdata/netdata/issues/13600))
3112 +- Add info text for wal and update for checkpoints ([#13607](https://github.com/netdata/netdata/issues/13607))
3113 +- Don't try to load db rows when chart_id or dim_id is null ([#13608](https://github.com/netdata/netdata/issues/13608))
3114 +- Update dashboard to version v2.28.8. ([#13609](https://github.com/netdata/netdata/issues/13609))
3115 +- Use prepared statements for context related queries ([#13602](https://github.com/netdata/netdata/issues/13602))
3116 +- Improve coverage of Linux kernel threads in apps_groups.conf ([#13612](https://github.com/netdata/netdata/issues/13612))
3117 +- Add spiceproxy to proxmox group ([#13615](https://github.com/netdata/netdata/issues/13615))
3118 +- Update Postgres "connections" dashboard info ([#13619](https://github.com/netdata/netdata/issues/13619))
3119 +- Add Postgres total connection utilization alarm ([#13620](https://github.com/netdata/netdata/issues/13620))
3120 +- Fix apps plugin users charts descriptipon ([#13621](https://github.com/netdata/netdata/issues/13621))
3121 +- Assorted updates for apps_groups.conf. ([#13618](https://github.com/netdata/netdata/issues/13618))
3122 +- Clean chart hash map ([#13611](https://github.com/netdata/netdata/issues/13611))
3123 +- Deduplicate all netdata strings ([#13570](https://github.com/netdata/netdata/issues/13570))
3124 +- Faster rrdcontext ([#13629](https://github.com/netdata/netdata/issues/13629))
3125 +- Remove forgotten avl structure from rrdcalc ([#13632](https://github.com/netdata/netdata/issues/13632))
3126 +- Fix worker utilization cleanup ([#13633](https://github.com/netdata/netdata/issues/13633))
3127 +- Obsolete RRDSET state ([#13635](https://github.com/netdata/netdata/issues/13635))
3128 +- Updated tc.plugin (linux bandwidth QoS) ([#13634](https://github.com/netdata/netdata/issues/13634))
3129 +- Fix compile issues ([#13640](https://github.com/netdata/netdata/issues/13640))
3130 +- Deaggregate the `gui` and `email` app groupx and improve GUI coverage. ([#13631](https://github.com/netdata/netdata/issues/13631))
3131 +- Apps.plugin: Re-add `chrome` to the `webbrowser` group. ([#13642](https://github.com/netdata/netdata/issues/13642))
3132 +- EBPF different improvements ([#13624](https://github.com/netdata/netdata/issues/13624))
3133 +- Fix rrdcontexts left in the post-processing queue from the garbage collector ([#13645](https://github.com/netdata/netdata/issues/13645))
3134 +- Fix a memory leak on archived host creation ([#13641](https://github.com/netdata/netdata/issues/13641))
3135 +- Add _collect_job label to python.d/* charts ([#13648](https://github.com/netdata/netdata/issues/13648))
3136 +- Improve agent shutdown time ([#13649](https://github.com/netdata/netdata/issues/13649))
3137 +- Do not free AR dimensions from within ML. ([#13651](https://github.com/netdata/netdata/issues/13651))
3138 +- CMake improvements part 1 ([#13575](https://github.com/netdata/netdata/issues/13575))
3139 +- Fix container virtualization info ([#13653](https://github.com/netdata/netdata/issues/13653))
3140 +- Update dashboard to version v2.29.0. ([#13654](https://github.com/netdata/netdata/issues/13654))
3141 +- Use mmap if possible during startup for journal replay ([#13660](https://github.com/netdata/netdata/issues/13660))
3142 +- Bump go.d.plugin to v0.39.0 ([#13662](https://github.com/netdata/netdata/issues/13662))
3143 +- Update Postgres dashboard info ([#13661](https://github.com/netdata/netdata/issues/13661))
3144 +- Adjust systemdunits alarms ([#13623](https://github.com/netdata/netdata/issues/13623))
3145 +- Add sqlite page cache hit and miss statistics ([#13665](https://github.com/netdata/netdata/issues/13665))
3146 +- Advance the buffer properly to scan the journal file ([#13666](https://github.com/netdata/netdata/issues/13666))
3147 +- Additional sqlite statistics ([#13668](https://github.com/netdata/netdata/issues/13668))
3148 +- Add proxysql dashboard info ([#13669](https://github.com/netdata/netdata/issues/13669))
3149 +- Fix typo not deleting collected flag; force removing collected flag on child disconnect ([#13672](https://github.com/netdata/netdata/issues/13672))
3150 +- Remove _instance_family label ([#13674](https://github.com/netdata/netdata/issues/13674))
3151 +- Feat(health): add Postgres alarms ([#13671](https://github.com/netdata/netdata/issues/13671))
3152 +- Bump go.d.plugin v0.40.0 ([#13675](https://github.com/netdata/netdata/issues/13675))
3153 +- RRD structures managed by dictionaries ([#13646](https://github.com/netdata/netdata/issues/13646))
3154 +- Disable internal log ([#13678](https://github.com/netdata/netdata/issues/13678))
3155 +- Dictionary updated documentation and cosmetics ([#13679](https://github.com/netdata/netdata/issues/13679))
3156 +- Store nulls instead of empty strings in health tables ([#13683](https://github.com/netdata/netdata/issues/13683))
3157 +- Add a document outlining how to build native packages locally. ([#12431](https://github.com/netdata/netdata/issues/12431))
3158 +- Docs: nvidia-smi in a container limitation note ([#13695](https://github.com/netdata/netdata/issues/13695))
3159 +- Update dashboard to version v2.29.1. ([#13696](https://github.com/netdata/netdata/issues/13696))
3160 +- Update uninstaller documentation. ([#13627](https://github.com/netdata/netdata/issues/13627))
3161 +- Disable Postgres last vacuum/analyze alarms ([#13698](https://github.com/netdata/netdata/issues/13698))
3162 +- Fix inconsistent alert class names ([#13699](https://github.com/netdata/netdata/issues/13699))
3163 +- Alarms collector: ability to exclude certain alarms via config ([#13701](https://github.com/netdata/netdata/issues/13701))
3164 +- Build judy even without dbengine ([#13703](https://github.com/netdata/netdata/issues/13703))
3165 +- Bump go.d.plugin to v0.40.1 ([#13704](https://github.com/netdata/netdata/issues/13704))
3166 +- Do not create train/predict dimensions meant for tracking anomaly rates. ([#13707](https://github.com/netdata/netdata/issues/13707))
3167 +- Specify paths to source files for out-of-tree build. ([#11475](https://github.com/netdata/netdata/issues/11475))
3168 +- Feat(health): add new Redis alarms ([#13715](https://github.com/netdata/netdata/issues/13715))
3169 +- Faster streaming by 25% on the child ([#13708](https://github.com/netdata/netdata/issues/13708))
3170 +- Update exporting unit tests ([#13706](https://github.com/netdata/netdata/issues/13706))
3171 +- Use CMake generated config.h also in out of tree CMake build ([#13692](https://github.com/netdata/netdata/issues/13692))
3172 +- Do not try to start an archived host in dbengine if dbengine is not compiled ([#13724](https://github.com/netdata/netdata/issues/13724))
3173 +- Fix warnings during compilation time on ARM (32 bits) ([#13681](https://github.com/netdata/netdata/issues/13681))
3174 +- Remove Chart/Dim based communication ([#13650](https://github.com/netdata/netdata/issues/13650))
3175 +- CMake - add possibility to build without ACLK ([#13736](https://github.com/netdata/netdata/issues/13736))
3176 +- Change cast to remove coverity warnings ([#13735](https://github.com/netdata/netdata/issues/13735))
3177 +- Dont send NodeInfo during first database cleanup ([#13740](https://github.com/netdata/netdata/issues/13740))
3178 +- Fix handling of temporary directories in kickstart code. ([#13744](https://github.com/netdata/netdata/issues/13744))
3179 +- Fix(python.d): set correct label source for _collect_job label ([#13746](https://github.com/netdata/netdata/issues/13746))
3180 +- Bump go.d v0.40.2 ([#13747](https://github.com/netdata/netdata/issues/13747))
3181 +- Add info for Docker containers about using hostname from host. ([#13685](https://github.com/netdata/netdata/issues/13685))
3182 +- Provide Details on Label Filtering/Custom Labels ([#13745](https://github.com/netdata/netdata/issues/13745))
3183 +- Fix streaming crash when child reconnects and is archived on the parent ([#13754](https://github.com/netdata/netdata/issues/13754))
3184 +- Add node level AR based example ([#13684](https://github.com/netdata/netdata/issues/13684))
3185 +- Add CloudLinux OS detection to kickstart ([#13750](https://github.com/netdata/netdata/issues/13750))
3186 +- Add CloudLinux OS detection to the updater script ([#13752](https://github.com/netdata/netdata/issues/13752))
3187 +- Add ZFS rate charts ([#13757](https://github.com/netdata/netdata/issues/13757))
3188 +- Use /bin/sh instead of ls to detect glibc ([#13758](https://github.com/netdata/netdata/issues/13758))
3189 +- Add 1m delay for tcp reset alarms ([#13761](https://github.com/netdata/netdata/issues/13761))
3190 +- Remove anomaly detector ([#13657](https://github.com/netdata/netdata/issues/13657))
3191 +- Allow netdata plugins to expose functions for querying more information about specific charts ([#13720](https://github.com/netdata/netdata/issues/13720))
3192 +- Fix bad merge ([#13764](https://github.com/netdata/netdata/issues/13764))
3193 +- Overhaul handling of installation of Netdata as a system service. ([#13451](https://github.com/netdata/netdata/issues/13451))
3194 +- Bump go.d.plugin v0.40.3 ([#13771](https://github.com/netdata/netdata/issues/13771))
3195 +- Rename variable for old CentOS version ([#13775](https://github.com/netdata/netdata/issues/13775))
3196 +- Bump websockets submodule ([#13776](https://github.com/netdata/netdata/issues/13776))
3197 +- Feat: disable cloud if `NETDATA_DISABLE_CLOUD` is set to 1 ([#13106](https://github.com/netdata/netdata/issues/13106))
3198 +- Remove extern from function declared in headers. ([#13790](https://github.com/netdata/netdata/issues/13790))
3199 +- Allow netdata installer to install and run netdata as any user ([#13780](https://github.com/netdata/netdata/issues/13780))
3200 +- Full memory tracking and profiling of Netdata Agent ([#13789](https://github.com/netdata/netdata/issues/13789))
3201 +- Initialize st->rrdvars from rrdset insert callback ([#13786](https://github.com/netdata/netdata/issues/13786))
3202 +- Array Allocator Memory Leak Fix ([#13792](https://github.com/netdata/netdata/issues/13792))
3203 +- Feat(python.d): respect NETDATA_INTERNALS_MONITORING ([#13793](https://github.com/netdata/netdata/issues/13793))
3204 +- Update libbpf 1.0.1 ([#13778](https://github.com/netdata/netdata/issues/13778))
3205 +- Parser cleanup ([#13782](https://github.com/netdata/netdata/issues/13782))
3206 +- Stop pulling in netcat as a mandatory dependency. ([#13787](https://github.com/netdata/netdata/issues/13787))
3207 +- Also enable rrdvars from health ([#13795](https://github.com/netdata/netdata/issues/13795))
3208 +- Return memory freed properly ([#13799](https://github.com/netdata/netdata/issues/13799))
3209 +- Use string_freez instead of freez in rrdhost_init_timezone ([#13798](https://github.com/netdata/netdata/issues/13798))
3210 +- Fix minor typo in systemdunits.conf alert ([#13796](https://github.com/netdata/netdata/issues/13796))
3211 +- Internal log error, when passing NULL dictionary ([#13803](https://github.com/netdata/netdata/issues/13803))
3212 +- ARAL optimal alloc size ([#13804](https://github.com/netdata/netdata/issues/13804))
3213 +- Minor - add host labels for ephemerality and nodes with unstable connections ([#13784](https://github.com/netdata/netdata/issues/13784))
3214 +- Add Ubuntu 22.10 to supported distros, CI, and package builds. ([#13785](https://github.com/netdata/netdata/issues/13785))
3215 +- Add Fedora 37 to CI and package builds. ([#13489](https://github.com/netdata/netdata/issues/13489))
3216 +- Fix warning when -Wfree-nonheap-object is used ([#13805](https://github.com/netdata/netdata/issues/13805))
3217 +- Fix post-processing of contexts ([#13807](https://github.com/netdata/netdata/issues/13807))
3218 +- Merge netstat, snmp, and snmp6 modules ([#13806](https://github.com/netdata/netdata/issues/13806))
3219 +- Bump go.d.plugin v0.40.4 ([#13808](https://github.com/netdata/netdata/issues/13808))
3220 +- Overload libc memory allocators with custom ones to trace all allocations ([#13810](https://github.com/netdata/netdata/issues/13810))
3221 +- Dbengine free from RRDSET and RRDDIM ([#13772](https://github.com/netdata/netdata/issues/13772))
3222 +- Allow disabling netdata monitoring section of the dashboard ([#13788](https://github.com/netdata/netdata/issues/13788))
3223 +- Count currently streaming senders on the localhost ([#13755](https://github.com/netdata/netdata/issues/13755))
3224 +- Fix existing install detection for FreeBSD and macOS. ([#13243](https://github.com/netdata/netdata/issues/13243))
3225 +- Update fping plugin documentation with better details about the required version. ([#13765](https://github.com/netdata/netdata/issues/13765))
3226 +- Minor - add trace alloc to buildinfo ([#13817](https://github.com/netdata/netdata/issues/13817))
3227 +- Fix exporting unit tests ([#13816](https://github.com/netdata/netdata/issues/13816))
3228 +- Fix crash on child reconnect and lost metrics ([#13821](https://github.com/netdata/netdata/issues/13821))
3229 +- Remove NFS readahead histogram ([#13819](https://github.com/netdata/netdata/issues/13819))
3230 +- Add variants of functions allowing callers to specify the time to use. ([#13791](https://github.com/netdata/netdata/issues/13791))
3231 +- Add a CodeQL analysis workflow. ([#13812](https://github.com/netdata/netdata/issues/13812))
3232 +- Extended processes function info from apps.plugin ([#13822](https://github.com/netdata/netdata/issues/13822))
3233 +- Add a thread to asynchronously process metadata updates ([#13783](https://github.com/netdata/netdata/issues/13783))
3234 +- Bump google-github-actions/setup-gcloud from 0.6.0 to 0.6.2 ([#13836](https://github.com/netdata/netdata/issues/13836))
3235 +- Bump google-github-actions/upload-cloud-storage from 0.10.2 to 0.10.4 ([#13837](https://github.com/netdata/netdata/issues/13837))
3236 +- Chore(health): rm pihole_blocklist_gravity_file_existence_state ([#13826](https://github.com/netdata/netdata/issues/13826))
3237 +- Improve error and warning messages in the kickstart script. ([#13825](https://github.com/netdata/netdata/issues/13825))
3238 +- Further improvements to the new service installation code. ([#13774](https://github.com/netdata/netdata/issues/13774))
3239 +- Add PR labels to force running Reviewdog checks. ([#13818](https://github.com/netdata/netdata/issues/13818))
3240 +- Inject costallocz to mqtt_websockets library and its children ([#13813](https://github.com/netdata/netdata/issues/13813))
3241 +- Fix service installation on FreeBSD. ([#13842](https://github.com/netdata/netdata/issues/13842))
3242 +- Fix tiers update frequency ([#13844](https://github.com/netdata/netdata/issues/13844))
3243 +- Use PR label to trigger full packaging CI instead of PR body contents. ([#13839](https://github.com/netdata/netdata/issues/13839))
3244 +- Change CI trigger label prefix from `ci/` to `run-ci/`. ([#13849](https://github.com/netdata/netdata/issues/13849))
3245 +- Fix runtime directory ownership when installed as non-root user. ([#13797](https://github.com/netdata/netdata/issues/13797))
3246 +- Pandas collector ([#13773](https://github.com/netdata/netdata/issues/13773))
3247 +- Properly propagate errors from installer/updater to kickstart script. ([#13802](https://github.com/netdata/netdata/issues/13802))
3248 +- Properly guard commands when installing services for offline service managers. ([#13848](https://github.com/netdata/netdata/issues/13848))
3249 +- Health thread per host ([#13712](https://github.com/netdata/netdata/issues/13712))
3250 +- Fix typo ([#13853](https://github.com/netdata/netdata/issues/13853))
3251 +- Retry reading carrier, duplex, and speed files periodically ([#13850](https://github.com/netdata/netdata/issues/13850))
3252 +- Bump go.d.plugin to v0.41.0 ([#13861](https://github.com/netdata/netdata/issues/13861))
3253 +- Add ACLK access to ml_info (fix anomalies tab in cloud) ([#13863](https://github.com/netdata/netdata/issues/13863))
3254 +- Update step-09 for dbmode update.md ([#13864](https://github.com/netdata/netdata/issues/13864))
3255 +- Fix(cgroup.plugin): handle qemu-1- prefix when extracting virsh domain ([#13866](https://github.com/netdata/netdata/issues/13866))
3256 +- QUERY_TARGET: new query engine for Netdata Agent ([#13697](https://github.com/netdata/netdata/issues/13697))
3257 +- Use llvm's ar and ranlib when compiling with clang ([#13854](https://github.com/netdata/netdata/issues/13854))
3258 +- Use mmap to read an extent from a datafile ([#13834](https://github.com/netdata/netdata/issues/13834))
3259 +- App to api netdata cloud ([#13856](https://github.com/netdata/netdata/issues/13856))
3260 +- Bump go.d.plugin v0.41.1 ([#13874](https://github.com/netdata/netdata/issues/13874))
3261 +- Cassandra dashboard description ([#13835](https://github.com/netdata/netdata/issues/13835))
3262 +- Store hidden status when creating / updating dimension metadata ([#13869](https://github.com/netdata/netdata/issues/13869))
3263 +- Allow single chart to be filtered in context queries ([#13879](https://github.com/netdata/netdata/issues/13879))
3264 +- Don't create a REMOVED alert event after a REMOVED. ([#13871](https://github.com/netdata/netdata/issues/13871))
3265 +- Apps.plugin function processes cosmetic changes ([#13880](https://github.com/netdata/netdata/issues/13880))
3266 +- Assorted cleanup in the OpenRC init script. ([#13115](https://github.com/netdata/netdata/issues/13115))
3267 +- Suppress ML and dlib ABI warnings ([#13875](https://github.com/netdata/netdata/issues/13875))
3268 +- Fix typo in CI distribution data file. ([#13882](https://github.com/netdata/netdata/issues/13882))
3269 +- Use print macros ([#13876](https://github.com/netdata/netdata/issues/13876))
3270 +- Add description for TCP WMI ([#13878](https://github.com/netdata/netdata/issues/13878))
3271 +- Find the chart and dimension UUID from the context ([#13868](https://github.com/netdata/netdata/issues/13868))
3272 +- Fix duplicate error code in kickstart.sh. ([#13887](https://github.com/netdata/netdata/issues/13887))
3273 +- Filtering out charts in context queries, includes them in full_xxx variables ([#13886](https://github.com/netdata/netdata/issues/13886))
3274 +- Tune rrdcontext timings ([#13889](https://github.com/netdata/netdata/issues/13889))
3275 +- Fix(proc.plugin): fix read retry logic when reading interface speed ([#13893](https://github.com/netdata/netdata/issues/13893))
3276 +- Fix reading health "enable" from the configuration ([#13894](https://github.com/netdata/netdata/issues/13894))
3277 +- Add pandas collector to collectors.md ([#13895](https://github.com/netdata/netdata/issues/13895))
3278 +- Record installation command in telemetry events. ([#13892](https://github.com/netdata/netdata/issues/13892))
3279 +- Bump go.d.plugin v0.41.2 ([#13903](https://github.com/netdata/netdata/issues/13903))
3280 +- Remove option to use MQTT 3 ([#13824](https://github.com/netdata/netdata/issues/13824))
3281 +- Reference the bash collector for RPi ([#13907](https://github.com/netdata/netdata/issues/13907))
3282 +- Improve intro paragraph ([#13906](https://github.com/netdata/netdata/issues/13906))
3283 +- Apps.plugin function add max value on all value columns ([#13899](https://github.com/netdata/netdata/issues/13899))
3284 +- Prompt users about updates/claiming on unknown install types. ([#13890](https://github.com/netdata/netdata/issues/13890))
3285 +- Timeframe matching should take into account the update frequency of the chart ([#13911](https://github.com/netdata/netdata/issues/13911))
3286 +- Do not free hosts if a change on db mode is not needed ([#13912](https://github.com/netdata/netdata/issues/13912))
3287 +- Bump go.d.plugin to v0.42.0 ([#13913](https://github.com/netdata/netdata/issues/13913))
3288 +- Feat(packaging): add CAP_NET_RAW to go.d.plugin ([#13909](https://github.com/netdata/netdata/issues/13909))
3289 +- Replication of metrics (gaps filling) during streaming ([#13873](https://github.com/netdata/netdata/issues/13873))
3290 +- Add ping dashboard info and alarms ([#13916](https://github.com/netdata/netdata/issues/13916))
3291 +- Fix crash on query plan switch ([#13920](https://github.com/netdata/netdata/issues/13920))
3292 +- Return accidentaly removed 32bit RPi keep alive fix ([#13925](https://github.com/netdata/netdata/issues/13925))
3293 +- Fix systemd chart update (eBPF) ([#13884](https://github.com/netdata/netdata/issues/13884))
3294 +- Remove Alpine 3.13 from CI and official support. ([#13415](https://github.com/netdata/netdata/issues/13415))
3295 +- Fix compiling without dbengine ([#13931](https://github.com/netdata/netdata/issues/13931))
3296 +- Error_limit() function to limit number of error lines per instance ([#13924](https://github.com/netdata/netdata/issues/13924))
3297 +- Rrddim acquire on replay set ([#13932](https://github.com/netdata/netdata/issues/13932))
3298 +- Bump go.d.plugin to v0.42.1 ([#13930](https://github.com/netdata/netdata/issues/13930))
3299 +- Remove pluginsd action param & dead code. ([#13928](https://github.com/netdata/netdata/issues/13928))
3300 +- Update print message on startup ([#13934](https://github.com/netdata/netdata/issues/13934))
3301 +- Statsd dictionaries should be multi-threaded ([#13938](https://github.com/netdata/netdata/issues/13938))
3302 +- Overhaul generation of distinct-ids for install telemetry events. ([#13891](https://github.com/netdata/netdata/issues/13891))
3303 +- Fix chart definition end time_t printing and parsing ([#13942](https://github.com/netdata/netdata/issues/13942))
3304 +- Update link to point at demo spaces ([#13939](https://github.com/netdata/netdata/issues/13939))
3305 +- Recalculate last_collected_total ([#13945](https://github.com/netdata/netdata/issues/13945))
3306 +- Enable aclk conversation log even without NETDATA_INTERNAL CHECKS ([#13917](https://github.com/netdata/netdata/issues/13917))
3307 +- Do not resend charts upstream when chart variables are being updated ([#13946](https://github.com/netdata/netdata/issues/13946))
3308 +- Setup default certificates path ([#13941](https://github.com/netdata/netdata/issues/13941))
3309 +- Fix oracle linux (eBPF plugin) ([#13935](https://github.com/netdata/netdata/issues/13935))
3310 +- Reduce unnecessary alert events to the cloud ([#13897](https://github.com/netdata/netdata/issues/13897))
3311 +- Fix local dashboard cloud links ([#13953](https://github.com/netdata/netdata/issues/13953))
3312 +- Bump go.d.plugin to v0.43.0 ([#13954](https://github.com/netdata/netdata/issues/13954))
3313 +- Health/ping: use 'host' label in alerts info ([#13955](https://github.com/netdata/netdata/issues/13955))
3314 +- Provide improved messaging in the kickstart script for existing installs managed by the system package manager. ([#13947](https://github.com/netdata/netdata/issues/13947))
3315 +- Require -DENABLE_DLSYM=1 to use dlsym() ([#13958](https://github.com/netdata/netdata/issues/13958))
3316 +- Remove anomaly rates chart. ([#13763](https://github.com/netdata/netdata/issues/13763))
3317 +- Document password param for tor collector ([#13966](https://github.com/netdata/netdata/issues/13966))
3318 +- Break active-active loop from replicating non-existing child to each other ([#13968](https://github.com/netdata/netdata/issues/13968))
3319 +- Enable collecting ECC memory errors by default ([#13970](https://github.com/netdata/netdata/issues/13970))
3320 +- Fallback to ar and ranlib if llvm-ar and llvm-ranlib are not there ([#13959](https://github.com/netdata/netdata/issues/13959))
3321 +- Add Cassandra icon to dashboard info ([#13975](https://github.com/netdata/netdata/issues/13975))
3322 +- Remove health_thread_stop ([#13948](https://github.com/netdata/netdata/issues/13948))
3323 +- Change the db-engine calculator to a read only gsheet ([#13974](https://github.com/netdata/netdata/issues/13974))
3324 +- Dont crash when netdata cannot execute its external plugins ([#13978](https://github.com/netdata/netdata/issues/13978))
3325 +- Add _total suffix to raw increment metrics for remote write ([#13977](https://github.com/netdata/netdata/issues/13977))
3326 +- Apps.plugin function processes: keys should not have spaces ([#13980](https://github.com/netdata/netdata/issues/13980))
3327 +- WMI Process (Dashboard, Documentation) ([#13910](https://github.com/netdata/netdata/issues/13910))
3328 +- Replication improvements ([#13989](https://github.com/netdata/netdata/issues/13989))
3329 +- Added debug info on left-over query targets ([#13990](https://github.com/netdata/netdata/issues/13990))
3330 +- Bump go.d.plugin to v0.43.1 ([#13993](https://github.com/netdata/netdata/issues/13993))
3331 +- Bump google-github-actions/setup-gcloud from 0.6.2 to 1.0.1 ([#13991](https://github.com/netdata/netdata/issues/13991))
3332 +- Remove python.d/nginx_plus ([#13995](https://github.com/netdata/netdata/issues/13995))
3333 +- Publish nightly builds to netdata/netdata-nightlies repository. ([#13961](https://github.com/netdata/netdata/issues/13961))
3334 +- New journal disk based indexing for agent memory reduction ([#13885](https://github.com/netdata/netdata/issues/13885))
3335 +- Add 'funcs' capability ([#13992](https://github.com/netdata/netdata/issues/13992))
3336 +- Fixes MQTT-NG QoS0 ([#13997](https://github.com/netdata/netdata/issues/13997))
3337 +- Enable dbengine tiering by default ([#13914](https://github.com/netdata/netdata/issues/13914))
3338 +- Revert "enable dbengine tiering by default" ([#13999](https://github.com/netdata/netdata/issues/13999))
3339 +- Revert "New journal disk based indexing for agent memory reduction" ([#14000](https://github.com/netdata/netdata/issues/14000))
3340 +- Minor typo in the uninstall command ([#14002](https://github.com/netdata/netdata/issues/14002))
3341 +- Fix connection resets on big parents ([#14004](https://github.com/netdata/netdata/issues/14004))
3342 +- Use calculator app instead of spreadsheet ([#13981](https://github.com/netdata/netdata/issues/13981))
3343 +- Change relative links to absolute for learn components ([#14015](https://github.com/netdata/netdata/issues/14015))
3344 +- Allow statsd tags to modify chart metadata on the fly ([#14014](https://github.com/netdata/netdata/issues/14014))
3345 +- Minor - silence misleading error ([#14013](https://github.com/netdata/netdata/issues/14013))
3346 +- Fix nightly build uploads. ([#14017](https://github.com/netdata/netdata/issues/14017))
3347 +- Fix typo in GHA workflow.
3348 +- Streaming compression, query planner and replication fixes ([#14023](https://github.com/netdata/netdata/issues/14023))
3349 +- Remove retries from SSL ([#14026](https://github.com/netdata/netdata/issues/14026))
3350 +- Fix documentation TLS streaming ([#14024](https://github.com/netdata/netdata/issues/14024))
3351 +- Update codeowners ([#14025](https://github.com/netdata/netdata/issues/14025))
3352 +- Bump go.d.plugin v0.44.0 ([#14030](https://github.com/netdata/netdata/issues/14030))
3353 +- Change static image urls to app.netdata.cloud in alarm-notify.sh ([#14007](https://github.com/netdata/netdata/issues/14007))
3354 +- Use 2 levels of judy arrays to speed up replication on very busy parents ([#14031](https://github.com/netdata/netdata/issues/14031))
3355 +- Do not force internal collectors to call rrdset_next. ([#13926](https://github.com/netdata/netdata/issues/13926))
3356 +- Improve performance of worker utilization statistics ([#14034](https://github.com/netdata/netdata/issues/14034))
3357 +- Replication fixes #3 ([#14035](https://github.com/netdata/netdata/issues/14035))
3358 +- Do not merge duplicate replication requests ([#14037](https://github.com/netdata/netdata/issues/14037))
3359 +- Replication fixes #5 ([#14038](https://github.com/netdata/netdata/issues/14038))
3360 +- Add up to date info on improving performance ([#13801](https://github.com/netdata/netdata/issues/13801))
3361 +- Fix dictionaries unittest ([#14042](https://github.com/netdata/netdata/issues/14042))
3362 +- Minor - Adds better information in case of SSL error ([#14041](https://github.com/netdata/netdata/issues/14041))
3363 +- Minor - wss to point to master instead of branch ([#14043](https://github.com/netdata/netdata/issues/14043))
3364 +- Don't let slow disk plugin thread delay shutdown ([#14044](https://github.com/netdata/netdata/issues/14044))
3365 +- Fix build on old openssl versions on centos ([#14045](https://github.com/netdata/netdata/issues/14045))
3366 +- Improve eBPF exit ([#14012](https://github.com/netdata/netdata/issues/14012))
3367 +- Replication fixes #6 ([#14046](https://github.com/netdata/netdata/issues/14046))
3368 +- Replication fixes No 7 ([#14053](https://github.com/netdata/netdata/issues/14053))
3369 +- Remove cmocka tests from ci ([#14054](https://github.com/netdata/netdata/issues/14054))
3370 +- Remove eBPF plugin warning ([#14047](https://github.com/netdata/netdata/issues/14047))
3371 +- Bump go.d.plugin to v0.45.0 ([#14052](https://github.com/netdata/netdata/issues/14052))
3372 +- Bump actions/add-to-project from 0.3.0 to 0.4.0 ([#14048](https://github.com/netdata/netdata/issues/14048))
3373 +- Bump google-github-actions/upload-cloud-storage from 0.10.4 to 1.0.0 ([#14049](https://github.com/netdata/netdata/issues/14049))
3374 +- Add Alpine 3.17 to supported distros. ([#14056](https://github.com/netdata/netdata/issues/14056))
3375 +- Fix(updater): don't produce any output if static update completed successfully ([#14058](https://github.com/netdata/netdata/issues/14058))
3376 +- Replication fixes No 8 ([#14061](https://github.com/netdata/netdata/issues/14061))
3377 +- Sanitize command arguments. ([#14064](https://github.com/netdata/netdata/issues/14064))
3378 +- Strict control of streaming API keys and MACHINE GUIDs in stream.conf ([#14063](https://github.com/netdata/netdata/issues/14063))
3379 +- Dummy commit to force rebuilding nightlies.
3380 +- Fix spinlock ([#14068](https://github.com/netdata/netdata/issues/14068))
3381 +
3382 +## [1.36.0] - 2022-08-10
3383 +
3384 +### Merged Pull Requests:
3385 +
3386 +- Temporarily disable updates for static builds. ([#13100](https://github.com/netdata/netdata/issues/13100))
3387 +- Remove unnescesary ‘cleanup’ code. ([#13103](https://github.com/netdata/netdata/issues/13103))
3388 +- Re-enable updates for systems using static builds. ([#13110](https://github.com/netdata/netdata/issues/13110))
3389 +- Docs(statsd.plugin): fix indentation ([#13096](https://github.com/netdata/netdata/issues/13096))
3390 +- Add openSUSE Leap 15.4 to CI and package builds. ([#12270](https://github.com/netdata/netdata/issues/12270))
3391 +- Fix virtualization detection on FreeBSD ([#13087](https://github.com/netdata/netdata/issues/13087))
3392 +- Add user netdata to secondary group in DEB package ([#13109](https://github.com/netdata/netdata/issues/13109))
3393 +- Labels with dictionary ([#13070](https://github.com/netdata/netdata/issues/13070))
3394 +- 73x times faster metrics correlations at the agent ([#13107](https://github.com/netdata/netdata/issues/13107))
3395 +- Ci coverage ([#13118](https://github.com/netdata/netdata/issues/13118))
3396 +- Fix typo in release base prep script. ([#13098](https://github.com/netdata/netdata/issues/13098))
3397 +- Fixed coveriry 379136 379135 379134 379133 ([#13123](https://github.com/netdata/netdata/issues/13123))
3398 +- Allow label names to have slashes ([#13125](https://github.com/netdata/netdata/issues/13125))
3399 +- Buffer overflow detected by the compiler ([#13120](https://github.com/netdata/netdata/issues/13120))
3400 +- ACLK statistics on bytes recvd and sent ([#13091](https://github.com/netdata/netdata/issues/13091))
3401 +- Fix(python.d/mongodb): set `serverSelectionTimeoutMS` for pymongo4+ ([#13135](https://github.com/netdata/netdata/issues/13135))
3402 +- Fix(python.d): urllib3 import collection for py3.10+ ([#13136](https://github.com/netdata/netdata/issues/13136))
3403 +- Use a separate thread for slow mountpoints in the diskspace plugin ([#13067](https://github.com/netdata/netdata/issues/13067))
3404 +- Use ks2 as MC default ([#13131](https://github.com/netdata/netdata/issues/13131))
3405 +- Fix crashes due to misaligned allocations ([#13137](https://github.com/netdata/netdata/issues/13137))
3406 +- Add missing control to streaming ([#13112](https://github.com/netdata/netdata/issues/13112))
3407 +- Add an option to use malloc for page cache instead of mmap ([#13142](https://github.com/netdata/netdata/issues/13142))
3408 +- Update docs on what to do if collector not there ([#13152](https://github.com/netdata/netdata/issues/13152))
3409 +- Remove pinned page reference ([#13108](https://github.com/netdata/netdata/issues/13108))
3410 +- Add cargo/rustc/bazel/buck to apps_groups.conf ([#13143](https://github.com/netdata/netdata/issues/13143))
3411 +- Revert to default of `host anomaly rate threshold=0.01` ([#13150](https://github.com/netdata/netdata/issues/13150))
3412 +- Fix conditions for nightly build triggers ([#13145](https://github.com/netdata/netdata/issues/13145))
3413 +- Fix labels unit test ([#13156](https://github.com/netdata/netdata/issues/13156))
3414 +- Add CAP_SYS_RAWIO to Netdata's systemd unit CapabilityBoundingSet ([#13154](https://github.com/netdata/netdata/issues/13154))
3415 +- Add mem.available chart to FreeBSD ([#13140](https://github.com/netdata/netdata/issues/13140))
3416 +- Configurable storage engine for Netdata agents: step 3 ([#12892](https://github.com/netdata/netdata/issues/12892))
3417 +- Use memset to mark the empty words in the quoted_strings_splitter function ([#13161](https://github.com/netdata/netdata/issues/13161))
3418 +- Don’t manipulate positional parameters in DEB postinst script. ([#13169](https://github.com/netdata/netdata/issues/13169))
3419 +- Fix coverity issues ([#13168](https://github.com/netdata/netdata/issues/13168))
3420 +- Enable ml by default ([#13158](https://github.com/netdata/netdata/issues/13158))
3421 +- Fix data query on stale chart ([#13159](https://github.com/netdata/netdata/issues/13159))
3422 +- Feat(proc/proc_net_dev): add dim per operstate to the "Interface Operational State" chart ([#13167](https://github.com/netdata/netdata/issues/13167))
3423 +- Revert "Configurable storage engine for Netdata agents: step 3 ([#12892](https://github.com/netdata/netdata/issues/12892))" ([#13171](https://github.com/netdata/netdata/issues/13171))
3424 +- Feat(proc/proc_net_dev): add dim per duplex state to the "Interface Duplex State" chart ([#13165](https://github.com/netdata/netdata/issues/13165))
3425 +- Allow traversing null-value dictionaries ([#13162](https://github.com/netdata/netdata/issues/13162))
3426 +- Fix coverity 378587 ([#13024](https://github.com/netdata/netdata/issues/13024))
3427 +- Feat(proc/proc_net_dev): add dim per phys link state to the "Interface Physical Link State" chart ([#13176](https://github.com/netdata/netdata/issues/13176))
3428 +- Update dashboard to version v2.26.2. ([#13177](https://github.com/netdata/netdata/issues/13177))
3429 +- Set default for `minimum num samples to train` to `900` ([#13174](https://github.com/netdata/netdata/issues/13174))
3430 +- Add k8s_state dashboard_info ([#13181](https://github.com/netdata/netdata/issues/13181))
3431 +- Add ml alerts examples ([#13173](https://github.com/netdata/netdata/issues/13173))
3432 +- Fix(freebsd.plugin): fix wired/cached/avail memory calculation on FreeBSD with ZFS ([#13183](https://github.com/netdata/netdata/issues/13183))
3433 +- Update dashboard to version v2.26.5. ([#13192](https://github.com/netdata/netdata/issues/13192))
3434 +- Query Engine multi-granularity support (and MC improvements) ([#13155](https://github.com/netdata/netdata/issues/13155))
3435 +- Add type label for network interfaces ([#13187](https://github.com/netdata/netdata/issues/13187))
3436 +- Feat(python.d/smartd_log): add 2nd job that tries to read from '/var/lib/smartmontools/' ([#13188](https://github.com/netdata/netdata/issues/13188))
3437 +- Fix cgroups netdev chart labels ([#13200](https://github.com/netdata/netdata/issues/13200))
3438 +- Allow for an easy way to do metadata migrations ([#13196](https://github.com/netdata/netdata/issues/13196))
3439 +- Clean sqlite prepared statements on thread shutdown ([#13193](https://github.com/netdata/netdata/issues/13193))
3440 +- Add configuration for dbengine page fetch timeout and retry count ([#13194](https://github.com/netdata/netdata/issues/13194))
3441 +- Print INTERNAL BUG messages only when NETDATA_INTERNAL_CHECKS is enabled ([#13207](https://github.com/netdata/netdata/issues/13207))
3442 +- Chore(netdata-installer): remove a call to 'cleanup_old_netdata_updater()' because it is no longer exists ([#13189](https://github.com/netdata/netdata/issues/13189))
3443 +- Add user plugin dirs to environment ([#13203](https://github.com/netdata/netdata/issues/13203))
3444 +- Make configuration example clearer ([#13182](https://github.com/netdata/netdata/issues/13182))
3445 +- Deduplicate mountinfo based on mount point ([#13215](https://github.com/netdata/netdata/issues/13215))
3446 +- Use new mqtt implementation as default ([#13132](https://github.com/netdata/netdata/issues/13132))
3447 +- Fix(updater): fix updating when using `--force-update` and new version of the updater script is available ([#13104](https://github.com/netdata/netdata/issues/13104))
3448 +- Ensure tmpdir is set for every function that uses it. ([#13206](https://github.com/netdata/netdata/issues/13206))
3449 +- Don’t use realpath to find kickstart source path. ([#13208](https://github.com/netdata/netdata/issues/13208))
3450 +- Properly handle interactivity in the updater code. ([#13209](https://github.com/netdata/netdata/issues/13209))
3451 +- Removes Legacy JSON Cloud Protocol Support In Agent ([#13111](https://github.com/netdata/netdata/issues/13111))
3452 +- Ci: add issues to the Agent Board project workflow ([#13225](https://github.com/netdata/netdata/issues/13225))
3453 +- Fix(cgroups.plugin): fix qemu VMs and LXC containers name resolution ([#13220](https://github.com/netdata/netdata/issues/13220))
3454 +- Feat(python.d): load modules from user plugin directories (NETDATA_USER_PLUGINS_DIRS) ([#13214](https://github.com/netdata/netdata/issues/13214))
3455 +- Add more sqlite unittests ([#13227](https://github.com/netdata/netdata/issues/13227))
3456 +- Bump repoconfig package version used in kickstart.sh ([#13235](https://github.com/netdata/netdata/issues/13235))
3457 +- Update netdata commands ([#13080](https://github.com/netdata/netdata/issues/13080))
3458 +- Use correct PAT for add-to-project workflow. ([#13234](https://github.com/netdata/netdata/issues/13234))
3459 +- Implement PackageCloud cleanup ([#13236](https://github.com/netdata/netdata/issues/13236))
3460 +- Upload packages to new self-hosted repository infrastructure. ([#13240](https://github.com/netdata/netdata/issues/13240))
3461 +- Netdata doubles ([#13217](https://github.com/netdata/netdata/issues/13217))
3462 +- Dictionaries with reference counters and full deletion support during traversal ([#13195](https://github.com/netdata/netdata/issues/13195))
3463 +- Delay health until obsoletions check is complete ([#13239](https://github.com/netdata/netdata/issues/13239))
3464 +- Updates the sqlite version in the agent ([#13233](https://github.com/netdata/netdata/issues/13233))
3465 +- Fix build matrix generation for build workflow. ([#13254](https://github.com/netdata/netdata/issues/13254))
3466 +- Fix: fix a base64_encode bug ([#13074](https://github.com/netdata/netdata/issues/13074))
3467 +- Use old mqtt implementation as default ([#13258](https://github.com/netdata/netdata/issues/13258))
3468 +- Add fstype labels to disk charts ([#13245](https://github.com/netdata/netdata/issues/13245))
3469 +- Query engine with natural and virtual points ([#13248](https://github.com/netdata/netdata/issues/13248))
3470 +- Get rid of extra semicolon in Graphite exporting ([#13261](https://github.com/netdata/netdata/issues/13261))
3471 +- Remove warnings while compiling ML on FreeBSD ([#13255](https://github.com/netdata/netdata/issues/13255))
3472 +- Ebpf issues ([#13259](https://github.com/netdata/netdata/issues/13259))
3473 +- Chore(python.d): remove deprecated modules from python.d.conf ([#13264](https://github.com/netdata/netdata/issues/13264))
3474 +- Fix issues with DEB postinstall script. ([#13252](https://github.com/netdata/netdata/issues/13252))
3475 +- Remove warnings when openssl 3 is used. ([#13170](https://github.com/netdata/netdata/issues/13170))
3476 +- Fix RAM calculation on macOS in system-info ([#13260](https://github.com/netdata/netdata/issues/13260))
3477 +- Fix package build filtering on PRs. ([#13267](https://github.com/netdata/netdata/issues/13267))
3478 +- Update documentation about our REST API documentation. ([#13269](https://github.com/netdata/netdata/issues/13269))
3479 +- Assorted cleanups for new package infrastructure upload support. ([#13270](https://github.com/netdata/netdata/issues/13270))
3480 +- Remove obsolete --use-system-lws option from netdata-installer.sh help ([#13272](https://github.com/netdata/netdata/issues/13272))
3481 +- Add new `test` key to distros.yml entries. ([#13241](https://github.com/netdata/netdata/issues/13241))
3482 +- Remove official support for Debian 9. ([#13065](https://github.com/netdata/netdata/issues/13065))
3483 +- Fix alignment in charts endpoint ([#13275](https://github.com/netdata/netdata/issues/13275))
3484 +- Dont print io errors for cgroups ([#13274](https://github.com/netdata/netdata/issues/13274))
3485 +- Rename the chart of real memory usage in FreeBSD ([#13271](https://github.com/netdata/netdata/issues/13271))
3486 +- Pluginsd doc ([#13273](https://github.com/netdata/netdata/issues/13273))
3487 +- Fixes vbi parser in mqtt5 implementation ([#13277](https://github.com/netdata/netdata/issues/13277))
3488 +- Bump go.d.plugin version to v0.33.0 ([#13280](https://github.com/netdata/netdata/issues/13280))
3489 +- Query engine fixes for alarms and dashboards ([#13282](https://github.com/netdata/netdata/issues/13282))
3490 +- Don’t pull in GCC for build if Clang is already present. ([#13244](https://github.com/netdata/netdata/issues/13244))
3491 +- Improve anomaly detection guide ([#13238](https://github.com/netdata/netdata/issues/13238))
3492 +- Rpm group creation ([#13197](https://github.com/netdata/netdata/issues/13197))
3493 +- Migrate data when machine GUID changes ([#13232](https://github.com/netdata/netdata/issues/13232))
3494 +- Fix(health): fix incorrect Redis dimension names ([#13296](https://github.com/netdata/netdata/issues/13296))
3495 +- Chore: remove python-mysql from install-required-packages.sh ([#13288](https://github.com/netdata/netdata/issues/13288))
3496 +- Null terminate string if file read was not successful ([#13299](https://github.com/netdata/netdata/issues/13299))
3497 +- Fix(cgroups.plugin): adjust kubepods regex to fix name resolution in a kind cluster ([#13302](https://github.com/netdata/netdata/issues/13302))
3498 +- Bump actions/add-to-project from 0.0.5 to 0.1.0 ([#13295](https://github.com/netdata/netdata/issues/13295))
3499 +- Keep rc before freeing it during labels unlink alarms ([#13305](https://github.com/netdata/netdata/issues/13305))
3500 +- Fix(health): disable go.d last collected alarm for prometheus module ([#13309](https://github.com/netdata/netdata/issues/13309))
3501 +- Remove strftime from statements and use unixepoch instead ([#13250](https://github.com/netdata/netdata/issues/13250))
3502 +- Use new MQTT as default ([#13258](https://github.com/netdata/netdata/issues/13258))" ([#13287](https://github.com/netdata/netdata/issues/13287))
3503 +- Multi-Tier database backend for long term metrics storage ([#13263](https://github.com/netdata/netdata/issues/13263))
3504 +- Explicitly skip uploads and notifications in third-party repositories. ([#13308](https://github.com/netdata/netdata/issues/13308))
3505 +- Fix(apps.plugin): adjust `zmstat*` pattern to exclude zoneminder scripts ([#13314](https://github.com/netdata/netdata/issues/13314))
3506 +- Add link to docker config section ([#13323](https://github.com/netdata/netdata/issues/13323))
3507 +- Add hostname in the worker structure to avoid constant lookups ([#13199](https://github.com/netdata/netdata/issues/13199))
3508 +- Fix two helgrind reports ([#13325](https://github.com/netdata/netdata/issues/13325))
3509 +- Cid 379238 379238 ([#13328](https://github.com/netdata/netdata/issues/13328))
3510 +- Fix(cgroups.plugin): adjust kubepods patterns to filter pods when using Kind cluster ([#13324](https://github.com/netdata/netdata/issues/13324))
3511 +- Protect shared variables with log lock. ([#13306](https://github.com/netdata/netdata/issues/13306))
3512 +- UpdateNodeCollectors message ([#13330](https://github.com/netdata/netdata/issues/13330))
3513 +- Silence compile warnings on external source ([#13332](https://github.com/netdata/netdata/issues/13332))
3514 +- Array allocator for dbengine page descriptors ([#13312](https://github.com/netdata/netdata/issues/13312))
3515 +- Fix coverity 379241 ([#13336](https://github.com/netdata/netdata/issues/13336))
3516 +- Better ACLK debug communication log ([#13281](https://github.com/netdata/netdata/issues/13281))
3517 +- Add github stars badge to readme ([#13338](https://github.com/netdata/netdata/issues/13338))
3518 +- Fix crash on start on slow disks because ml is initialized before dbengine starts ([#13342](https://github.com/netdata/netdata/issues/13342))
3519 +- Fix 32bit calculation on array allocator ([#13343](https://github.com/netdata/netdata/issues/13343))
3520 +- Fix(packaging): respect CFLAGS arg when building Docker image ([#13340](https://github.com/netdata/netdata/issues/13340))
3521 +- Send node info message sooner ([#13348](https://github.com/netdata/netdata/issues/13348))
3522 +- Get rid of extra comma in OpenTSDB exporting ([#13355](https://github.com/netdata/netdata/issues/13355))
3523 +- Exporting/send variables ([#13221](https://github.com/netdata/netdata/issues/13221))
3524 +- Move host tags to netdata_info ([#13358](https://github.com/netdata/netdata/issues/13358))
3525 +- Detect stored metric size by page type ([#13334](https://github.com/netdata/netdata/issues/13334))
3526 +- Added another way to get ansible plays ([#13349](https://github.com/netdata/netdata/issues/13349))
3527 +- Chore(python.d): improve config file parsing error message ([#13363](https://github.com/netdata/netdata/issues/13363))
3528 +- Add job to move bugs to project board ([#13350](https://github.com/netdata/netdata/issues/13350))
3529 +- Address Coverity issues ([#13364](https://github.com/netdata/netdata/issues/13364))
3530 +- Actually allow running a test release in a fork of the repo. ([#13331](https://github.com/netdata/netdata/issues/13331))
3531 +- Also run repoconfig package builds when distro list is changed. ([#13276](https://github.com/netdata/netdata/issues/13276))
3532 +- Query engine: omit first point if not needed ([#13345](https://github.com/netdata/netdata/issues/13345))
3533 +- Add document explaining how to proxy Netdata via H2O ([#13266](https://github.com/netdata/netdata/issues/13266))
3534 +- Bump go.d.plugin version to v0.33.1 ([#13369](https://github.com/netdata/netdata/issues/13369))
3535 +- Chore(dashboard): update chrony dashboard info ([#13371](https://github.com/netdata/netdata/issues/13371))
3536 +- Chore(python.d): remove python.d/* announced in v1.35.0 deprecation notice ([#13370](https://github.com/netdata/netdata/issues/13370))
3537 +- Guide for troubleshooting Agent with Cloud connection for new nodes ([#13322](https://github.com/netdata/netdata/issues/13322))
3538 +- Add additional Docker image build with debug info included. ([#13359](https://github.com/netdata/netdata/issues/13359))
3539 +- Add Oracle Linux 9 to officially supported platforms. ([#13367](https://github.com/netdata/netdata/issues/13367))
3540 +- Fix missing openSUSE 15.4 in platform support list. ([#13373](https://github.com/netdata/netdata/issues/13373))
3541 +- Fix bitmap unit tests ([#13374](https://github.com/netdata/netdata/issues/13374))
3542 +- Add basic runtime checks to static build process. ([#13339](https://github.com/netdata/netdata/issues/13339))
3543 +- Update docs on metric storage ([#13327](https://github.com/netdata/netdata/issues/13327))
3544 +- Docs housekeeping ([#13179](https://github.com/netdata/netdata/issues/13179))
3545 +- Chore(python.d): clarify haproxy module readme ([#13388](https://github.com/netdata/netdata/issues/13388))
3546 +- Fix netdata-updater.sh sha256sum on BSDs ([#13391](https://github.com/netdata/netdata/issues/13391))
3547 +- Fix chart update ebpf.plugin ([#13351](https://github.com/netdata/netdata/issues/13351))
3548 +- Fix coverity issue 379240 (Unchecked return value) ([#13401](https://github.com/netdata/netdata/issues/13401))
3549 +- Chore(health): remove py web_log alarms ([#13404](https://github.com/netdata/netdata/issues/13404))
3550 +- Store host system information in the database ([#13402](https://github.com/netdata/netdata/issues/13402))
3551 +- Minor fixes on metadata fields ([#13406](https://github.com/netdata/netdata/issues/13406))
3552 +- Report version in build workflow output.
3553 +- Codacy/lgtm ignore judy sources ([#13411](https://github.com/netdata/netdata/issues/13411))
3554 +- Add missing comma (handle coverity warning CID 379360) ([#13413](https://github.com/netdata/netdata/issues/13413))
3555 +- Add ML bullet point to features section on README ([#13418](https://github.com/netdata/netdata/issues/13418))
3556 +- Add discord, youtube, linkedin links to README ([#13419](https://github.com/netdata/netdata/issues/13419))
3557 +- Remove octopus from demo-sites ([#13423](https://github.com/netdata/netdata/issues/13423))
3558 +- Include Judy into our source tree ([#13362](https://github.com/netdata/netdata/issues/13362))
3559 +- Rrdcontext ([#13335](https://github.com/netdata/netdata/issues/13335))
3560 +- Skip repo-specific CI on forks. ([#13410](https://github.com/netdata/netdata/issues/13410))
3561 +- Remove Ubuntu 21.10 from CI and package builds. ([#12918](https://github.com/netdata/netdata/issues/12918))
3562 +- Bump actions/add-to-project from 0.1.0 to 0.3.0 ([#13429](https://github.com/netdata/netdata/issues/13429))
3563 +- Set value to SN_EMPTY_SLOT if flags is SN_EMPTY_SLOT ([#13417](https://github.com/netdata/netdata/issues/13417))
3564 +- Tiering statistics API endpoint ([#13420](https://github.com/netdata/netdata/issues/13420))
3565 +- Dont duplicate buffered bytes ([#13435](https://github.com/netdata/netdata/issues/13435))
3566 +- Fix boolean value for ProtectControlGroups ([#11281](https://github.com/netdata/netdata/issues/11281))
3567 +- Fix agent crash when archived host has not been registered to the cloud ([#13437](https://github.com/netdata/netdata/issues/13437))
3568 +- Fix typo in PostgreSQL section header ([#13440](https://github.com/netdata/netdata/issues/13440))
3569 +- Delete aclk_alert table on start streaming from seq 1 batch 1 ([#13438](https://github.com/netdata/netdata/issues/13438))
3570 +- Query queue only for queries ([#13431](https://github.com/netdata/netdata/issues/13431))
3571 +- Additional stats ([#13445](https://github.com/netdata/netdata/issues/13445))
3572 +- Get last_entry_t only when st changes ([#13448](https://github.com/netdata/netdata/issues/13448))
3573 +- Store host label information in the metadata database ([#13441](https://github.com/netdata/netdata/issues/13441))
3574 +- Revert "Query queue only for queries" ([#13452](https://github.com/netdata/netdata/issues/13452))
3575 +- Remove Igor and Marius as codeowners. ([#13456](https://github.com/netdata/netdata/issues/13456))
3576 +- Fix a guide so we can reference it's subsections ([#13455](https://github.com/netdata/netdata/issues/13455))
3577 +- Fix(python.d/smartd_log): handle log rotation ([#13460](https://github.com/netdata/netdata/issues/13460))
3578 +- Docs: add a note about network interface monitoring when running in a Docker container ([#13458](https://github.com/netdata/netdata/issues/13458))
3579 +- Show last 15 alerts in notification ([#13434](https://github.com/netdata/netdata/issues/13434))
3580 +- Rrdcontext support for hidden charts ([#13466](https://github.com/netdata/netdata/issues/13466))
3581 +- Fix cgroup name detection for docker containers in containerd cgroup ([#13470](https://github.com/netdata/netdata/issues/13470))
3582 +- /api/v1/weights endpoint ([#13449](https://github.com/netdata/netdata/issues/13449))
3583 +- Load host labels for archived hosts ([#13464](https://github.com/netdata/netdata/issues/13464))
3584 +- Remove the single threaded arrayallocator optiomization during agent startup ([#13473](https://github.com/netdata/netdata/issues/13473))
3585 +- Handle cases where entries where stored as text (with strftime("%s")) ([#13472](https://github.com/netdata/netdata/issues/13472))
3586 +- Fix tests so that the actual metadata database is not accessed ([#13439](https://github.com/netdata/netdata/issues/13439))
3587 +- Enable rrdcontexts by default ([#13471](https://github.com/netdata/netdata/issues/13471))
3588 +- Update postgres dashboard info ([#13474](https://github.com/netdata/netdata/issues/13474))
3589 +- Feat(cgroups.plugin): resolve nomad containers name (docker driver only) ([#13481](https://github.com/netdata/netdata/issues/13481))
3590 +- Send chart context with alert events to the cloud ([#13409](https://github.com/netdata/netdata/issues/13409))
3591 +- Chore: add WireGuard description and icon to dashboard info ([#13483](https://github.com/netdata/netdata/issues/13483))
3592 +- Bump go.d.plugin version to v0.34.0 ([#13484](https://github.com/netdata/netdata/issues/13484))
3593 +- Health: disable go python last collected alarms ([#13485](https://github.com/netdata/netdata/issues/13485))
3594 +- Check for protected when excluding mounts ([#13479](https://github.com/netdata/netdata/issues/13479))
3595 +- Docs: add a note about edit-config for docker installs ([#13487](https://github.com/netdata/netdata/issues/13487))
3596 +- Trimmed-median, trimmed-mean and percentile ([#13469](https://github.com/netdata/netdata/issues/13469))
3597 +- Docs: fix unresolved file references ([#13488](https://github.com/netdata/netdata/issues/13488))
3598 +- Remove SIGSEGV and SIGABRT (ebpf.plugin) ([#13407](https://github.com/netdata/netdata/issues/13407))
3599 +- Remove prompt to add dashboard issues ([#13490](https://github.com/netdata/netdata/issues/13490))
3600 +- Add chart_context to alert snapshots ([#13492](https://github.com/netdata/netdata/issues/13492))
3601 +- Bump go.d version to v0.35.0 ([#13494](https://github.com/netdata/netdata/issues/13494))
3602 +- Add PgBouncer charts description and icon to dashboard info ([#13493](https://github.com/netdata/netdata/issues/13493))
3603 +- Docs: change postgres links to go version ([#13496](https://github.com/netdata/netdata/issues/13496))
3604 +- Docs: add deprecation notice to python.d/postgres readme ([#13497](https://github.com/netdata/netdata/issues/13497))
3605 +- Rrdcontexts allow not linked dimensions and charts ([#13501](https://github.com/netdata/netdata/issues/13501))
3606 +- Explicitly fetch git ref in build workflow. ([#13508](https://github.com/netdata/netdata/issues/13508))
3607 +- Fix fix for versioning issues.
3608 +
3609 +## [1.35.0] - 2022-06-08
3610 +
3611 +### Merged Pull Requests:
3612 +
3613 +- Adjust ACLK label ([#12689](https://github.com/netdata/netdata/issues/12689))
3614 +- Fix branch handling for minor releases in release workflow. ([#12690](https://github.com/netdata/netdata/issues/12690))
3615 +- Ensure versioned release tags include a leading `v` in workflows. ([#12695](https://github.com/netdata/netdata/issues/12695))
3616 +- Fix typo in release handling script.
3617 +- Fix branch handling for patch releases.
3618 +- Annotate release tags.
3619 +- Fix retry code in build CI. ([#12691](https://github.com/netdata/netdata/issues/12691))
3620 +- Fix_inbound:Add missing values to algorithm vector ([#12698](https://github.com/netdata/netdata/issues/12698))
3621 +- Disable automake dependency tracking in our various one-time builds. ([#12701](https://github.com/netdata/netdata/issues/12701))
3622 +- Fix Valgrind errors ([#12619](https://github.com/netdata/netdata/issues/12619))
3623 +- Feat(apps.plugin): add proxmox-ve processes to apps_groups.conf ([#12704](https://github.com/netdata/netdata/issues/12704))
3624 +- Chore(ebpf.plugin): re-enable socket module by default ([#12702](https://github.com/netdata/netdata/issues/12702))
3625 +- Fix: use NETDATA_LISTENER_PORT in docker healtcheck ([#12676](https://github.com/netdata/netdata/issues/12676))
3626 +- Add the ability to perform a data query using an offline node id ([#12650](https://github.com/netdata/netdata/issues/12650))
3627 +- Allocate buffer memory for uv_write and release in the callback function ([#12688](https://github.com/netdata/netdata/issues/12688))
3628 +- Chore(cgroups.plugin): reduce the CPU time required for cgroup-network-helper.sh ([#12711](https://github.com/netdata/netdata/issues/12711))
3629 +- Fix disable-dependency-tracking typo ([#12714](https://github.com/netdata/netdata/issues/12714))
3630 +- Fix upgrading all currently installed packages when updating Netdata on Debian
3631 +- Gotify notifications ([#12639](https://github.com/netdata/netdata/issues/12639))
3632 +- Feat(apps.plugin): add caddy to apps_groups.conf ([#12678](https://github.com/netdata/netdata/issues/12678))
3633 +- [Uninstall Netdata] - Add description in the docs to use uninstaller script with force arg ([#12687](https://github.com/netdata/netdata/issues/12687))
3634 +- Add a 2 minute timeout to stream receiver socket ([#12673](https://github.com/netdata/netdata/issues/12673))
3635 +- Small typo change in macOS docs ([#12724](https://github.com/netdata/netdata/issues/12724))
3636 +- Docs: fix GitHub format ([#12682](https://github.com/netdata/netdata/issues/12682))
3637 +- Store alert log entries even if alert is repeating. ([#12226](https://github.com/netdata/netdata/issues/12226))
3638 +- Remove commented code. ([#12726](https://github.com/netdata/netdata/issues/12726))
3639 +- Docs templates ([#12466](https://github.com/netdata/netdata/issues/12466))
3640 +- Add new dashboard/web server reference file ([#11161](https://github.com/netdata/netdata/issues/11161))
3641 +- Chore(kickstart.sh): remove unused `--auto-update` option when using static/build install method ([#12725](https://github.com/netdata/netdata/issues/12725))
3642 +- Feat(cgroups.plugin): add k8s_qos_class label ([#12737](https://github.com/netdata/netdata/issues/12737))
3643 +- Chore: remove Codacy badge from the repo readme ([#12742](https://github.com/netdata/netdata/issues/12742))
3644 +- Mention serial numbers in chart names in the plugins.d API documentation ([#12733](https://github.com/netdata/netdata/issues/12733))
3645 +- Fix(cgroups.plugin): run renaming script only for containers in k8s ([#12747](https://github.com/netdata/netdata/issues/12747))
3646 +- Feat(cgroups.plugin): add "CPU Time Relative Share" chart ([#12741](https://github.com/netdata/netdata/issues/12741))
3647 +- Fix(cgroups.plugin): remove "search for cgroups under PATH" conf option to fix memory leak ([#12752](https://github.com/netdata/netdata/issues/12752))
3648 +- Fix(cgroups.plugin): remove "enable cgroup X" config option on cgroup deletion ([#12746](https://github.com/netdata/netdata/issues/12746))
3649 +- Tag Gotify health notifications for the Gotify phone app ([#12753](https://github.com/netdata/netdata/issues/12753))
3650 +- Chore(ci): add the root dir markdown files to area/docs ([#12749](https://github.com/netdata/netdata/issues/12749))
3651 +- Chore: remove kickoke from codeowners ([#12743](https://github.com/netdata/netdata/issues/12743))
3652 +- Fix implicit declaration of function 'appconfig_section_option_destroy_non_loaded' ([#12756](https://github.com/netdata/netdata/issues/12756))
3653 +- Chore: reduce logging in rrdset ([#12739](https://github.com/netdata/netdata/issues/12739))
3654 +- Memory CO-RE ([#12684](https://github.com/netdata/netdata/issues/12684))
3655 +- Chore(cgroup.plugin): remove undocumented feature reading cgroups-names.sh when renaming cgroups ([#12745](https://github.com/netdata/netdata/issues/12745))
3656 +- Fix: use 'diskutil info` to calculate the disk size on macOS ([#12764](https://github.com/netdata/netdata/issues/12764))
3657 +- Add options to kickstart.sh for explicitly passing options to installer code. ([#12658](https://github.com/netdata/netdata/issues/12658))
3658 +- Correctly propagate errors and warnings up to the kickstart script from scripts it calls. ([#12686](https://github.com/netdata/netdata/issues/12686))
3659 +- Treat auto-updates as a tristate internally. ([#12634](https://github.com/netdata/netdata/issues/12634))
3660 +- Expand on the various parent-child config options ([#12734](https://github.com/netdata/netdata/issues/12734))
3661 +- Feat(dbengine): make dbengine page cache undumpable and dedupuble ([#12765](https://github.com/netdata/netdata/issues/12765))
3662 +- Use aclk_parse_otp_error ([#12767](https://github.com/netdata/netdata/issues/12767))
3663 +- Check the return of setsockopt ([#12772](https://github.com/netdata/netdata/issues/12772))
3664 +- Fix checking of enviornment files. ([#12768](https://github.com/netdata/netdata/issues/12768))
3665 +- Tweak static build process to improve build speed and debuggability. ([#12708](https://github.com/netdata/netdata/issues/12708))
3666 +- Update netdata-installer.sh ([#12755](https://github.com/netdata/netdata/issues/12755))
3667 +- Faster execution of external programs ([#12759](https://github.com/netdata/netdata/issues/12759))
3668 +- Some config updates for ml ([#12771](https://github.com/netdata/netdata/issues/12771))
3669 +- Fix printing warning msg ([#12781](https://github.com/netdata/netdata/issues/12781))
3670 +- Use '%b' argument when printing deferred errors ([#12786](https://github.com/netdata/netdata/issues/12786))
3671 +- Fix(proc/net/dev): exclude Proxmox bridge interfaces ([#12789](https://github.com/netdata/netdata/issues/12789))
3672 +- Don't use MADV_DONTDUMP on non-linux builds ([#12795](https://github.com/netdata/netdata/issues/12795))
3673 +- Chore(deps): bump google-github-actions/upload-cloud-storage ([#12794](https://github.com/netdata/netdata/issues/12794))
3674 +- Just a simple fix to avoid recompiling protobuf all the time ([#12790](https://github.com/netdata/netdata/issues/12790))
3675 +- Procfile: more comfortable initial settings and faster/fewer reallocs ([#12791](https://github.com/netdata/netdata/issues/12791))
3676 +- Add `-pipe` to CFLAGS in most cases for builds. ([#12709](https://github.com/netdata/netdata/issues/12709))
3677 +- Fix(cgroups.plugin): do not add network devices if cgroup proc is in the host net ns ([#12788](https://github.com/netdata/netdata/issues/12788))
3678 +- Make atomics a hard-dep. ([#12730](https://github.com/netdata/netdata/issues/12730))
3679 +- Avoid clearing already unset flags. ([#12727](https://github.com/netdata/netdata/issues/12727))
3680 +- Chore(python.d): remove python.d/* announced in v1.34.0 deprecation notice ([#12796](https://github.com/netdata/netdata/issues/12796))
3681 +- Reduce alert events sent to the cloud. ([#12544](https://github.com/netdata/netdata/issues/12544))
3682 +- Speed up BUFFER increases (minimize reallocs) ([#12792](https://github.com/netdata/netdata/issues/12792))
3683 +- One way allocator to double the speed of parallel context queries ([#12787](https://github.com/netdata/netdata/issues/12787))
3684 +- Trace rwlocks of netdata ([#12785](https://github.com/netdata/netdata/issues/12785))
3685 +- Remove node.d.plugin and relevant files ([#12769](https://github.com/netdata/netdata/issues/12769))
3686 +- Check for chart obsoletion on children re-connections ([#12707](https://github.com/netdata/netdata/issues/12707))
3687 +- Rename --install option for kickstart.sh ([#12798](https://github.com/netdata/netdata/issues/12798))
3688 +- Configurable storage engine for Netdata agents: step 1 ([#12776](https://github.com/netdata/netdata/issues/12776))
3689 +- Feat(cgroups.plugin): add filtering by cgroups names and improve renaming in k8s ([#12778](https://github.com/netdata/netdata/issues/12778))
3690 +- Skip dimension deletion on free (temp fix) ([#12777](https://github.com/netdata/netdata/issues/12777))
3691 +- Improve handling of release channel selection in kickstart.sh. ([#12635](https://github.com/netdata/netdata/issues/12635))
3692 +- Remove per chart configuration. ([#12728](https://github.com/netdata/netdata/issues/12728))
3693 +- Update ml defaults in docs ([#12782](https://github.com/netdata/netdata/issues/12782))
3694 +- Onewayallocator to use mallocz() instead of mmap() ([#12810](https://github.com/netdata/netdata/issues/12810))
3695 +- Improve agent cloud chart synchronization ([#12655](https://github.com/netdata/netdata/issues/12655))
3696 +- Add --repositories-only flag ([#12806](https://github.com/netdata/netdata/issues/12806))
3697 +- Fix!: do not replace a hyphen in the chart name with an underscore ([#12812](https://github.com/netdata/netdata/issues/12812))
3698 +- Metric correlations ([#12582](https://github.com/netdata/netdata/issues/12582))
3699 +- * Add a parameter for the libuv worker threads to pre-initialize ([#12814](https://github.com/netdata/netdata/issues/12814))
3700 +- Write the entire request with parameters in the access.log file ([#12815](https://github.com/netdata/netdata/issues/12815))
3701 +- Broadcast completion before unlocking condition variable's mutex ([#12822](https://github.com/netdata/netdata/issues/12822))
3702 +- Optimize linking of foreach alarms to dimensions. ([#12813](https://github.com/netdata/netdata/issues/12813))
3703 +- Accept a data query timeout parameter from the cloud ([#12823](https://github.com/netdata/netdata/issues/12823))
3704 +- Fill missing removed events after a crash ([#12803](https://github.com/netdata/netdata/issues/12803))
3705 +- Improve storage number unpacking by using a lookup table. ([#11048](https://github.com/netdata/netdata/issues/11048))
3706 +- Cleanup node instance ([#12825](https://github.com/netdata/netdata/issues/12825))
3707 +- Add --install-version flag for installing specific version of Netdata ([#12729](https://github.com/netdata/netdata/issues/12729))
3708 +- Fix netdata-uninstaller.sh ([#12828](https://github.com/netdata/netdata/issues/12828))
3709 +- Add chart filtering parameter to the allmetrics API query ([#12820](https://github.com/netdata/netdata/issues/12820))
3710 +- Reduce the number of messages logged to one that sums up the numbr of metrics ignored ([#12829](https://github.com/netdata/netdata/issues/12829))
3711 +- Feat(plugins.d): allow external plugins to create chart labels ([#12834](https://github.com/netdata/netdata/issues/12834))
3712 +- Remove sync warning ([#12831](https://github.com/netdata/netdata/issues/12831))
3713 +- Make 'send charts matching' behave the same as 'filter' ([#12832](https://github.com/netdata/netdata/issues/12832))
3714 +- Set a page wait timeout to 1 second ([#12836](https://github.com/netdata/netdata/issues/12836))
3715 +- Speedup queries by providing optimization in the main loop ([#12811](https://github.com/netdata/netdata/issues/12811))
3716 +- Save built packages in CI before testing them. ([#12842](https://github.com/netdata/netdata/issues/12842))
3717 +- Fix memory leaks and mismatches of the use of the z functions for allocations ([#12841](https://github.com/netdata/netdata/issues/12841))
3718 +- Resolve coverity issues ([#12846](https://github.com/netdata/netdata/issues/12846))
3719 +- Workers utilization charts ([#12807](https://github.com/netdata/netdata/issues/12807))
3720 +- Dim rates ([#12833](https://github.com/netdata/netdata/issues/12833))
3721 +- Add a database checkpoint command ([#12859](https://github.com/netdata/netdata/issues/12859))
3722 +- Feat(cgroups.plugin): add k8s cluster name label (GKE only) ([#12858](https://github.com/netdata/netdata/issues/12858))
3723 +- Bump go.d.plugin version to v0.32.3 ([#12862](https://github.com/netdata/netdata/issues/12862))
3724 +- Fix(proc.plugin): consider ZFS ARC as cache when collecting memory usage on Linux ([#12847](https://github.com/netdata/netdata/issues/12847))
3725 +- Initialize the metadata database when performing dbengine stress test ([#12861](https://github.com/netdata/netdata/issues/12861))
3726 +- Use prebuilt builder images for static builds. ([#12826](https://github.com/netdata/netdata/issues/12826))
3727 +- Fix(cgroups.plugin): do not disable K8s pod/container cgroups if can't rename them ([#12865](https://github.com/netdata/netdata/issues/12865))
3728 +- Workers fixes and improvements ([#12863](https://github.com/netdata/netdata/issues/12863))
3729 +- Fix for negative per job busy time ([#12867](https://github.com/netdata/netdata/issues/12867))
3730 +- Update README.md ([#12868](https://github.com/netdata/netdata/issues/12868))
3731 +- Docs: fix unresolved file references ([#12872](https://github.com/netdata/netdata/issues/12872))
3732 +- Switch to Alma Linux for RHEL compatible support. ([#12799](https://github.com/netdata/netdata/issues/12799))
3733 +- Set trust durations to have data from children properly aligned ([#12870](https://github.com/netdata/netdata/issues/12870))
3734 +- Fix(health): change duplicate health template message logging level to 'info' ([#12873](https://github.com/netdata/netdata/issues/12873))
3735 +- Configurable storage engine for Netdata agents: step 2 ([#12808](https://github.com/netdata/netdata/issues/12808))
3736 +- Expose anomaly-bit option to health. ([#12835](https://github.com/netdata/netdata/issues/12835))
3737 +- Consider ZFS ARC shrinkable as cache on FreeBSD ([#12879](https://github.com/netdata/netdata/issues/12879))
3738 +- Update dashboard to version v2.25.2. ([#12884](https://github.com/netdata/netdata/issues/12884))
3739 +- Feat(proc/cgroups.plugin): add PSI stall time charts ([#12869](https://github.com/netdata/netdata/issues/12869))
3740 +- Fix compilation warnings ([#12886](https://github.com/netdata/netdata/issues/12886))
3741 +- Chore(deps): bump docker/setup-buildx-action from 1 to 2 ([#12848](https://github.com/netdata/netdata/issues/12848))
3742 +- Chore(deps): bump docker/setup-qemu-action from 1 to 2 ([#12849](https://github.com/netdata/netdata/issues/12849))
3743 +- Chore(deps): bump docker/login-action from 1 to 2 ([#12850](https://github.com/netdata/netdata/issues/12850))
3744 +- Chore(deps): bump docker/build-push-action from 2 to 3 ([#12851](https://github.com/netdata/netdata/issues/12851))
3745 +- Pause alert pushes to the cloud ([#12852](https://github.com/netdata/netdata/issues/12852))
3746 +- Take into account the in queue wait time when executing a data query ([#12885](https://github.com/netdata/netdata/issues/12885))
3747 +- Return stable or nightly based on version if the file check fails ([#12894](https://github.com/netdata/netdata/issues/12894))
3748 +- Implements new capability fields in aclk_schemas ([#12602](https://github.com/netdata/netdata/issues/12602))
3749 +- Remove CPU-specific info from cpuidle dimensions ([#12898](https://github.com/netdata/netdata/issues/12898))
3750 +- Update reconnect node with kickstart info ([#12891](https://github.com/netdata/netdata/issues/12891))
3751 +- Fix(cgroups.plugin): use correct identifier when registering the main thread "chart" worker job ([#12902](https://github.com/netdata/netdata/issues/12902))
3752 +- Chore(worker_utilization): log an error when re-registering an already registered job ([#12903](https://github.com/netdata/netdata/issues/12903))
3753 +- Fix release channel in the node info message ([#12905](https://github.com/netdata/netdata/issues/12905))
3754 +- Fix compilation warnings in FreeBSD ([#12887](https://github.com/netdata/netdata/issues/12887))
3755 +- Added worker jobs for cgroup-rename, cgroup-network and cgroup-first-time ([#12910](https://github.com/netdata/netdata/issues/12910))
3756 +- Chore(streaming): bump default "buffer size bytes" to 10MB ([#12913](https://github.com/netdata/netdata/issues/12913))
3757 +- Fix(cgroups.plugin): improve check for uninitialized containers in k8s ([#12912](https://github.com/netdata/netdata/issues/12912))
3758 +- Fix `[global statistics]` section in netdata.conf ([#12916](https://github.com/netdata/netdata/issues/12916))
3759 +- Fix virtualization detection when `systemd-detect-virt` is not available ([#12911](https://github.com/netdata/netdata/issues/12911))
3760 +- Fix the log entry for incoming cloud start streaming commands ([#12908](https://github.com/netdata/netdata/issues/12908))
3761 +- User configurable sqlite PRAGMAs ([#12917](https://github.com/netdata/netdata/issues/12917))
3762 +- Chore(cgroups.plugin): remove "enable new cgroups detected at run time" config option ([#12906](https://github.com/netdata/netdata/issues/12906))
3763 +- Restore a broken symbolic link ([#12923](https://github.com/netdata/netdata/issues/12923))
3764 +- Chore(fping.plugin): bump default fping version to 5.1 ([#12930](https://github.com/netdata/netdata/issues/12930))
3765 +- Chore: add links to SQLite init options in the src code ([#12920](https://github.com/netdata/netdata/issues/12920))
3766 +- Collectors: apps.plugin: apps_groups: update net, aws, ha groups ([#12921](https://github.com/netdata/netdata/issues/12921))
3767 +- Adjust alarms count ([#12896](https://github.com/netdata/netdata/issues/12896))
3768 +- Remove Alpine 3.12 from CI. ([#12919](https://github.com/netdata/netdata/issues/12919))
3769 +- Adjust the dimension liveness status check ([#12933](https://github.com/netdata/netdata/issues/12933))
3770 +- Reduce timeout to 1 second for getting cloud instance info ([#12941](https://github.com/netdata/netdata/issues/12941))
3771 +- Feat: move dirs, logs, and env vars config options to separate sections ([#12935](https://github.com/netdata/netdata/issues/12935))
3772 +- Include proper package dependency ([#12518](https://github.com/netdata/netdata/issues/12518))
3773 +- Add support for installing static builds on systems without usable internet connections. ([#12809](https://github.com/netdata/netdata/issues/12809))
3774 +- Move kickstart argument parsing code to a function. ([#12805](https://github.com/netdata/netdata/issues/12805))
3775 +- Fix and improve netdata-updater.sh script ([#12757](https://github.com/netdata/netdata/issues/12757))
3776 +- Autodetect channel for specific version ([#12856](https://github.com/netdata/netdata/issues/12856))
3777 +- Prevent command_to_be_logged from overflowing ([#12947](https://github.com/netdata/netdata/issues/12947))
3778 +- Update libbpf version ([#12945](https://github.com/netdata/netdata/issues/12945))
3779 +- Detailed dbengine stats ([#12948](https://github.com/netdata/netdata/issues/12948))
3780 +- Optimize the dimensions option store to the metadata database ([#12952](https://github.com/netdata/netdata/issues/12952))
3781 +- Defer the dimension payload check to the ACLK sync thread ([#12951](https://github.com/netdata/netdata/issues/12951))
3782 +- Suppress warning when freeing a NULL pointer in onewayalloc_freez ([#12955](https://github.com/netdata/netdata/issues/12955))
3783 +- Cleanup chart hash and map tables on startup ([#12956](https://github.com/netdata/netdata/issues/12956))
3784 +- Statsd sets should count unique values ([#12963](https://github.com/netdata/netdata/issues/12963))
3785 +- Apply some logic to possible streaming destinations ([#12866](https://github.com/netdata/netdata/issues/12866))
3786 +- Fix: keep virtualization unknown if all used commands are not available ([#12964](https://github.com/netdata/netdata/issues/12964))
3787 +- Cleanup and optimize rrdeng_load_metric_next() ([#12966](https://github.com/netdata/netdata/issues/12966))
3788 +- Don't permanetly disable a destination because of denied access ([#12971](https://github.com/netdata/netdata/issues/12971))
3789 +- Feat(charts.d/apcupds): add load usage chart (Watts) ([#12965](https://github.com/netdata/netdata/issues/12965))
3790 +- Chore: check link local address before querying cloud instance metadata ([#12973](https://github.com/netdata/netdata/issues/12973))
3791 +- Optimize poll_events() to spread the work over the threads more evenly ([#12975](https://github.com/netdata/netdata/issues/12975))
3792 +- Query engine optimizations and cleanup ([#12978](https://github.com/netdata/netdata/issues/12978))
3793 +- Chore(apps.plugin): change cpu_guest chart context ([#12983](https://github.com/netdata/netdata/issues/12983))
3794 +- Add automatic retries fo static builds during nightly and release builds. ([#12961](https://github.com/netdata/netdata/issues/12961))
3795 +- Fix(kickstart.sh): handle the case when `tput colors` doesn't return a number ([#12979](https://github.com/netdata/netdata/issues/12979))
3796 +- Fix: don't kill Netdata PIDs if successfully stopped Netdata ([#12982](https://github.com/netdata/netdata/issues/12982))
3797 +- Modify code to resolve compile warning issue ([#12969](https://github.com/netdata/netdata/issues/12969))
3798 +- Make heartbeat a static chart ([#12986](https://github.com/netdata/netdata/issues/12986))
3799 +- Improve reconnect node instructions ([#12987](https://github.com/netdata/netdata/issues/12987))
3800 +- Faster queries ([#12988](https://github.com/netdata/netdata/issues/12988))
3801 +- Stream and advertise metric correlations to the cloud ([#12940](https://github.com/netdata/netdata/issues/12940))
3802 +- Return rc->last_update from alarms_values api ([#12968](https://github.com/netdata/netdata/issues/12968))
3803 +- Fix compilation warnings ([#12993](https://github.com/netdata/netdata/issues/12993))
3804 +- Fix nanosleep on platforms other than Linux ([#12991](https://github.com/netdata/netdata/issues/12991))
3805 +- Run the /net/dev module of the proc plugin in a separate thread ([#12996](https://github.com/netdata/netdata/issues/12996))
3806 +- Update dashboard to version v2.25.4. ([#13000](https://github.com/netdata/netdata/issues/13000))
3807 +- Don't expose the chart definition to streaming if there is no metadata change ([#12990](https://github.com/netdata/netdata/issues/12990))
3808 +- Add dictionary support to statsd ([#12980](https://github.com/netdata/netdata/issues/12980))
3809 +- Delay children chart obsoletion check ([#12992](https://github.com/netdata/netdata/issues/12992))
3810 +- Use printf instead of echo for printing collected warnings in kickstart.sh. ([#13002](https://github.com/netdata/netdata/issues/13002))
3811 +- Autodetect coverity install path to increase robustness ([#12995](https://github.com/netdata/netdata/issues/12995))
3812 +- Alarms py collector add filtering ([#12972](https://github.com/netdata/netdata/issues/12972))
3813 +- Add Alpine 3.16 to CI and platform support document. ([#12997](https://github.com/netdata/netdata/issues/12997))
3814 +- Fix COVERITY_PATH added with INSTALL_DIR into PATH ([#13014](https://github.com/netdata/netdata/issues/13014))
3815 +- Cleanup Challenge Response Code ([#11730](https://github.com/netdata/netdata/issues/11730))
3816 +- Pass the child machine's guid to the goto_url link ([#12609](https://github.com/netdata/netdata/issues/12609))
3817 +- Only try to update repo metadata in updater script if needed. ([#13009](https://github.com/netdata/netdata/issues/13009))
3818 +- Cache invariant components in static builds to reduce build times. ([#12877](https://github.com/netdata/netdata/issues/12877))
3819 +- Fix coverity issue 378598 ([#13022](https://github.com/netdata/netdata/issues/13022))
3820 +- Initialize a pointer and add a check for it ([#13023](https://github.com/netdata/netdata/issues/13023))
3821 +- Prevent gap filling on dbengine gaps ([#13027](https://github.com/netdata/netdata/issues/13027))
3822 +- Update dashboard to version v2.25.6. ([#13028](https://github.com/netdata/netdata/issues/13028))
3823 +- Add hostname to mirrored hosts ([#13030](https://github.com/netdata/netdata/issues/13030))
3824 +- Update apps_groups.conf ([#13033](https://github.com/netdata/netdata/issues/13033))
3825 +- Trigger queue removed alerts on health log exchange with cloud ([#12954](https://github.com/netdata/netdata/issues/12954))
3826 +- Check return value and log an error on failure ([#13037](https://github.com/netdata/netdata/issues/13037))
3827 +- Fix coverity issue 378617,378615 ([#13021](https://github.com/netdata/netdata/issues/13021))
3828 +- Skip collecting network interface speed and duplex if carrier is down ([#13019](https://github.com/netdata/netdata/issues/13019))
3829 +- When sending a dimension for the first time, make sure there is a non zero created_at timestamp ([#13035](https://github.com/netdata/netdata/issues/13035))
3830 +- Treat dimensions as normal when we don't have enough/valid data. ([#13005](https://github.com/netdata/netdata/issues/13005))
3831 +- Replace `history` with relevant `dbengine` params ([#13041](https://github.com/netdata/netdata/issues/13041))
3832 +- Fix the retry count and netdata_exit check when running an sqlite3_step command ([#13040](https://github.com/netdata/netdata/issues/13040))
3833 +- Write pid file (needed by logrotate) ([#9377](https://github.com/netdata/netdata/issues/9377))
3834 +- Add additional metadata to the data response ([#13036](https://github.com/netdata/netdata/issues/13036))
3835 +- Fix disabled apps (ebpf.plugin) ([#13044](https://github.com/netdata/netdata/issues/13044))
3836 +- Add note about anomaly advisor ([#13042](https://github.com/netdata/netdata/issues/13042))
3837 +- Schedule retention message calculation to a worker thread ([#13039](https://github.com/netdata/netdata/issues/13039))
3838 +- Dictionary with JudyHS and double linked list ([#13032](https://github.com/netdata/netdata/issues/13032))
3839 +- Coverity fixes about statsd; removal of strsame ([#13049](https://github.com/netdata/netdata/issues/13049))
3840 +- Fix dictionary crash walkthrough empty ([#13051](https://github.com/netdata/netdata/issues/13051))
3841 +- Dictionary improvements ([#13052](https://github.com/netdata/netdata/issues/13052))
3842 +- Check for host labels when linking alerts for children ([#13053](https://github.com/netdata/netdata/issues/13053))
3843 +- Fix coverity 378625 ([#13055](https://github.com/netdata/netdata/issues/13055))
3844 +- Add the ability to merge dictionary items ([#13054](https://github.com/netdata/netdata/issues/13054))
3845 +- Fix(cgroup.plugin): read k8s_cluster_name label from the correct file ([#13062](https://github.com/netdata/netdata/issues/13062))
3846 +- Initialize chart label key parameter correctly ([#13061](https://github.com/netdata/netdata/issues/13061))
3847 +- Update codeowners ([#13060](https://github.com/netdata/netdata/issues/13060))
3848 +- Fix handling of temp directory in kickstart when uninstalling. ([#13056](https://github.com/netdata/netdata/issues/13056))
3849 +- Fix locking access to chart labels ([#13064](https://github.com/netdata/netdata/issues/13064))
3850 +- Allow usage of the new MQTT 5 implementation ([#12838](https://github.com/netdata/netdata/issues/12838))
3851 +- Added Alma Linux 9 and RHEL 9 support to CI and packaging. ([#13058](https://github.com/netdata/netdata/issues/13058))
3852 +- Update default value for "host anomaly rate threshold" ([#13075](https://github.com/netdata/netdata/issues/13075))
3853 +- Add improved reinstall documentation. ([#13047](https://github.com/netdata/netdata/issues/13047))
3854 +- Fix handling of DEB package naming in CI. ([#13076](https://github.com/netdata/netdata/issues/13076))
3855 +- Fix(updater): don't produce any output if binpkg update completed successfully ([#13081](https://github.com/netdata/netdata/issues/13081))
3856 +- Remove Fedora 34 from CI and package builds. ([#12875](https://github.com/netdata/netdata/issues/12875))
3857 +- Fix Coverity errors in mqtt_websockets submodule ([#13082](https://github.com/netdata/netdata/issues/13082))
3858 +- Update README.md ([#13088](https://github.com/netdata/netdata/issues/13088))
3859 +- Update README.md ([#13089](https://github.com/netdata/netdata/issues/13089))
3860 +- Fix(updater): return 0 on successful update for native packages when running interactively ([#13083](https://github.com/netdata/netdata/issues/13083))
3861 +
3862 +## [1.34.0] - 2022-04-14
3863 +
3864 +### Merged Pull Requests:
3865 +
3866 +- Removed reference to latest release
3867 +- Rename DO_NOT_TRACK to DISABLE_TELEMETRY ([#12126](https://github.com/netdata/netdata/issues/12126))
3868 +- Documentation: Fixed broken links ([#12142](https://github.com/netdata/netdata/issues/12142))
3869 +- Fix typo in ZFS ARC Cache size info ([#12138](https://github.com/netdata/netdata/issues/12138))
3870 +- Kickstart.sh: fix quoting for globbing ([#12148](https://github.com/netdata/netdata/issues/12148))
3871 +- Consolidate build matrix across CI jobs. ([#11807](https://github.com/netdata/netdata/issues/11807))
3872 +- Fix: CPU frequency calculation in system-info.sh ([#12162](https://github.com/netdata/netdata/issues/12162))
3873 +- Fix so that allow_past correctly works in memory mode ram and save ([#12136](https://github.com/netdata/netdata/issues/12136))
3874 +- Fix the format=array output in context queries ([#12129](https://github.com/netdata/netdata/issues/12129))
3875 +- Docs: Removed Google Analytics tags ([#12145](https://github.com/netdata/netdata/issues/12145))
3876 +- Improve messaging around unknown install handling in kickstart script. ([#12134](https://github.com/netdata/netdata/issues/12134))
3877 +- Show the number of processes/threads for empty apps groups ([#11834](https://github.com/netdata/netdata/issues/11834))
3878 +- Feat(apps.plugin): group Apple Filing Protocol daemons into `afp` group ([#12078](https://github.com/netdata/netdata/issues/12078))
3879 +- Fix alerts to raise correctly when the delay and repeat parameters are used together ([#12164](https://github.com/netdata/netdata/issues/12164))
3880 +- Remove check for aclk_ng and prometheus in order to assume protobuf in buildinfo ([#12168](https://github.com/netdata/netdata/issues/12168))
3881 +- Tidy up the installer script usage message ([#12171](https://github.com/netdata/netdata/issues/12171))
3882 +- Corrected the cloud claiming options ([#12161](https://github.com/netdata/netdata/issues/12161))
3883 +- Add `stress-ng` and `gremlin` to apps_groups.conf ([#12165](https://github.com/netdata/netdata/issues/12165))
3884 +- Fix: claiming with wget ([#12163](https://github.com/netdata/netdata/issues/12163))
3885 +- Restructured cloud installation ([#12143](https://github.com/netdata/netdata/issues/12143))
3886 +- Adds install method to /api/v1/info as label ([#12040](https://github.com/netdata/netdata/issues/12040))
3887 +- Overhaul handling of auto-updates in the installer code. ([#12076](https://github.com/netdata/netdata/issues/12076))
3888 +- Finish pushing handling of kickstart checksums to netdata/learn. ([#12176](https://github.com/netdata/netdata/issues/12176))
3889 +- Revert "Overhaul handling of auto-updates in the installer code. ([#12076](https://github.com/netdata/netdata/issues/12076))" ([#12182](https://github.com/netdata/netdata/issues/12182))
3890 +- Fix typos ([#12183](https://github.com/netdata/netdata/issues/12183))
3891 +- Create a removed alert event if chart is obsolete ([#12021](https://github.com/netdata/netdata/issues/12021))
3892 +- Fix(docs): unresolved file references ([#12191](https://github.com/netdata/netdata/issues/12191))
3893 +- Fix compilation warnings on macOS ([#12082](https://github.com/netdata/netdata/issues/12082))
3894 +- Fix(python.d/nvidia_smi): use uid when can't find the username ([#12184](https://github.com/netdata/netdata/issues/12184))
3895 +- Update libs code ([#12190](https://github.com/netdata/netdata/issues/12190))
3896 +- Add serial numbers to chart names ([#12067](https://github.com/netdata/netdata/issues/12067))
3897 +- Update packaging CI to only run a limited set of jobs on PRs. ([#12156](https://github.com/netdata/netdata/issues/12156))
3898 +- Bump google-github-actions/setup-gcloud from 0.5.0 to 0.5.1 ([#12194](https://github.com/netdata/netdata/issues/12194))
3899 +- Properly check out the repo when running the packaging workflow on push. ([#12203](https://github.com/netdata/netdata/issues/12203))
3900 +- Docs: document the issue with seccomp and claiming ([#12192](https://github.com/netdata/netdata/issues/12192))
3901 +- Fix `hpssa` parse error ([#12206](https://github.com/netdata/netdata/issues/12206))
3902 +- Remove deprecated node.d modules ([#12047](https://github.com/netdata/netdata/issues/12047))
3903 +- Fix two small typos in documentation ([#12208](https://github.com/netdata/netdata/issues/12208))
3904 +- Add -W keepopenfds option. ([#12211](https://github.com/netdata/netdata/issues/12211))
3905 +- Remove NETDATA_WITH_UUID def because it's not used anywhere. ([#12044](https://github.com/netdata/netdata/issues/12044))
3906 +- Remove unused NETDATA_NO_ATOMIC_INSTRUCTIONS macro ([#12045](https://github.com/netdata/netdata/issues/12045))
3907 +- Skip info field in protobuf alerts messages if it doesn't exist. ([#12210](https://github.com/netdata/netdata/issues/12210))
3908 +- Update AWS SNS README.md ([#11946](https://github.com/netdata/netdata/issues/11946))
3909 +- Remove SIZEOF_VOIDP and ENVIRONMENT{32,64} macros. ([#12046](https://github.com/netdata/netdata/issues/12046))
3910 +- Bump follow-redirects from 1.14.7 to 1.14.8 ([#12124](https://github.com/netdata/netdata/issues/12124))
3911 +- Bump karma from 6.0.2 to 6.3.14 ([#12116](https://github.com/netdata/netdata/issues/12116))
3912 +- Update github's code owners configuration. ([#12213](https://github.com/netdata/netdata/issues/12213))
3913 +- Remove chart specific configuration from netdata.conf except enabled ([#12209](https://github.com/netdata/netdata/issues/12209))
3914 +- Improve cleaning up of orphan hosts ([#12201](https://github.com/netdata/netdata/issues/12201))
3915 +- Add `--no-same-owner` to `tar -xf` in installer ([#11940](https://github.com/netdata/netdata/issues/11940))
3916 +- Assorted CI cleanup. ([#11777](https://github.com/netdata/netdata/issues/11777))
3917 +- Skip training of constant metrics. ([#12212](https://github.com/netdata/netdata/issues/12212))
3918 +- Store dimension hidden option in the metadata db ([#12196](https://github.com/netdata/netdata/issues/12196))
3919 +- Remove ACLK_NEWARCH_DEVMODE ([#12018](https://github.com/netdata/netdata/issues/12018))
3920 +- Minor - remove dead code from ACLK Legacy ([#12230](https://github.com/netdata/netdata/issues/12230))
3921 +- Track anomaly rates with DBEngine. ([#12083](https://github.com/netdata/netdata/issues/12083))
3922 +- Fix node information send to the cloud for older agent versions ([#12223](https://github.com/netdata/netdata/issues/12223))
3923 +- Adds all query types to aclk_processed_query_type ([#12036](https://github.com/netdata/netdata/issues/12036))
3924 +- Fix handling of repository name in CI workflows. ([#12234](https://github.com/netdata/netdata/issues/12234))
3925 +- Fix builds where HAVE_C___ATOMIC is not defined. ([#12240](https://github.com/netdata/netdata/issues/12240))
3926 +- Add a fix to correctly register child nodes to the cloud via a parent ([#12241](https://github.com/netdata/netdata/issues/12241))
3927 +- Bundle protobuf on CentOS 7 and earlier. ([#12167](https://github.com/netdata/netdata/issues/12167))
3928 +- Add a check to make sure internal chart state is initialized
3929 +- Fixed typo in docs/guides/monitor/anomaly-detection-python.md file ([#12220](https://github.com/netdata/netdata/issues/12220))
3930 +- EBPF installation fixes ([#12242](https://github.com/netdata/netdata/issues/12242))
3931 +- [makeself] Fix license URL ([#12219](https://github.com/netdata/netdata/issues/12219))
3932 +- Adds chart for incoming proto msgs in new cloud protocol ([#11969](https://github.com/netdata/netdata/issues/11969))
3933 +- Docs: Fix typo in step-10.md ([#12263](https://github.com/netdata/netdata/issues/12263))
3934 +- Setting a DB version (to make future schema changes / migration easier) ([#12249](https://github.com/netdata/netdata/issues/12249))
3935 +- Netdata.service: unbreak plugins that use sudo ([#10201](https://github.com/netdata/netdata/issues/10201))
3936 +- If not separator is found in url, clean decoded_query_string ([#12266](https://github.com/netdata/netdata/issues/12266))
3937 +- Fix: correct the spelling of @thiagoftsm in codeowners ([#12267](https://github.com/netdata/netdata/issues/12267))
3938 +- Delete package.json ([#12265](https://github.com/netdata/netdata/issues/12265))
3939 +- Inform cloud about inability to deliver data payload ([#12041](https://github.com/netdata/netdata/issues/12041))
3940 +- Make netdata-uninstaller.sh POSIX compatibility and add --uninstall flag… ([#12195](https://github.com/netdata/netdata/issues/12195))
3941 +- Add host labels _aclk_ng_new_cloud_protocol ([#12278](https://github.com/netdata/netdata/issues/12278))
3942 +- Use the new error mechanism in case host not found ([#12277](https://github.com/netdata/netdata/issues/12277))
3943 +- Timex: make offset rrd independently configurable ([#12281](https://github.com/netdata/netdata/issues/12281))
3944 +- Fixed typos in docs/Running-behind-haproxy.md ([#12272](https://github.com/netdata/netdata/issues/12272))
3945 +- Feat(health): add charts.d/nut alarms ([#12285](https://github.com/netdata/netdata/issues/12285))
3946 +- Add support to the updater to toggle auto-updates on and off. ([#12202](https://github.com/netdata/netdata/issues/12202))
3947 +- Fix detection of existing installs. ([#12199](https://github.com/netdata/netdata/issues/12199))
3948 +- Fix(kickstart): use correct syntax for claiming extra parameters ([#12289](https://github.com/netdata/netdata/issues/12289))
3949 +- Chore: remove unused variable in the system-info script ([#12297](https://github.com/netdata/netdata/issues/12297))
3950 +- Fix: cpu system info detection on macOS ([#12293](https://github.com/netdata/netdata/issues/12293))
3951 +- Fixing stderr output when testing tmpdir ([#12298](https://github.com/netdata/netdata/issues/12298))
3952 +- Fix: CPU frequency detection for some containers ([#12306](https://github.com/netdata/netdata/issues/12306))
3953 +- Add proper handling for legacy kickstart install detection. ([#12273](https://github.com/netdata/netdata/issues/12273))
3954 +- Fix incorrect install type on some older nightly installs. ([#12282](https://github.com/netdata/netdata/issues/12282))
3955 +- Adds node_id into mirrored_hosts list ([#12307](https://github.com/netdata/netdata/issues/12307))
3956 +- Fix uninstall using kickstart flag ([#12304](https://github.com/netdata/netdata/issues/12304))
3957 +- Fix 'connect' typo anomaly-detection-python.md ([#12317](https://github.com/netdata/netdata/issues/12317))
3958 +- Fix(health): adjust 10s_ipv4_tcp_resets_sent warn trigger ([#12320](https://github.com/netdata/netdata/issues/12320))
3959 +- Fix: returning 0 for CPU frequency when unknown ([#12323](https://github.com/netdata/netdata/issues/12323))
3960 +- Fix underscore in libnetfilter-acct-dev package ([#12326](https://github.com/netdata/netdata/issues/12326))
3961 +- Remove check for config file in stock conf dir ([#12327](https://github.com/netdata/netdata/issues/12327))
3962 +- Add latency dimension ([#12329](https://github.com/netdata/netdata/issues/12329))
3963 +- Pull in build dependencies when updating a locally built install. ([#12294](https://github.com/netdata/netdata/issues/12294))
3964 +- Bump actions/checkout from 2 to 3 ([#12330](https://github.com/netdata/netdata/issues/12330))
3965 +- Fix incorrect function names in netdata-updater.sh.
3966 +- Introduce new chart for process states metrics ([#12305](https://github.com/netdata/netdata/issues/12305))
3967 +- Fix: container virtualization detection with systemd-detect-virt ([#12338](https://github.com/netdata/netdata/issues/12338))
3968 +- Fix: use default "bind to" in native packages ([#12336](https://github.com/netdata/netdata/issues/12336))
3969 +- Add Fedora 36 to CI and package builds. ([#12268](https://github.com/netdata/netdata/issues/12268))
3970 +- Add Ubuntu 22.04 to CI and package builds. ([#12269](https://github.com/netdata/netdata/issues/12269))
3971 +- Workflow to trigger cloud regression e2e tests ([#12299](https://github.com/netdata/netdata/issues/12299))
3972 +- CO-RE and syscalls ([#12318](https://github.com/netdata/netdata/issues/12318))
3973 +- Redirect dependency handling script output to logfile when running from updater. ([#12341](https://github.com/netdata/netdata/issues/12341))
3974 +- Adjust cloud dimension update frequency ([#12284](https://github.com/netdata/netdata/issues/12284))
3975 +- Prepend context in anomaly rate dimension id. ([#12342](https://github.com/netdata/netdata/issues/12342))
3976 +- Adds more info to aclk-state API call ([#12231](https://github.com/netdata/netdata/issues/12231))
3977 +- Final migration of release code off of Travis CI. ([#12239](https://github.com/netdata/netdata/issues/12239))
3978 +- Fix string handling for Slack CI notification bodies. ([#12235](https://github.com/netdata/netdata/issues/12235))
3979 +- Add warning about broken Docker hosts in container entrypoint. ([#12175](https://github.com/netdata/netdata/issues/12175))
3980 +- Improve agent to cloud synchronization performance ([#12348](https://github.com/netdata/netdata/issues/12348))
3981 +- Fix(health): make ioping_disk_latency alarm less sensitive ([#12351](https://github.com/netdata/netdata/issues/12351))
3982 +- Docs fix: Add missing frontmatter ([#12353](https://github.com/netdata/netdata/issues/12353))
3983 +- Fix typo in new release workflow.
3984 +- Fix pushing of changelog and versioning changes in release process.
3985 +- Fix chart synchronization with the cloud #12356
3986 +- Replace write with read locks ([#12309](https://github.com/netdata/netdata/issues/12309))
3987 +- Minor - fix analytics_build_info ([#12354](https://github.com/netdata/netdata/issues/12354))
3988 +- Fix handling of pushing commits for release process. ([#12359](https://github.com/netdata/netdata/issues/12359))
3989 +- Only store alert hashes once per health config iteration ([#12292](https://github.com/netdata/netdata/issues/12292))
3990 +- Fix(ci/release): limit the number of issues to fetch from GitHub when generating changelog ([#12371](https://github.com/netdata/netdata/issues/12371))
3991 +- Fix pushing version bump commits in release/nightly build workflow. ([#12372](https://github.com/netdata/netdata/issues/12372))
3992 +- Fix version handling issues in release workflow. ([#12375](https://github.com/netdata/netdata/issues/12375))
3993 +- Change default OOM score and scheduling policy to behave more sanely. ([#12271](https://github.com/netdata/netdata/issues/12271))
3994 +- Fix(ebpf.plugin): remove pid file on exit ([#12379](https://github.com/netdata/netdata/issues/12379))
3995 +- Chore(ci): add area/ebpf to PR labeler ([#12382](https://github.com/netdata/netdata/issues/12382))
3996 +- Fix double host prefix ([#12380](https://github.com/netdata/netdata/issues/12380))
3997 +- Bump google-github-actions/setup-gcloud from 0.5.1 to 0.6.0 ([#12386](https://github.com/netdata/netdata/issues/12386))
3998 +- Bump google-github-actions/upload-cloud-storage from 0.5.0 to 0.7.0 ([#12387](https://github.com/netdata/netdata/issues/12387))
3999 +- Dont check host health enabled if host is null ([#12392](https://github.com/netdata/netdata/issues/12392))
4000 +- Fix: shellcheck warnings in docker run.sh ([#12377](https://github.com/netdata/netdata/issues/12377))
4001 +- Delay removed event for 60 seconds after the chart's last collected time ([#12388](https://github.com/netdata/netdata/issues/12388))
4002 +- Remove unecessary error report for proc and sys files ([#12385](https://github.com/netdata/netdata/issues/12385))
4003 +- Bump the version of Coverity we are using to the latest. ([#12398](https://github.com/netdata/netdata/issues/12398))
4004 +- Remove owner check from webserver ([#12339](https://github.com/netdata/netdata/issues/12339))
4005 +- Fix crash when netdatacli command output too long ([#12393](https://github.com/netdata/netdata/issues/12393))
4006 +- Update dashboard to version v2.21.3. ([#12407](https://github.com/netdata/netdata/issues/12407))
4007 +- Remove backends subsystem ([#12146](https://github.com/netdata/netdata/issues/12146))
4008 +- Fix handling of checks for newer updater script on update. ([#12367](https://github.com/netdata/netdata/issues/12367))
4009 +- Fix update/install commands in Docker image test code. ([#12378](https://github.com/netdata/netdata/issues/12378))
4010 +- Chore: remove "web files" options leftovers ([#12403](https://github.com/netdata/netdata/issues/12403))
4011 +- Chore: remove contrib/sles11 ([#12410](https://github.com/netdata/netdata/issues/12410))
4012 +- Add additional link to badges doc ([#12412](https://github.com/netdata/netdata/issues/12412))
4013 +- Fix: temporary disable charts.d apcupsd collectors ([#12415](https://github.com/netdata/netdata/issues/12415))
4014 +- Reorder functions properly in updater script. ([#12399](https://github.com/netdata/netdata/issues/12399))
4015 +- Fix(charts.d.plugin): fix recursion in apcupsd_check and enable it again ([#12418](https://github.com/netdata/netdata/issues/12418))
4016 +- Fix: lowercase uuidgen ([#12422](https://github.com/netdata/netdata/issues/12422))
4017 +- Fix: add a delay between starting Netdata and checking pids ([#12420](https://github.com/netdata/netdata/issues/12420))
4018 +- Fix packaging CI failure notifications to actually report _all_ steps. ([#12394](https://github.com/netdata/netdata/issues/12394))
4019 +- Add retries in preparation of test environments for build CI. ([#12198](https://github.com/netdata/netdata/issues/12198))
4020 +- Sanely handle very large PR bodies in package build CI matrix generation. ([#12218](https://github.com/netdata/netdata/issues/12218))
4021 +- Add a dry run mode to the kickstart script. ([#12322](https://github.com/netdata/netdata/issues/12322))
4022 +- Fix os_name for older agent versions streaming to a parent ([#12425](https://github.com/netdata/netdata/issues/12425))
4023 +- Revise claiming error message in kickstart script. ([#12248](https://github.com/netdata/netdata/issues/12248))
4024 +- Ensure claim_id is sent always lowercase ([#12423](https://github.com/netdata/netdata/issues/12423))
4025 +- Docs: Fix broken link ([#12428](https://github.com/netdata/netdata/issues/12428))
4026 +- Fix(kickstart.sh): prefer shasum over sha256sum ([#12429](https://github.com/netdata/netdata/issues/12429))
4027 +- Update Agent version in the Swagger API ([#12374](https://github.com/netdata/netdata/issues/12374))
4028 +- Don't publish nightlies if they are unchanged since the last nightly. ([#12411](https://github.com/netdata/netdata/issues/12411))
4029 +- Update build/m4/ax_pthread.m4 ([#12390](https://github.com/netdata/netdata/issues/12390))
4030 +- Apps.plugin: fix for plugin sending unnecessary data in freebsd ([#12446](https://github.com/netdata/netdata/issues/12446))
4031 +- Fix unclaimed agents ([#12449](https://github.com/netdata/netdata/issues/12449))
4032 +- Add delay on missing priv_key ([#12450](https://github.com/netdata/netdata/issues/12450))
4033 +- Fix(cups.plugin): add `cups` prefix to chart context ([#12444](https://github.com/netdata/netdata/issues/12444))
4034 +- Fix install type in netdata-uninstaller.sh ([#12438](https://github.com/netdata/netdata/issues/12438))
4035 +- Fix: CPU frequency detection of FreeBSD ([#12440](https://github.com/netdata/netdata/issues/12440))
4036 +- Update dashboard to version v2.21.8. ([#12455](https://github.com/netdata/netdata/issues/12455))
4037 +- Fix(collectors/cgroups): use different context for cgroup network charts ([#12454](https://github.com/netdata/netdata/issues/12454))
4038 +- Feat(statsd.plugin): add Asterisk configuration file with synthetic charts ([#12381](https://github.com/netdata/netdata/issues/12381))
4039 +- Add content for eBPF documentation ([#12417](https://github.com/netdata/netdata/issues/12417))
4040 +- Docs(collectors/python.d): remove mention of compatibility with py2/py3 ([#12465](https://github.com/netdata/netdata/issues/12465))
4041 +- Allow updates without environment files in some cases. ([#12400](https://github.com/netdata/netdata/issues/12400))
4042 +- Chore(deps): bump google-github-actions/upload-cloud-storage ([#12468](https://github.com/netdata/netdata/issues/12468))
4043 +- Feat(collectors/cgroups): prefer `blkio.*_recursive` when available ([#12462](https://github.com/netdata/netdata/issues/12462))
4044 +- Minor - fix configure output of eBPF ([#12471](https://github.com/netdata/netdata/issues/12471))
4045 +- Implement fine-grained error replies to cloud queries ([#12460](https://github.com/netdata/netdata/issues/12460))
4046 +- Switch to using netdata-updater.sh to toggle auto updates on and off when installing. ([#12296](https://github.com/netdata/netdata/issues/12296))
4047 +- Use the built agentversion for Netdata static build archive name. ([#12335](https://github.com/netdata/netdata/issues/12335))
4048 +- Extend aclk-state information ([#12458](https://github.com/netdata/netdata/issues/12458))
4049 +- Update ebpf dashboard ([#12467](https://github.com/netdata/netdata/issues/12467))
4050 +- Add suraj to codeowners ([#12492](https://github.com/netdata/netdata/issues/12492))
4051 +- Open fd3 before first use ([#12491](https://github.com/netdata/netdata/issues/12491))
4052 +- Adjust timex.plugin information to be less cryptic ([#12495](https://github.com/netdata/netdata/issues/12495))
4053 +- Updated static build components to latest versions. ([#12461](https://github.com/netdata/netdata/issues/12461))
4054 +- PRs template: Include user information section ([#12499](https://github.com/netdata/netdata/issues/12499))
4055 +- Bump the debhelper compat level to 10 in our DEB packaging code. ([#12488](https://github.com/netdata/netdata/issues/12488))
4056 +- Dont send a snapshot with snapshot id 0 ([#12469](https://github.com/netdata/netdata/issues/12469))
4057 +- Provide better handling of config files in Docker containers. ([#12310](https://github.com/netdata/netdata/issues/12310))
4058 +- Stream compression - Deactivate compression at runtime in case of a compressor buffer overflow ([#12037](https://github.com/netdata/netdata/issues/12037))
4059 +- Timex: this plugin enables timex plugin for non-linux systems ([#12489](https://github.com/netdata/netdata/issues/12489))
4060 +- Feat(collectors/timex.plugin): add clock status chart ([#12501](https://github.com/netdata/netdata/issues/12501))
4061 +- Fix centos7 gpg key issue ([#12506](https://github.com/netdata/netdata/issues/12506))
4062 +- Remove Konstantinos Kaskavelis from CODEOWNERS. ([#12508](https://github.com/netdata/netdata/issues/12508))
4063 +- Fix: Netdata segfault because of 2 timex.plugin threads ([#12512](https://github.com/netdata/netdata/issues/12512))
4064 +- Add ml notebooks ([#12313](https://github.com/netdata/netdata/issues/12313))
4065 +- Feat(netdata-updater): add `--force-update` parameter ([#12493](https://github.com/netdata/netdata/issues/12493))
4066 +- Fix using incorrect repo when building native packages ([#12522](https://github.com/netdata/netdata/issues/12522))
4067 +- Use live charts to count the total number of dimensions. ([#12504](https://github.com/netdata/netdata/issues/12504))
4068 +- Skip `foreach` alarms for dimensions of anomaly rate chart. ([#12441](https://github.com/netdata/netdata/issues/12441))
4069 +- Fix(kickstart.sh): use `$ROOTCMD` when setting auto updates ([#12526](https://github.com/netdata/netdata/issues/12526))
4070 +- Docs: fix unresolved file references ([#12528](https://github.com/netdata/netdata/issues/12528))
4071 +- Feat(collectors): update go.d.plugin version to v0.32.0 ([#12536](https://github.com/netdata/netdata/issues/12536))
4072 +- Fix: use internal defaults for sched policy/oom score in native packages ([#12529](https://github.com/netdata/netdata/issues/12529))
4073 +- Allocate buffer and release on callback when executing agent CLI commands ([#12540](https://github.com/netdata/netdata/issues/12540))
4074 +- Fix(netdata-updater): properly handle update for debian packages ([#12524](https://github.com/netdata/netdata/issues/12524))
4075 +- Reduce min `dbengine anomaly rate every` 60s->30s ([#12543](https://github.com/netdata/netdata/issues/12543))
4076 +- Packaging: upgrage protocol buffer version to 3.19.4 ([#12537](https://github.com/netdata/netdata/issues/12537))
4077 +- Fix: use `/proc/cpuinfo` for CPU freq detection as a last resort ([#12550](https://github.com/netdata/netdata/issues/12550))
4078 +- Socket connections (eBPF) and bug fix ([#12532](https://github.com/netdata/netdata/issues/12532))
4079 +- Unblock cgroup version detection with systemd ([#12553](https://github.com/netdata/netdata/issues/12553))
4080 +- ML-related changes to address issue/discussion comments. ([#12494](https://github.com/netdata/netdata/issues/12494))
4081 +- Don't send alert events without wc->host ([#12547](https://github.com/netdata/netdata/issues/12547))
4082 +- Add spport for passing extraclaiming options when claiming with Docker. ([#12457](https://github.com/netdata/netdata/issues/12457))
4083 +- Make sure registered static threads are unique. ([#12538](https://github.com/netdata/netdata/issues/12538))
4084 +- Configure.ac: Unconditionally link against libatomic ([#12366](https://github.com/netdata/netdata/issues/12366))
4085 +- Feat(netdata-updater): add the script name when logging ([#12557](https://github.com/netdata/netdata/issues/12557))
4086 +- Fix FreeBSD bundled protobuf build if system one is present ([#12552](https://github.com/netdata/netdata/issues/12552))
4087 +- Fix coverity scan. ([#12561](https://github.com/netdata/netdata/issues/12561))
4088 +- Chore(deps): bump peter-evans/create-pull-request from 3 to 4 ([#12533](https://github.com/netdata/netdata/issues/12533))
4089 +- [Agent crash on api/v1/info call] - fixes #12559 ([#12565](https://github.com/netdata/netdata/issues/12565))
4090 +- Explicitly use debhelper to enable systemd service ([#12542](https://github.com/netdata/netdata/issues/12542))
4091 +- Fix temporary directory handling for dependency handling script in updater. ([#12562](https://github.com/netdata/netdata/issues/12562))
4092 +- Fix Build on MacOS ([#12554](https://github.com/netdata/netdata/issues/12554))
4093 +- Set repo priority in YUM/DNF repository configuration. ([#12332](https://github.com/netdata/netdata/issues/12332))
4094 +- Initialize foreach alarms of dimensions in health thread. ([#12452](https://github.com/netdata/netdata/issues/12452))
4095 +- Properly skip running the updater in kickstart dry-run mode. ([#12497](https://github.com/netdata/netdata/issues/12497))
4096 +- Properly recognize Almalinux as an RHEL clone. ([#12487](https://github.com/netdata/netdata/issues/12487))
4097 +- Improve ACLK sync logging ([#12534](https://github.com/netdata/netdata/issues/12534))
4098 +- Respect dimension hidden option when executing a query and building the dimension list from the database ([#12570](https://github.com/netdata/netdata/issues/12570))
4099 +- Update ebpf doc ([#12503](https://github.com/netdata/netdata/issues/12503))
4100 +- Fix invocation of the coverity script. ([#12576](https://github.com/netdata/netdata/issues/12576))
4101 +- Fix ioping permissions ([#12580](https://github.com/netdata/netdata/issues/12580))
4102 +- Update links to documentation (eBPF) ([#12581](https://github.com/netdata/netdata/issues/12581))
4103 +- Fix memory leaks on Netdata exit ([#12511](https://github.com/netdata/netdata/issues/12511))
4104 +- Fix issue with charts not properly synchronized with the cloud ([#12451](https://github.com/netdata/netdata/issues/12451))
4105 +- Feat(collectors): update go.d.plugin version to v0.32.1 ([#12586](https://github.com/netdata/netdata/issues/12586))
4106 +- Chore: disable chart exists message ([#12594](https://github.com/netdata/netdata/issues/12594))
4107 +- Update ML-related charts ([#12574](https://github.com/netdata/netdata/issues/12574))
4108 +- Check if libatomic can be linked ([#12583](https://github.com/netdata/netdata/issues/12583))
4109 +- Fix coverity issues ([#12598](https://github.com/netdata/netdata/issues/12598))
4110 +- Fix ebpf exit ([#12590](https://github.com/netdata/netdata/issues/12590))
4111 +- Better check for IOMainPort on MacOS ([#12600](https://github.com/netdata/netdata/issues/12600))
4112 +- Feat(cgroups.plugin): add CPU throttling charts ([#12591](https://github.com/netdata/netdata/issues/12591))
4113 +- Enable streaming of anomaly_detection.* charts ([#12606](https://github.com/netdata/netdata/issues/12606))
4114 +- Fix a compilation warning ([#12608](https://github.com/netdata/netdata/issues/12608))
4115 +- Fix training/prediction stats charts context. ([#12610](https://github.com/netdata/netdata/issues/12610))
4116 +- Update anonymous-statistics readme for PH Cloud ([#12571](https://github.com/netdata/netdata/issues/12571))
4117 +- Update dashboard to version v2.22.3. ([#12607](https://github.com/netdata/netdata/issues/12607))
4118 +- Add some new ml params to README ([#12575](https://github.com/netdata/netdata/issues/12575))
4119 +- Feat: add support for cloud providers info to /api/v1/info ([#12613](https://github.com/netdata/netdata/issues/12613))
4120 +- Kickstart improved messaging ([#12577](https://github.com/netdata/netdata/issues/12577))
4121 +- Fix gpg key issue ([#12519](https://github.com/netdata/netdata/issues/12519))
4122 +- Fix print: command not found issue ([#12615](https://github.com/netdata/netdata/issues/12615))
4123 +- Fix(cgroups.plugin): set CPU prev usage before first usage. ([#12622](https://github.com/netdata/netdata/issues/12622))
4124 +- Don't do fatal on error writing the health api management key. ([#12623](https://github.com/netdata/netdata/issues/12623))
4125 +- Add eBPF CO-RE version and checksum files to distfile list. ([#12627](https://github.com/netdata/netdata/issues/12627))
4126 +- Bump mqtt_websockets ([#12625](https://github.com/netdata/netdata/issues/12625))
4127 +- Feat: add k8s_cluster_name host tag (GKE only) ([#12638](https://github.com/netdata/netdata/issues/12638))
4128 +- Update dashboard to version v2.22.6. ([#12653](https://github.com/netdata/netdata/issues/12653))
4129 +- Add handling for claiming non-standard install types with kickstart. ([#12064](https://github.com/netdata/netdata/issues/12064))
4130 +- Add --reinstall-clean flag and update documentation ([#12548](https://github.com/netdata/netdata/issues/12548))
4131 +- Only-build to build-only ([#12657](https://github.com/netdata/netdata/issues/12657))
4132 +- Add `locust` to `apps_groups.conf` ([#12498](https://github.com/netdata/netdata/issues/12498))
4133 +- EBPF update dashboard ([#12617](https://github.com/netdata/netdata/issues/12617))
4134 +- Fix: remove instance-specific information from chart titles ([#12644](https://github.com/netdata/netdata/issues/12644))
4135 +- Bump go.d.plugin to v0.32.2 ([#12663](https://github.com/netdata/netdata/issues/12663))
4136 +- Properly limit repository configuration dependencies. ([#12661](https://github.com/netdata/netdata/issues/12661))
4137 +- Add a timeout parameter to data queries ([#12649](https://github.com/netdata/netdata/issues/12649))
4138 +- Trigger cloud intergration workflow for PRs and pushes against master ([#12349](https://github.com/netdata/netdata/issues/12349))
4139 +- Add a chart label filter parameter in context data queries ([#12652](https://github.com/netdata/netdata/issues/12652))
4140 +- Update dashboard to version v2.24.0. ([#12668](https://github.com/netdata/netdata/issues/12668))
4141 +- [Stream compression Docs] - Enabled by default ([#12669](https://github.com/netdata/netdata/issues/12669))
4142 +- Remove on pull_request trigger ([#12670](https://github.com/netdata/netdata/issues/12670))
4143 +- Show error when clock synchronization state is unavailable ([#12667](https://github.com/netdata/netdata/issues/12667))
4144 +- Fix(ebpf.plugin): add missing chart context for cgroups charts ([#12671](https://github.com/netdata/netdata/issues/12671))
4145 +- Delete ML-related data of a host in the proper order. ([#12672](https://github.com/netdata/netdata/issues/12672))
4146 +- Chore(deps): bump actions/upload-artifact from 2 to 3 ([#12645](https://github.com/netdata/netdata/issues/12645))
4147 +- Chore(deps): bump actions/download-artifact from 2 to 3 ([#12646](https://github.com/netdata/netdata/issues/12646))
4148 +- Chore(deps): bump google-github-actions/upload-cloud-storage ([#12647](https://github.com/netdata/netdata/issues/12647))
4149 +- Add collectors/* labels ([#12675](https://github.com/netdata/netdata/issues/12675))
4150 +- Summarize encountered errors and warnings at end of kickstart script run. ([#12636](https://github.com/netdata/netdata/issues/12636))
4151 +- Fix the static build code in light of CVE-2022-24765 ([#12683](https://github.com/netdata/netdata/issues/12683))
4152 +- Dashboard network title ([#12665](https://github.com/netdata/netdata/issues/12665))
4153 +- Cancel anomaly detection threads before joining. ([#12681](https://github.com/netdata/netdata/issues/12681))
4154 +- Update dashboard to version v2.25.0. ([#12680](https://github.com/netdata/netdata/issues/12680))
4155 +- Fix regexes in release workflow code.
4156 +
4157 +## [1.33.1] - 2022-02-14
4158 +
4159 +### Merged Pull Requests:
4160 +
4161 +- Fix handling of removed packages with leftover config files in package check. ([#12033](https://github.com/netdata/netdata/issues/12033))
4162 +- Updated the docs to match new install script ([#12042](https://github.com/netdata/netdata/issues/12042))
4163 +- Fix(docs): unresolved file references ([#12053](https://github.com/netdata/netdata/issues/12053))
4164 +- [Stream Compression] - Bug fix #12043 - lz4.h compilation error - compile from source ([#12049](https://github.com/netdata/netdata/issues/12049))
4165 +- Update dashboard to version v2.20.16. ([#12052](https://github.com/netdata/netdata/issues/12052))
4166 +- Fix handling of non-x86 static builds in updater. ([#12055](https://github.com/netdata/netdata/issues/12055))
4167 +- Fix typo, tidy up sentence ([#12062](https://github.com/netdata/netdata/issues/12062))
4168 +- Replace CentOS 8 with RockyLinux 8 in CI and package builds. ([#11801](https://github.com/netdata/netdata/issues/11801))
4169 +- Updated formatting issues and copy ([#11944](https://github.com/netdata/netdata/issues/11944))
4170 +- Fix compilation errors for OpenSSL on macOS ([#12048](https://github.com/netdata/netdata/issues/12048))
4171 +- Fix runtime reclaim (aclk_kill_link) reconnect loop ([#12074](https://github.com/netdata/netdata/issues/12074))
4172 +- Docs install cleanup ([#12057](https://github.com/netdata/netdata/issues/12057))
4173 +- Docs: improve "Docker container names resolution" section ([#12079](https://github.com/netdata/netdata/issues/12079))
4174 +- Remove mention of libJudy in installation documentation for macOS ([#12080](https://github.com/netdata/netdata/issues/12080))
4175 +- Disable_ebpf_socket: Disable thread while race condition is fixed ([#12085](https://github.com/netdata/netdata/issues/12085))
4176 +- Add support for native rocky install ([#12081](https://github.com/netdata/netdata/issues/12081))
4177 +- Docs: add a note that the "Install Netdata on Synology" is maintained by community ([#12086](https://github.com/netdata/netdata/issues/12086))
4178 +- Add existing OS dependencies and add fedora/rockylinux scripts ([#11963](https://github.com/netdata/netdata/issues/11963))
4179 +- Make a lack of an os-release file non-fatal on install. ([#12087](https://github.com/netdata/netdata/issues/12087))
4180 +- Bump google-github-actions/setup-gcloud from 0.4.0 to 0.5.0 ([#12093](https://github.com/netdata/netdata/issues/12093))
4181 +- Added interactive kickstart scripts where possible ([#12098](https://github.com/netdata/netdata/issues/12098))
4182 +- Update ml/ code owners. ([#12094](https://github.com/netdata/netdata/issues/12094))
4183 +- Update scripts for POSIX compatibility ([#11961](https://github.com/netdata/netdata/issues/11961))
4184 +- Disable hashes for charts and alerts if openssl is not available or cloud is disabled ([#12071](https://github.com/netdata/netdata/issues/12071))
4185 +- Remove aclk legacy information ([#12103](https://github.com/netdata/netdata/issues/12103))
4186 +- Updated doc to match the new component name ([#12106](https://github.com/netdata/netdata/issues/12106))
4187 +- Add info about installer interactivity to anonymous installer telemetry events. ([#12088](https://github.com/netdata/netdata/issues/12088))
4188 +- Properly handle non-interactive installs as non-root users. ([#12089](https://github.com/netdata/netdata/issues/12089))
4189 +- Update repoconfig package build workflow to run on PRs and pushes. ([#12102](https://github.com/netdata/netdata/issues/12102))
4190 +- Fix handling of OracleLinux repoconfig packages. ([#12100](https://github.com/netdata/netdata/issues/12100))
4191 +- Add proper support for Oracle Linux native packages to installer. ([#12101](https://github.com/netdata/netdata/issues/12101))
4192 +- Docs: Fix paths to install boxes ([#12109](https://github.com/netdata/netdata/issues/12109))
4193 +- Adds legacy protocol deprecation banner to agent log ([#12065](https://github.com/netdata/netdata/issues/12065))
4194 +- Decouple the instal detection code from the handling code for existing installs. ([#12110](https://github.com/netdata/netdata/issues/12110))
4195 +- Update dashboard to version v2.20.18. ([#12117](https://github.com/netdata/netdata/issues/12117))
4196 +- Add feature request form ([#12119](https://github.com/netdata/netdata/issues/12119))
4197 +- Update syntax for Caddy v2 ([#12092](https://github.com/netdata/netdata/issues/12092))
4198 +- Update github template chooser ([#12125](https://github.com/netdata/netdata/issues/12125))
4199 +- Docs: rename kickstart install badges units ([#12131](https://github.com/netdata/netdata/issues/12131))
4200 +- [netdata patch release] 1.33.1
4201 +
4202 +## [1.33.0] - 2022-01-26
4203 +
4204 +### Merged Pull Requests:
4205 +
4206 +- Fix getting latest release tag ([#11908](https://github.com/netdata/netdata/issues/11908))
4207 +- Don’t verify optional dependencies in build test environments in CI. ([#11910](https://github.com/netdata/netdata/issues/11910))
4208 +- Fix the code that checks for available updates. ([#11870](https://github.com/netdata/netdata/issues/11870))
4209 +- Fi handling of agent restart on update. ([#11887](https://github.com/netdata/netdata/issues/11887))
4210 +- Fix(docs): unresolved file references ([#11903](https://github.com/netdata/netdata/issues/11903))
4211 +- Fix slight errors ([#11902](https://github.com/netdata/netdata/issues/11902))
4212 +- Added "==" to the list of expression operators ([#11905](https://github.com/netdata/netdata/issues/11905))
4213 +- Add note with link to guide for using on Pi ([#11605](https://github.com/netdata/netdata/issues/11605))
4214 +- Fix title of exporting reference doc ([#11252](https://github.com/netdata/netdata/issues/11252))
4215 +- Fix claim node examples in kickstart(-64) documentation ([#11242](https://github.com/netdata/netdata/issues/11242))
4216 +- Indicate availability on Gentoo ([#7675](https://github.com/netdata/netdata/issues/7675))
4217 +- Chore(docs): fix tables side borders ([#11923](https://github.com/netdata/netdata/issues/11923))
4218 +- Send ML feature information with UpdateNodeInfo. ([#11913](https://github.com/netdata/netdata/issues/11913))
4219 +- Provide runtime ml info from a new endpoint. ([#11886](https://github.com/netdata/netdata/issues/11886))
4220 +- Spelling ([#10976](https://github.com/netdata/netdata/issues/10976))
4221 +- Improve PagerDuty notification doc ([#11147](https://github.com/netdata/netdata/issues/11147))
4222 +- Chore(ci): add area/claim to PR labeler ([#11926](https://github.com/netdata/netdata/issues/11926))
4223 +- Fix(ci): install ESLint before running reviewdog/action-eslint ([#11922](https://github.com/netdata/netdata/issues/11922))
4224 +- Chore: update community link of alert notifications ([#11860](https://github.com/netdata/netdata/issues/11860))
4225 +- Include libatomic twice to allow protobuf to resolve ([#11917](https://github.com/netdata/netdata/issues/11917))
4226 +- Fix(claim): set URL_BASE only if `-url` parameter value is not null ([#11919](https://github.com/netdata/netdata/issues/11919))
4227 +- Feat(python.d/fail2ban): add "Failed attempts" chart, cleanup ([#11825](https://github.com/netdata/netdata/issues/11825))
4228 +- Nvidia_smi_chart.py : fixed username for not-local users ([#11858](https://github.com/netdata/netdata/issues/11858))
4229 +- Update dashboard to version v2.20.15. ([#11934](https://github.com/netdata/netdata/issues/11934))
4230 +- Removes ACLK Legacy ([#11841](https://github.com/netdata/netdata/issues/11841))
4231 +- Optimize rx msg name resolution ([#11811](https://github.com/netdata/netdata/issues/11811))
4232 +- Remove Ubuntu 21.04 from CI and packaging. ([#11851](https://github.com/netdata/netdata/issues/11851))
4233 +- Fix configure syntax error ([#11937](https://github.com/netdata/netdata/issues/11937))
4234 +- Add bug report form ([#11891](https://github.com/netdata/netdata/issues/11891))
4235 +- Fix tps decode, add memory usage chart ([#11797](https://github.com/netdata/netdata/issues/11797))
4236 +- Postgres: use block_size instead of 8*1024 ([#11815](https://github.com/netdata/netdata/issues/11815))
4237 +- Postgres: mat. views considered as tables in table size/count chart ([#11816](https://github.com/netdata/netdata/issues/11816))
4238 +- Fix cachestat on kernel 5.15.x (eBPF) ([#11833](https://github.com/netdata/netdata/issues/11833))
4239 +- Fix compilation warnings ([#11846](https://github.com/netdata/netdata/issues/11846))
4240 +- Fix unit tests for Prometheus remote write exporting connector ([#11883](https://github.com/netdata/netdata/issues/11883))
4241 +- Update dependencies for the pubsub exporting connector ([#11872](https://github.com/netdata/netdata/issues/11872))
4242 +- Don't check for symbols in libaws-cpp-sdk-core ([#11867](https://github.com/netdata/netdata/issues/11867))
4243 +- Update_libbpf: Add new libbpf version ([#11865](https://github.com/netdata/netdata/issues/11865))
4244 +- Add support to updater for updating native DEB/RPM installs with our official packages. ([#11753](https://github.com/netdata/netdata/issues/11753))
4245 +- Fix retrieving service commands without failure ([#11947](https://github.com/netdata/netdata/issues/11947))
4246 +- Fix a broken link in dashboard_info.js ([#11948](https://github.com/netdata/netdata/issues/11948))
4247 +- Fix cmake build ([#11862](https://github.com/netdata/netdata/issues/11862))
4248 +- Allow PushBullet notifications to be sent to PushBullet channels ([#11850](https://github.com/netdata/netdata/issues/11850))
4249 +- Fix time_t format ([#11897](https://github.com/netdata/netdata/issues/11897))
4250 +- ACLK-NG remove 'cmd' switch by message type ([#11866](https://github.com/netdata/netdata/issues/11866))
4251 +- Try to find worker thread from parked ones ([#11928](https://github.com/netdata/netdata/issues/11928))
4252 +- Fix: add a note that netfilter's `new` and `ignore` counters are removed in the latest kernel ([#11950](https://github.com/netdata/netdata/issues/11950))
4253 +- Python.d/nvidia_smi: add bar1 chart ([#11956](https://github.com/netdata/netdata/issues/11956))
4254 +- Fix(nfacct.plugin): Netfilter accounting charts priority ([#11952](https://github.com/netdata/netdata/issues/11952))
4255 +- Fix(nfacct.plugin): Netfilter accounting data collection ([#11951](https://github.com/netdata/netdata/issues/11951))
4256 +- Add a missing capability for the perf plugin ([#11958](https://github.com/netdata/netdata/issues/11958))
4257 +- Send the cloud protocol used to posthog ([#11842](https://github.com/netdata/netdata/issues/11842))
4258 +- Improved the code example in SNMP v3 documentation ([#11959](https://github.com/netdata/netdata/issues/11959))
4259 +- Find host and pass health_enabled to cloud health log message ([#11960](https://github.com/netdata/netdata/issues/11960))
4260 +- Remove bitfields from rrdhost. ([#11964](https://github.com/netdata/netdata/issues/11964))
4261 +- Use absolute features when doing training/prediction. ([#11876](https://github.com/netdata/netdata/issues/11876))
4262 +- Ignore clangd cache directory. ([#11803](https://github.com/netdata/netdata/issues/11803))
4263 +- Fixed formatting ([#11943](https://github.com/netdata/netdata/issues/11943))
4264 +- Fix aclk chart description ([#11970](https://github.com/netdata/netdata/issues/11970))
4265 +- Perform a host metadata update on reconnection ([#11965](https://github.com/netdata/netdata/issues/11965))
4266 +- Free claim_id ([#11973](https://github.com/netdata/netdata/issues/11973))
4267 +- Bump engine.io from 4.1.0 to 4.1.2 ([#11968](https://github.com/netdata/netdata/issues/11968))
4268 +- Bump follow-redirects from 1.13.2 to 1.14.7 ([#11972](https://github.com/netdata/netdata/issues/11972))
4269 +- Better handle creation of UUID for claiming. ([#11974](https://github.com/netdata/netdata/issues/11974))
4270 +- Fix(python.d): ignore decoding errors in ExecutableService ([#11979](https://github.com/netdata/netdata/issues/11979))
4271 +- Bump lodash from 4.17.19 to 4.17.21 ([#11976](https://github.com/netdata/netdata/issues/11976))
4272 +- Add localhost hostname to the edit_command ([#11793](https://github.com/netdata/netdata/issues/11793))
4273 +- Fix(updater): checksum validation for static build ([#11986](https://github.com/netdata/netdata/issues/11986))
4274 +- Remove "component" from PR template ([#11988](https://github.com/netdata/netdata/issues/11988))
4275 +- Use libnetdata/required_dummies.h in collectors. ([#11971](https://github.com/netdata/netdata/issues/11971))
4276 +- Do not use dbengine headers when dbengine is disabled. ([#11967](https://github.com/netdata/netdata/issues/11967))
4277 +- Fix yum config-manager check ([#11945](https://github.com/netdata/netdata/issues/11945))
4278 +- Included link to charts.d example ([#11990](https://github.com/netdata/netdata/issues/11990))
4279 +- Fix ib counters ([#11994](https://github.com/netdata/netdata/issues/11994))
4280 +- Initial release of new kickstart script. ([#11764](https://github.com/netdata/netdata/issues/11764))
4281 +- Update go.d.plugin version to v0.31.1 ([#11995](https://github.com/netdata/netdata/issues/11995))
4282 +- Add alternative install command for macOS. ([#11997](https://github.com/netdata/netdata/issues/11997))
4283 +- Refined the python example for clarity ([#11989](https://github.com/netdata/netdata/issues/11989))
4284 +- Fix install prefix handling for claiming code in new kickstart script. ([#11999](https://github.com/netdata/netdata/issues/11999))
4285 +- Deleted duplicate getting started doc ([#11978](https://github.com/netdata/netdata/issues/11978))
4286 +- Compute platform-specific list of static_threads at runtime. ([#11955](https://github.com/netdata/netdata/issues/11955))
4287 +- Fix(python.d.plugin): prefer python3 if available ([#12001](https://github.com/netdata/netdata/issues/12001))
4288 +- Fix permissions of plugins that may be built ([#11877](https://github.com/netdata/netdata/issues/11877))
4289 +- Fix handling of static archive selection for installs. ([#12004](https://github.com/netdata/netdata/issues/12004))
4290 +- Update go.d.plugin version to v0.31.2 ([#12005](https://github.com/netdata/netdata/issues/12005))
4291 +- EBPF plugin CO-RE and monitoring ([#11992](https://github.com/netdata/netdata/issues/11992))
4292 +- Update libmongoc CMake config ([#11962](https://github.com/netdata/netdata/issues/11962))
4293 +- Add code for LZ4 streaming data compression ([#11821](https://github.com/netdata/netdata/issues/11821))
4294 +- Fix queue removed alerts ([#11996](https://github.com/netdata/netdata/issues/11996))
4295 +- Handle re-claim while the agent is running in new architecture ([#11924](https://github.com/netdata/netdata/issues/11924))
4296 +- Blocking publish and in flight buffer regrowth ([#11932](https://github.com/netdata/netdata/issues/11932))
4297 +- Fix typo in the dashboard_info.js spigot part ([#12008](https://github.com/netdata/netdata/issues/12008))
4298 +- Deleted an EOL file ([#12000](https://github.com/netdata/netdata/issues/12000))
4299 +- Remove internal dbengine header from spawn/spawn_client.c ([#12009](https://github.com/netdata/netdata/issues/12009))
4300 +- Add support for NVME disks with blkext driver ([#12007](https://github.com/netdata/netdata/issues/12007))
4301 +- Mqtt_websockets submodule to latest master ([#12011](https://github.com/netdata/netdata/issues/12011)) ([#12015](https://github.com/netdata/netdata/issues/12015))
4302 +- Remove unecessary call that was enabling disabled threads ([#12014](https://github.com/netdata/netdata/issues/12014))
4303 +- Updated idlejitter-plugin docs ([#12012](https://github.com/netdata/netdata/issues/12012))
4304 +- [Stream Compression] - Compressor buffer overflow causes stream corruption. ([#12019](https://github.com/netdata/netdata/issues/12019))
4305 +- Update documentation with new dependencies ([#11373](https://github.com/netdata/netdata/issues/11373))
4306 +- Fix cleanup from a failed DEB install. ([#12006](https://github.com/netdata/netdata/issues/12006))
4307 +- Docs Bugfix: Fixed Markdown formatting ([#12026](https://github.com/netdata/netdata/issues/12026))
4308 +- Docs Bugfix: Capitalization ([#12024](https://github.com/netdata/netdata/issues/12024))
4309 +- Fix passing of version to GHA release workflow. ([#11909](https://github.com/netdata/netdata/issues/11909))
4310 +- Add install type info to `-W buildinfo` output. ([#12010](https://github.com/netdata/netdata/issues/12010))
4311 +- Bump google-github-actions/setup-gcloud from 0.3 to 0.4.0 ([#12031](https://github.com/netdata/netdata/issues/12031))
4312 +- Have cURL properly fail on non-2xx status codes. ([#12038](https://github.com/netdata/netdata/issues/12038))
4313 +- Re-instate plugins_action for clabels ([#12039](https://github.com/netdata/netdata/issues/12039))
4314 +- [netdata minor release] v1.33.0
4315 +
4316 +## [1.32.1] - 2021-12-14
4317 +
4318 +### Merged Pull Requests:
4319 +
4320 +- Remove Fedora 33 from CI. ([#11640](https://github.com/netdata/netdata/issues/11640))
4321 +- Remove OpenSUSE Leap 15.2 from CI. ([#11600](https://github.com/netdata/netdata/issues/11600))
4322 +- Bump static builds to use Alpine 3.15 as a base. ([#11836](https://github.com/netdata/netdata/issues/11836))
4323 +- Fix token name in release draft workflow. ([#11847](https://github.com/netdata/netdata/issues/11847))
4324 +- Update nightly badge link ([#11843](https://github.com/netdata/netdata/issues/11843))
4325 +- Explicitly conflict with netdata-core DEB package. ([#11855](https://github.com/netdata/netdata/issues/11855))
4326 +- Create ML README.md ([#11848](https://github.com/netdata/netdata/issues/11848))
4327 +- Set the enabled struct element to 1 ([#11856](https://github.com/netdata/netdata/issues/11856))
4328 +- Fix(health): used_swap alarm calc ([#11868](https://github.com/netdata/netdata/issues/11868))
4329 +- Detect whether libatomic should be linked in when using CXX linker. ([#11818](https://github.com/netdata/netdata/issues/11818))
4330 +- Fix static build, curl will be staict binary; extra args can be transfer ([#11852](https://github.com/netdata/netdata/issues/11852))
4331 +- Fix(updater): fix exit code when updating static install && updater script ([#11873](https://github.com/netdata/netdata/issues/11873))
4332 +- Make netdata-updater.sh POSIX compliant. ([#11755](https://github.com/netdata/netdata/issues/11755))
4333 +- Fix(updater): don't produce output when static update succeeded ([#11879](https://github.com/netdata/netdata/issues/11879))
4334 +- Add z score alarm example ([#11871](https://github.com/netdata/netdata/issues/11871))
4335 +- Fix postdrop handling for systemd systems. ([#11885](https://github.com/netdata/netdata/issues/11885))
4336 +- Minor ACLK docu updates ([#11882](https://github.com/netdata/netdata/issues/11882))
4337 +- Fixed formatting issues. ([#11888](https://github.com/netdata/netdata/issues/11888))
4338 +- Moved data privacy section into a separate topic ([#11889](https://github.com/netdata/netdata/issues/11889))
4339 +- Use the chart id instead of chart name in response to incoming cloud context queries ([#11898](https://github.com/netdata/netdata/issues/11898))
4340 +- Bump google-github-actions/setup-gcloud from 0.2.1 to 0.3 ([#11893](https://github.com/netdata/netdata/issues/11893))
4341 +- Bump google-github-actions/upload-cloud-storage from 0.4.0 to 0.5.0 ([#11894](https://github.com/netdata/netdata/issues/11894))
4342 +- Clean up anomaly-detection guide docs ([#11901](https://github.com/netdata/netdata/issues/11901))
4343 +- Adds Swagger docs for new `/api/v1/aclk` endpoint ([#11881](https://github.com/netdata/netdata/issues/11881))
4344 +- [netdata patch release] v1.32.1
4345 +
4346 +## [1.32.0] - 2021-11-30
4347 +
4348 +### Merged Pull Requests:
4349 +
4350 +- Store info about the installation type for later retrieval. ([#11157](https://github.com/netdata/netdata/issues/11157))
4351 +- Adding more postgres metrics ([#11169](https://github.com/netdata/netdata/issues/11169))
4352 +- Health: make stocks alarms less sensitive (2) ([#11153](https://github.com/netdata/netdata/issues/11153))
4353 +- Health: add python.d/go.d jobs last_collected_secs alarms ([#11168](https://github.com/netdata/netdata/issues/11168))
4354 +- Health: add system clock synchronization state alarm ([#11177](https://github.com/netdata/netdata/issues/11177))
4355 +- Move mdstat charts near to Disks ([#11119](https://github.com/netdata/netdata/issues/11119))
4356 +- Remove an unnecessary check for cgroup v1 ([#11137](https://github.com/netdata/netdata/issues/11137))
4357 +- Fix mqtt_websockets (ACLK-NG) on MacOS ([#11145](https://github.com/netdata/netdata/issues/11145))
4358 +- Fixing sneaky broken links ([#11175](https://github.com/netdata/netdata/issues/11175))
4359 +- Ebpf swap ([#11090](https://github.com/netdata/netdata/issues/11090))
4360 +- Fix typo in aclk.c ([#11170](https://github.com/netdata/netdata/issues/11170))
4361 +- Query the size of the hw.intrnames mib instead of using of a fixed va… ([#11159](https://github.com/netdata/netdata/issues/11159))
4362 +- Fixes ACLK-NG on FreeBSD ([#11172](https://github.com/netdata/netdata/issues/11172))
4363 +- Remove unecessary relative paths when including headers. ([#11124](https://github.com/netdata/netdata/issues/11124))
4364 +- Remove deprecated options. ([#11149](https://github.com/netdata/netdata/issues/11149))
4365 +- Update news in main README for latest release ([#11165](https://github.com/netdata/netdata/issues/11165))
4366 +- Move parser from children to main thread ([#11152](https://github.com/netdata/netdata/issues/11152))
4367 +- Remove Fedora 32 from CI. ([#11143](https://github.com/netdata/netdata/issues/11143))
4368 +- Add link to example conf ([#11182](https://github.com/netdata/netdata/issues/11182))
4369 +- Fix mqtt_websockets submodule version ([#11196](https://github.com/netdata/netdata/issues/11196))
4370 +- Rename default from job 'local' to 'anomalies' ([#11178](https://github.com/netdata/netdata/issues/11178))
4371 +- Fix ebpf.plugin segfault when ebpf_load_program return null pointer ([#11203](https://github.com/netdata/netdata/issues/11203))
4372 +- Labeler: add "mqtt_websockets" to the ACLK ([#11197](https://github.com/netdata/netdata/issues/11197))
4373 +- Fix `install_type` detection during update ([#11199](https://github.com/netdata/netdata/issues/11199))
4374 +- VFS new thread ([#11187](https://github.com/netdata/netdata/issues/11187))
4375 +- Add Microsoft Teams to supported notification endpoints ([#11205](https://github.com/netdata/netdata/issues/11205))
4376 +- Check return status of execution of anonymous statistics script ([#11188](https://github.com/netdata/netdata/issues/11188))
4377 +- Claiming: exit 0 when daemon not running and the claim was successful ([#11195](https://github.com/netdata/netdata/issues/11195))
4378 +- Provide UTC offset in seconds and edit health config command ([#11051](https://github.com/netdata/netdata/issues/11051))
4379 +- Only report the exit code without strerror ([#11215](https://github.com/netdata/netdata/issues/11215))
4380 +- Ignore dbengine journal files that can not be read ([#11210](https://github.com/netdata/netdata/issues/11210))
4381 +- Do not fail agent if DBENGINE is not available and memory mode is set to dbengine ([#11207](https://github.com/netdata/netdata/issues/11207))
4382 +- Compile/Link with absolute paths for bundled/vendored deps. ([#11129](https://github.com/netdata/netdata/issues/11129))
4383 +- Store uuid_t metric_uuid in the dimension state structure instead of uuid_t * ([#11212](https://github.com/netdata/netdata/issues/11212))
4384 +- Health: fix alarm-line-charts matching ([#11204](https://github.com/netdata/netdata/issues/11204))
4385 +- Check for non ascii characters in health log ([#11193](https://github.com/netdata/netdata/issues/11193))
4386 +- Python.d: merge user/stock plugin configuration files ([#11217](https://github.com/netdata/netdata/issues/11217))
4387 +- EBPF ext4 (new thread for collector) ([#11224](https://github.com/netdata/netdata/issues/11224))
4388 +- Add data privacy links ([#11226](https://github.com/netdata/netdata/issues/11226))
4389 +- New email notification template ([#11219](https://github.com/netdata/netdata/issues/11219))
4390 +- Ebpf arrays ([#11230](https://github.com/netdata/netdata/issues/11230))
4391 +- Decentralized ([#11220](https://github.com/netdata/netdata/issues/11220))
4392 +- Health: update cockroachdb alarms ([#11235](https://github.com/netdata/netdata/issues/11235))
4393 +- Packaging: update go.d.plugin version to v0.29.0 ([#11239](https://github.com/netdata/netdata/issues/11239))
4394 +- Allows ACLK NG and Legacy to coexist ([#11225](https://github.com/netdata/netdata/issues/11225))
4395 +- Swap class and type attributes in stock alarm configurations ([#11240](https://github.com/netdata/netdata/issues/11240))
4396 +- Adds xfs filesystem monitoring to eBPF ([#11238](https://github.com/netdata/netdata/issues/11238))
4397 +- Fixes error on --disable-cloud ([#11244](https://github.com/netdata/netdata/issues/11244))
4398 +- Disable telemetry in CI. ([#11233](https://github.com/netdata/netdata/issues/11233))
4399 +- Send correct aclk implementation used by agent to posthog. ([#11247](https://github.com/netdata/netdata/issues/11247))
4400 +- Add more nics to FreeBSD plugin ([#11251](https://github.com/netdata/netdata/issues/11251))
4401 +- EBPF keep values from `ebpf.d.conf` ([#11253](https://github.com/netdata/netdata/issues/11253))
4402 +- Slabinfo: Handle slabs added after discovery ([#11257](https://github.com/netdata/netdata/issues/11257))
4403 +- Updates the docu with info about dual ACLK ([#11243](https://github.com/netdata/netdata/issues/11243))
4404 +- Fix libjudy installation on CentOS 8. ([#11248](https://github.com/netdata/netdata/issues/11248))
4405 +- Add openSUSE 15.3 CI checks. ([#11258](https://github.com/netdata/netdata/issues/11258))
4406 +- Ebpf apps memory usage ([#11256](https://github.com/netdata/netdata/issues/11256))
4407 +- Fix kickstart-static64.sh install script fail when trying to access `.install-type` before it is created ([#11262](https://github.com/netdata/netdata/issues/11262))
4408 +- Explicitly update libarchive on CentOS 8 when installing dependencies. ([#11264](https://github.com/netdata/netdata/issues/11264))
4409 +- Added new postgres charts and updated standby charts to include slot_… ([#11267](https://github.com/netdata/netdata/issues/11267))
4410 +- Add vkalintiris as a code owner for more components ([#11221](https://github.com/netdata/netdata/issues/11221))
4411 +- Add openSUSE 15.3 package builds. ([#11259](https://github.com/netdata/netdata/issues/11259))
4412 +- Update old log to new ([#11263](https://github.com/netdata/netdata/issues/11263))
4413 +- Makes ACLK-NG the default if available ([#11272](https://github.com/netdata/netdata/issues/11272))
4414 +- Add Alpine 3.14 to CI. ([#11270](https://github.com/netdata/netdata/issues/11270))
4415 +- Fixes confusing error in ACLK Legacy ([#11278](https://github.com/netdata/netdata/issues/11278))
4416 +- Bump actions/upload-artifact from 2.2.3 to 2.2.4 ([#11269](https://github.com/netdata/netdata/issues/11269))
4417 +- Extra posthog attributes ([#11237](https://github.com/netdata/netdata/issues/11237))
4418 +- Support TLS SNI in ACLK-NG ([#11285](https://github.com/netdata/netdata/issues/11285))
4419 +- Remove access check for install-type file ([#11288](https://github.com/netdata/netdata/issues/11288))
4420 +- Fix `mdstat` current operation charts context/title ([#11289](https://github.com/netdata/netdata/issues/11289))
4421 +- EBPF plugin remove parallel plugins ([#11287](https://github.com/netdata/netdata/issues/11287))
4422 +- Health: remove pythond modules specific last_collected alarms ([#11307](https://github.com/netdata/netdata/issues/11307))
4423 +- [docs] fix prometheus node cpu alert rule ([#11309](https://github.com/netdata/netdata/issues/11309))
4424 +- Fix various python modules charts contexts ([#11310](https://github.com/netdata/netdata/issues/11310))
4425 +- Ebpf disk latency ([#11276](https://github.com/netdata/netdata/issues/11276))
4426 +- V2.18.5 ([#11316](https://github.com/netdata/netdata/issues/11316))
4427 +- Add hop count for children ([#11311](https://github.com/netdata/netdata/issues/11311))
4428 +- ACLK-NG New Cloud NodeInstance related msgs ([#11234](https://github.com/netdata/netdata/issues/11234))
4429 +- Fix tiny issues in docs ([#11320](https://github.com/netdata/netdata/issues/11320))
4430 +- Add some more entries to gitignore ([#11319](https://github.com/netdata/netdata/issues/11319))
4431 +- Fixes coverity errors in ACLK ([#11322](https://github.com/netdata/netdata/issues/11322))
4432 +- Add HTTP access log messages for ACLK-NG ([#11318](https://github.com/netdata/netdata/issues/11318))
4433 +- EBPF NFS monitoring ([#11313](https://github.com/netdata/netdata/issues/11313))
4434 +- V2.19.1 ([#11323](https://github.com/netdata/netdata/issues/11323))
4435 +- Fix typo in analytics.c ([#11329](https://github.com/netdata/netdata/issues/11329))
4436 +- Update get-started.mdx ([#11303](https://github.com/netdata/netdata/issues/11303))
4437 +- Auto-detect PGID in Dockerfile's ENTRYPOINT script ([#11274](https://github.com/netdata/netdata/issues/11274))
4438 +- Adds aclk-schemas to dist_noinst_DATA ([#11338](https://github.com/netdata/netdata/issues/11338))
4439 +- Log message when page cache sleeps for more than 1 second. ([#11314](https://github.com/netdata/netdata/issues/11314))
4440 +- Properly handle the file list for updating the dashboard. ([#11282](https://github.com/netdata/netdata/issues/11282))
4441 +- Add postgresql version to requirements section ([#11328](https://github.com/netdata/netdata/issues/11328))
4442 +- EBPF ZFS monitoring ([#11330](https://github.com/netdata/netdata/issues/11330))
4443 +- Move cleanup of obsolete charts to a separate thread ([#11222](https://github.com/netdata/netdata/issues/11222))
4444 +- Add ACLK-NG cloud request type charts ([#11326](https://github.com/netdata/netdata/issues/11326))
4445 +- Assorted kickstart install fixes. ([#11342](https://github.com/netdata/netdata/issues/11342))
4446 +- Packaging: update go.d.plugin version to v0.30.0 ([#11349](https://github.com/netdata/netdata/issues/11349))
4447 +- Add geth default config ([#11341](https://github.com/netdata/netdata/issues/11341))
4448 +- Allow bundled protobuf ([#11335](https://github.com/netdata/netdata/issues/11335))
4449 +- Check if sendmail supports -F parameter ([#11283](https://github.com/netdata/netdata/issues/11283))
4450 +- Fix sending MS Teams notifications to multiple channels ([#11355](https://github.com/netdata/netdata/issues/11355))
4451 +- Ebpf btrfs ([#11348](https://github.com/netdata/netdata/issues/11348))
4452 +- Fix_vfs_index: Fix index reference ([#11356](https://github.com/netdata/netdata/issues/11356))
4453 +- Health: fix cockroachdb replication alarms ([#11360](https://github.com/netdata/netdata/issues/11360))
4454 +- Remove Ubuntu 20.10 from CI checks. ([#11265](https://github.com/netdata/netdata/issues/11265))
4455 +- Disable oom_kill alarm if the node is k8s node ([#11359](https://github.com/netdata/netdata/issues/11359))
4456 +- Fix `gearman_workers_queued` alarm ([#11361](https://github.com/netdata/netdata/issues/11361))
4457 +- Properly handle eBPF plugin in RPM packages. ([#11362](https://github.com/netdata/netdata/issues/11362))
4458 +- Allows ACLK-NG to grow MQTT buffer ([#11340](https://github.com/netdata/netdata/issues/11340))
4459 +- CODEOWNERS: Remove knatsakis ([#11377](https://github.com/netdata/netdata/issues/11377))
4460 +- Ebpf latency description ([#11363](https://github.com/netdata/netdata/issues/11363))
4461 +- Update handling of builds of bundled dependencies. ([#11375](https://github.com/netdata/netdata/issues/11375))
4462 +- EBPF mount ([#11358](https://github.com/netdata/netdata/issues/11358))
4463 +- Add code for repository configuration packages. ([#11273](https://github.com/netdata/netdata/issues/11273))
4464 +- Specify module for threads ([#11387](https://github.com/netdata/netdata/issues/11387))
4465 +- Charts.d.plugin: set "module" when sending CHART ([#11390](https://github.com/netdata/netdata/issues/11390))
4466 +- Ebpf_remove_warning: Change function call from strncpy to memcpy ([#11389](https://github.com/netdata/netdata/issues/11389))
4467 +- Add HTTP basic authentication to some exporting connectors ([#11394](https://github.com/netdata/netdata/issues/11394))
4468 +- Update perf.events and add new charts ([#11392](https://github.com/netdata/netdata/issues/11392))
4469 +- Fix freebsd and macos plugin names ([#11398](https://github.com/netdata/netdata/issues/11398))
4470 +- Use only stock configuration filenames as module names ([#11400](https://github.com/netdata/netdata/issues/11400))
4471 +- Docs: Remove extra 's' ([#11376](https://github.com/netdata/netdata/issues/11376))
4472 +- New Cloud chart related parsers and generators ([#11393](https://github.com/netdata/netdata/issues/11393))
4473 +- Replaced reference to raw.githubuser to a relative path ([#11405](https://github.com/netdata/netdata/issues/11405))
4474 +- Fix coverity issue 372222 ([#11404](https://github.com/netdata/netdata/issues/11404))
4475 +- Fix bundled protobuf linkage on systems needing -latomic ([#11406](https://github.com/netdata/netdata/issues/11406))
4476 +- Changed the term claim to connect (to Cloud) on docs ([#11378](https://github.com/netdata/netdata/issues/11378))
4477 +- Fix CID372233 to CID 372236 ([#11411](https://github.com/netdata/netdata/issues/11411))
4478 +- Remove "vernemq.queue_messages_in_queues" from dashboard_info.js ([#11403](https://github.com/netdata/netdata/issues/11403))
4479 +- Custom dash broken links ([#11413](https://github.com/netdata/netdata/issues/11413))
4480 +- Minor - remove trailing whitespace ([#11407](https://github.com/netdata/netdata/issues/11407))
4481 +- Add support for claiming existing installs via kickstarter scripts. ([#11350](https://github.com/netdata/netdata/issues/11350))
4482 +- Remove Ubuntu 20.10 from repository config package builds. ([#11421](https://github.com/netdata/netdata/issues/11421))
4483 +- Fix conditional in repoconfig package CI job.
4484 +- Really fix conditional in repoconfig packages CI.
4485 +- Add ACLK synchronization event loop ([#11396](https://github.com/netdata/netdata/issues/11396))
4486 +- Final syntax fixes for repoconfig packages workflow.
4487 +- Remove conditional jobs from repoconfig packages workflow.
4488 +- Fix opensuse 15.3 repository package build.
4489 +- Use DebHelper compat level 9 in repoconfig packages to support Ubuntu 16.04 ([#11426](https://github.com/netdata/netdata/issues/11426))
4490 +- Properly handle reuploads of packages to PackageCloud. ([#11427](https://github.com/netdata/netdata/issues/11427))
4491 +- Split eBPF programs ([#11401](https://github.com/netdata/netdata/issues/11401))
4492 +- Additional checks to address coverity report ([#11429](https://github.com/netdata/netdata/issues/11429))
4493 +- Simple SQLite unit tests ([#11422](https://github.com/netdata/netdata/issues/11422))
4494 +- Default to not using LTO for builds. ([#11432](https://github.com/netdata/netdata/issues/11432))
4495 +- Force play timezone ([#11433](https://github.com/netdata/netdata/issues/11433))
4496 +- Fix issue #11434 regarding inconsistent status check on component. ([#11435](https://github.com/netdata/netdata/issues/11435))
4497 +- Add terra to blockchains apps groups ([#11437](https://github.com/netdata/netdata/issues/11437))
4498 +- SQLite v3.36.0 ([#11423](https://github.com/netdata/netdata/issues/11423))
4499 +- Remove ClearLinux from CI. ([#11438](https://github.com/netdata/netdata/issues/11438))
4500 +- Added support for bundling protobuf as part of the install. ([#11374](https://github.com/netdata/netdata/issues/11374))
4501 +- Adds NodeInstanceInfo internal API ([#11419](https://github.com/netdata/netdata/issues/11419))
4502 +- Add Debian 11 (Bullseye) to CI. ([#11334](https://github.com/netdata/netdata/issues/11334))
4503 +- EBPF Hard IRQ latency ([#11410](https://github.com/netdata/netdata/issues/11410))
4504 +- Update ebpf documentation ([#11440](https://github.com/netdata/netdata/issues/11440))
4505 +- Fix list corruption in ACLK sync code and remove fatal ([#11444](https://github.com/netdata/netdata/issues/11444))
4506 +- Update ebpf socket ([#11441](https://github.com/netdata/netdata/issues/11441))
4507 +- Update "Install Netdata on Synology" guide ([#11449](https://github.com/netdata/netdata/issues/11449))
4508 +- Remove AWS Kinesis CI. ([#11451](https://github.com/netdata/netdata/issues/11451))
4509 +- Check for failed protobuf configure or make ([#11450](https://github.com/netdata/netdata/issues/11450))
4510 +- EBPF Soft IRQ latency ([#11445](https://github.com/netdata/netdata/issues/11445))
4511 +- Fix ram level alarms ([#11452](https://github.com/netdata/netdata/issues/11452))
4512 +- Don’t bail early if we fail to build cloud deps with required cloud. ([#11446](https://github.com/netdata/netdata/issues/11446))
4513 +- Fix postgres replication_slot chart on standby ([#11455](https://github.com/netdata/netdata/issues/11455))
4514 +- #10773 add capsh check ([#11386](https://github.com/netdata/netdata/issues/11386))
4515 +- Add Travis ctrl file for checking if changes happened ([#11383](https://github.com/netdata/netdata/issues/11383))
4516 +- Fix edge repository configuration DEB packages. ([#11458](https://github.com/netdata/netdata/issues/11458))
4517 +- Use correct release codename for Debian 11 repoconfig packages. ([#11459](https://github.com/netdata/netdata/issues/11459))
4518 +- Adds Alert Related API for new protocol ([#11424](https://github.com/netdata/netdata/issues/11424))
4519 +- Add a note how to find web files directory ([#11461](https://github.com/netdata/netdata/issues/11461))
4520 +- EBPF vsn bump to v0.7.9.1 ([#11471](https://github.com/netdata/netdata/issues/11471))
4521 +- Installation review ([#11442](https://github.com/netdata/netdata/issues/11442))
4522 +- Remove broken link ([#11482](https://github.com/netdata/netdata/issues/11482))
4523 +- Clean netdata naming ([#11484](https://github.com/netdata/netdata/issues/11484))
4524 +- Embed build architecture in static build archive names. ([#11463](https://github.com/netdata/netdata/issues/11463))
4525 +- Revert "add Travis ctrl file for checking if changes happened ([#11383](https://github.com/netdata/netdata/issues/11383))" ([#11486](https://github.com/netdata/netdata/issues/11486))
4526 +- Add support for runtime configuration of UID/GID for Netdata user. ([#10683](https://github.com/netdata/netdata/issues/10683))
4527 +- Exclude bundled dashboard files from eslint checks. ([#11488](https://github.com/netdata/netdata/issues/11488))
4528 +- Fix issues in Alarm API ([#11491](https://github.com/netdata/netdata/issues/11491))
4529 +- Update claim README.md ([#11492](https://github.com/netdata/netdata/issues/11492))
4530 +- Revert "Add support for runtime configuration of UID/GID for Netdata user. ([#10683](https://github.com/netdata/netdata/issues/10683))" ([#11495](https://github.com/netdata/netdata/issues/11495))
4531 +- Use system copy of protobuf in Docker images and static builds. ([#11496](https://github.com/netdata/netdata/issues/11496))
4532 +- Fix elasticsearch null values returned by _cat/indices API ([#11501](https://github.com/netdata/netdata/issues/11501))
4533 +- Add custom e-mail headers ([#11454](https://github.com/netdata/netdata/issues/11454))
4534 +- Allow arbitrary options to be passed to make from netdata-installer.sh. ([#11479](https://github.com/netdata/netdata/issues/11479))
4535 +- V2.19.9 ([#11505](https://github.com/netdata/netdata/issues/11505))
4536 +- Add extra verification to Docker builds. ([#11497](https://github.com/netdata/netdata/issues/11497))
4537 +- Better check for supported -F parameter in sendmail ([#11506](https://github.com/netdata/netdata/issues/11506))
4538 +- Convert uppercase to lowercase for eBPF submenus ([#11511](https://github.com/netdata/netdata/issues/11511))
4539 +- Update handling of dashboard PR genertion to handle file deletions. ([#11489](https://github.com/netdata/netdata/issues/11489))
4540 +- Remove unused script ([#11516](https://github.com/netdata/netdata/issues/11516))
4541 +- Remove reset_netdata_trace.sh from netdata.service ([#11517](https://github.com/netdata/netdata/issues/11517))
4542 +- EBPF OOM kill tracking ([#11470](https://github.com/netdata/netdata/issues/11470))
4543 +- Improved some wordings of the file README.md ([#11510](https://github.com/netdata/netdata/issues/11510))
4544 +- Clean up dependency handling for CentOS/RHEL ([#11515](https://github.com/netdata/netdata/issues/11515))
4545 +- Install basic netdata deps by default. ([#11508](https://github.com/netdata/netdata/issues/11508))
4546 +- Update dashboard to version v2.20.0. ([#11521](https://github.com/netdata/netdata/issues/11521))
4547 +- Adds aclk/cloud state command to netdatacli ([#11462](https://github.com/netdata/netdata/issues/11462))
4548 +- Add a note about handling backslashes ([#11527](https://github.com/netdata/netdata/issues/11527))
4549 +- Add ipc semaphores charts info ([#11523](https://github.com/netdata/netdata/issues/11523))
4550 +- Use sqlite to store the health log and alert configurations. ([#11399](https://github.com/netdata/netdata/issues/11399))
4551 +- Re-added EPEL on CentOS 7. ([#11525](https://github.com/netdata/netdata/issues/11525))
4552 +- Fix issue with log messages appearing in the terminal instead of the error.log on startup ([#11524](https://github.com/netdata/netdata/issues/11524))
4553 +- Don't write updater log under root ([#10901](https://github.com/netdata/netdata/issues/10901))
4554 +- Add diskstats charts info ([#11528](https://github.com/netdata/netdata/issues/11528))
4555 +- Add/update proc_interrupts charts info ([#11532](https://github.com/netdata/netdata/issues/11532))
4556 +- Add node message support for ACLK new architecture ([#11514](https://github.com/netdata/netdata/issues/11514))
4557 +- Update libbpf ([#11480](https://github.com/netdata/netdata/issues/11480))
4558 +- Update london demo to point at london3 ([#11533](https://github.com/netdata/netdata/issues/11533))
4559 +- Remove unecessary blank line ([#11538](https://github.com/netdata/netdata/issues/11538))
4560 +- Fix broken links ([#11540](https://github.com/netdata/netdata/issues/11540))
4561 +- Add new cloud protocol files to cmake ([#11536](https://github.com/netdata/netdata/issues/11536))
4562 +- Add proc_mdstat charts info ([#11537](https://github.com/netdata/netdata/issues/11537))
4563 +- Fix coverity ([#11535](https://github.com/netdata/netdata/issues/11535))
4564 +- Add proc_meminfo charts info ([#11541](https://github.com/netdata/netdata/issues/11541))
4565 +- Fix installer flag --use-system-protobuf ([#11539](https://github.com/netdata/netdata/issues/11539))
4566 +- Use the correct exit status for the updater with static updates. ([#11520](https://github.com/netdata/netdata/issues/11520))
4567 +- Fix proc collector: Undefined state DEGRADED for zpool ([#11545](https://github.com/netdata/netdata/issues/11545))
4568 +- Add proc_net_dev charts info ([#11543](https://github.com/netdata/netdata/issues/11543))
4569 +- Add chart message support for ACLK new architecture ([#11447](https://github.com/netdata/netdata/issues/11447))
4570 +- Address coverity report issues CID_373247-373251 ([#11549](https://github.com/netdata/netdata/issues/11549))
4571 +- Add proc_net_ip_vs_stats charts info ([#11546](https://github.com/netdata/netdata/issues/11546))
4572 +- Reorganize Docker CI to run faster. ([#11513](https://github.com/netdata/netdata/issues/11513))
4573 +- Update ebpf dashboard ([#11547](https://github.com/netdata/netdata/issues/11547))
4574 +- Add proc_net_netstat charts info ([#11554](https://github.com/netdata/netdata/issues/11554))
4575 +- Add proc_net_snmp charts info ([#11557](https://github.com/netdata/netdata/issues/11557))
4576 +- Add proc_net_sctp_snmp charts info ([#11564](https://github.com/netdata/netdata/issues/11564))
4577 +- Add alert message support for ACLK new architecture ([#11552](https://github.com/netdata/netdata/issues/11552))
4578 +- Remove Ubuntu 16.04 from CI. ([#11556](https://github.com/netdata/netdata/issues/11556))
4579 +- Fix branch handling for automated dashoard PRs. ([#11526](https://github.com/netdata/netdata/issues/11526))
4580 +- Add option for netdata-installer to allow compilation only on X86_64 ([#11566](https://github.com/netdata/netdata/issues/11566))
4581 +- Add proc_net_snmp6 charts info ([#11565](https://github.com/netdata/netdata/issues/11565))
4582 +- Add proc_net_sockstat and sockstat6 charts info ([#11567](https://github.com/netdata/netdata/issues/11567))
4583 +- Add proc_uptime charts info ([#11569](https://github.com/netdata/netdata/issues/11569))
4584 +- Add shared memory to cgroup ([#11559](https://github.com/netdata/netdata/issues/11559))
4585 +- Add DShreve2 to code owners ([#11572](https://github.com/netdata/netdata/issues/11572))
4586 +- Add missing privilege to fix MySQL slave reporting ([#11574](https://github.com/netdata/netdata/issues/11574))
4587 +- Update alarms info ([#11481](https://github.com/netdata/netdata/issues/11481))
4588 +- Clean up YAML files in the repository. ([#11570](https://github.com/netdata/netdata/issues/11570))
4589 +- Add archive uploads for dist, package build, and static build checks. ([#11534](https://github.com/netdata/netdata/issues/11534))
4590 +- Fix handling of claiming in kickstart script when running as non-root. ([#11507](https://github.com/netdata/netdata/issues/11507))
4591 +- Add proc_softirqs charts info ([#11577](https://github.com/netdata/netdata/issues/11577))
4592 +- Sorting the Postgres cluster databases in the postgres collector ([#11580](https://github.com/netdata/netdata/issues/11580))
4593 +- Add proc_net_stat_conntrack charts info ([#11576](https://github.com/netdata/netdata/issues/11576))
4594 +- Fix CID 339027 and reverse arguments ([#11578](https://github.com/netdata/netdata/issues/11578))
4595 +- Add proc_net_stat_synproxy charts info ([#11581](https://github.com/netdata/netdata/issues/11581))
4596 +- Remove unused synproxy chart ([#11582](https://github.com/netdata/netdata/issues/11582))
4597 +- Free analytics data when analytics thread stops ([#11575](https://github.com/netdata/netdata/issues/11575))
4598 +- Remove OpenSUSE Tumbleweed from CI. ([#11584](https://github.com/netdata/netdata/issues/11584))
4599 +- Add proc_stat charts info ([#11586](https://github.com/netdata/netdata/issues/11586))
4600 +- EBPF Shared Memory system call tracking ([#11560](https://github.com/netdata/netdata/issues/11560))
4601 +- Add sys_devices_system_edac_mc charts info ([#11589](https://github.com/netdata/netdata/issues/11589))
4602 +- Adds api/v1/aclk call to webserver ([#11588](https://github.com/netdata/netdata/issues/11588))
4603 +- Update dashboard to version v2.20.2. ([#11593](https://github.com/netdata/netdata/issues/11593))
4604 +- Makes New Cloud architecture optional for ACLK-NG ([#11587](https://github.com/netdata/netdata/issues/11587))
4605 +- Add sys_kernel_mm_ksm charts info ([#11595](https://github.com/netdata/netdata/issues/11595))
4606 +- Update global code owners ([#11562](https://github.com/netdata/netdata/issues/11562))
4607 +- Add proc_vmstat charts info ([#11597](https://github.com/netdata/netdata/issues/11597))
4608 +- Integrate eBPF and cgroup (consumer side) ([#11573](https://github.com/netdata/netdata/issues/11573))
4609 +- Add apps.plugin charts descriptions ([#11601](https://github.com/netdata/netdata/issues/11601))
4610 +- Fix varnish VBE parsing ([#11596](https://github.com/netdata/netdata/issues/11596))
4611 +- Fix https client ([#11608](https://github.com/netdata/netdata/issues/11608))
4612 +- Add cgroups.plugin charts descriptions ([#11607](https://github.com/netdata/netdata/issues/11607))
4613 +- Apps: disable reporting min/avg/max group uptime by default ([#11609](https://github.com/netdata/netdata/issues/11609))
4614 +- Added ARM binary package builds to CI. ([#10769](https://github.com/netdata/netdata/issues/10769))
4615 +- Fix RSS memory counter for systemd services ([#11616](https://github.com/netdata/netdata/issues/11616))
4616 +- Fix swap size calculation for cgroups ([#11617](https://github.com/netdata/netdata/issues/11617))
4617 +- Add @iigorkarpov to CODEOWNERS. ([#11614](https://github.com/netdata/netdata/issues/11614))
4618 +- Add sys_class_power_supply charts info ([#11619](https://github.com/netdata/netdata/issues/11619))
4619 +- Add cgroups.plugin systemd units charts info ([#11618](https://github.com/netdata/netdata/issues/11618))
4620 +- Fix proc nfsd "proc4ops" chart family ([#11623](https://github.com/netdata/netdata/issues/11623))
4621 +- Add proc_net_wireless charts info ([#11626](https://github.com/netdata/netdata/issues/11626))
4622 +- Initialize write_ctx struct with zeroes ([#11621](https://github.com/netdata/netdata/issues/11621))
4623 +- Add proc_net_rpc_nfs and nfsd charts info ([#11625](https://github.com/netdata/netdata/issues/11625))
4624 +- Add proc_pagetypeinfo charts info ([#11627](https://github.com/netdata/netdata/issues/11627))
4625 +- Enable additional functionality for the new cloud architecture ([#11579](https://github.com/netdata/netdata/issues/11579))
4626 +- Add sys_class_infiniband charts info ([#11628](https://github.com/netdata/netdata/issues/11628))
4627 +- Fix memory leak ([#11631](https://github.com/netdata/netdata/issues/11631))
4628 +- Fix nfsd RPC metrics and remove unused nfsd charts and metrics ([#11632](https://github.com/netdata/netdata/issues/11632))
4629 +- Update dashboard to version v2.20.7. ([#11629](https://github.com/netdata/netdata/issues/11629))
4630 +- Add timex.plugin charts info ([#11635](https://github.com/netdata/netdata/issues/11635))
4631 +- Add proc zfs charts info ([#11630](https://github.com/netdata/netdata/issues/11630))
4632 +- EBPF and cgroup (process, file descriptor, VFS, directory cache and OOMkill) ([#11611](https://github.com/netdata/netdata/issues/11611))
4633 +- Fix an overflow when unsigned integer subtracted ([#11638](https://github.com/netdata/netdata/issues/11638))
4634 +- Fix ci dashboard pr branch name ([#11636](https://github.com/netdata/netdata/issues/11636))
4635 +- Various fixes and updates for dashboard info ([#11639](https://github.com/netdata/netdata/issues/11639))
4636 +- Add note for the new release of charts on the cloud ([#11637](https://github.com/netdata/netdata/issues/11637))
4637 +- Fix chart config overflow ([#11645](https://github.com/netdata/netdata/issues/11645))
4638 +- Fixes typo in URL ([#11651](https://github.com/netdata/netdata/issues/11651))
4639 +- Use submodules in Clang build checks. ([#11649](https://github.com/netdata/netdata/issues/11649))
4640 +- Add initial implementation of new kickstart script. ([#11493](https://github.com/netdata/netdata/issues/11493))
4641 +- Add POWER8+ support to our official Docker images. ([#11592](https://github.com/netdata/netdata/issues/11592))
4642 +- Added static builds for ARMv7l and ARMv8a ([#11490](https://github.com/netdata/netdata/issues/11490))
4643 +- Restructure review check CI to properly show jobs as skipped. ([#11553](https://github.com/netdata/netdata/issues/11553))
4644 +- EBPF cgroup integration ([#11642](https://github.com/netdata/netdata/issues/11642))
4645 +- Update optional parameters for upcoming installer. ([#11604](https://github.com/netdata/netdata/issues/11604))
4646 +- Add concurency limits on GHA workflows. ([#11656](https://github.com/netdata/netdata/issues/11656))
4647 +- Fix build issue related to legacy aclk and new arch code ([#11655](https://github.com/netdata/netdata/issues/11655))
4648 +- Adds new alarm status protocol messages ([#11612](https://github.com/netdata/netdata/issues/11612))
4649 +- Update dashboard to version v2.20.9. ([#11661](https://github.com/netdata/netdata/issues/11661))
4650 +- Migrated release build process from Travis CI to GitHub Actions. ([#11055](https://github.com/netdata/netdata/issues/11055))
4651 +- Add Ubuntu 21.10 to CI. ([#11585](https://github.com/netdata/netdata/issues/11585))
4652 +- Fix file name typos in Travis config from #11055 ([#11667](https://github.com/netdata/netdata/issues/11667))
4653 +- Revert "Update alarms info" ([#11633](https://github.com/netdata/netdata/issues/11633))
4654 +- Fix swap_used alarm calc ([#11672](https://github.com/netdata/netdata/issues/11672))
4655 +- EBPF process (collector improvements) ([#11643](https://github.com/netdata/netdata/issues/11643))
4656 +- Bump google-github-actions/upload-cloud-storage from 0.2.1 to 0.4.0 ([#11671](https://github.com/netdata/netdata/issues/11671))
4657 +- Fix interval usage and reduce I/O ([#11662](https://github.com/netdata/netdata/issues/11662))
4658 +- Fix line arguments (eBPF) ([#11670](https://github.com/netdata/netdata/issues/11670))
4659 +- Add snapshot message and calls to sql_queue_removed_alerts_to_aclk ([#11664](https://github.com/netdata/netdata/issues/11664))
4660 +- Fix permissions for artifact build CI. ([#11673](https://github.com/netdata/netdata/issues/11673))
4661 +- Optimize static build and update various dependencies. ([#11660](https://github.com/netdata/netdata/issues/11660))
4662 +- Explicitly opt out of LTO in RPM builds. ([#11644](https://github.com/netdata/netdata/issues/11644))
4663 +- Add flag to mark containers as created from official images in analytics. ([#11606](https://github.com/netdata/netdata/issues/11606))
4664 +- Mark unmaintained tests as expected failures. ([#11657](https://github.com/netdata/netdata/issues/11657))
4665 +- Mark g++ for freebsd as NOTREQUIRED ([#11678](https://github.com/netdata/netdata/issues/11678))
4666 +- New eBPF and libbpf releases ([#11680](https://github.com/netdata/netdata/issues/11680))
4667 +- Fix typo in release build workflow. ([#11686](https://github.com/netdata/netdata/issues/11686))
4668 +- Fix "lsns: unknown column" logging in cgroup-network-helper script ([#11687](https://github.com/netdata/netdata/issues/11687))
4669 +- Update pfsense.md ([#11674](https://github.com/netdata/netdata/issues/11674))
4670 +- Ci: remove concurrency for labeler ([#11691](https://github.com/netdata/netdata/issues/11691))
4671 +- Fix handling of disabling telemetry in static builds. ([#11689](https://github.com/netdata/netdata/issues/11689))
4672 +- Postgres collector: Fix crash the wal query if wal-file was removed concurrently ([#11697](https://github.com/netdata/netdata/issues/11697))
4673 +- Fix yet another typo in the release build CI. ([#11698](https://github.com/netdata/netdata/issues/11698))
4674 +- Charts 2.0 - fix broken link ([#11701](https://github.com/netdata/netdata/issues/11701))
4675 +- Fix bug in http client ([#11650](https://github.com/netdata/netdata/issues/11650))
4676 +- Updater: don't use api.github.com when checking for latest stable version ([#11700](https://github.com/netdata/netdata/issues/11700))
4677 +- Fix libbpf handling in RPM builds. ([#11702](https://github.com/netdata/netdata/issues/11702))
4678 +- Fix coverity issues 373612 & 373611 ([#11684](https://github.com/netdata/netdata/issues/11684))
4679 +- Fix warnings from -Wformat-truncation=2 ([#11676](https://github.com/netdata/netdata/issues/11676))
4680 +- Reuse the SN_EXISTS bit to track anomaly status. ([#11154](https://github.com/netdata/netdata/issues/11154))
4681 +- Fix handling of artifacts in release build workflow. ([#11705](https://github.com/netdata/netdata/issues/11705))
4682 +- Ebpf doc ([#11703](https://github.com/netdata/netdata/issues/11703))
4683 +- Fix kickstart.md Installation Guide Links ([#11708](https://github.com/netdata/netdata/issues/11708))
4684 +- EBPF mdflush ([#11681](https://github.com/netdata/netdata/issues/11681))
4685 +- Stream chart labels ([#11675](https://github.com/netdata/netdata/issues/11675))
4686 +- Queue removed alerts to cloud for new architecture ([#11704](https://github.com/netdata/netdata/issues/11704))
4687 +- Fix artifact consolidation in release build. ([#11712](https://github.com/netdata/netdata/issues/11712))
4688 +- Add support for local builds to the new kickstart script. ([#11654](https://github.com/netdata/netdata/issues/11654))
4689 +- Add sensors to charts.d.conf and add a note how to enable it ([#11715](https://github.com/netdata/netdata/issues/11715))
4690 +- Fix artifact handling for release artifact uploads. ([#11717](https://github.com/netdata/netdata/issues/11717))
4691 +- Update README.md ([#11714](https://github.com/netdata/netdata/issues/11714))
4692 +- Adding (eBPF) to submenu ([#11721](https://github.com/netdata/netdata/issues/11721))
4693 +- Anomaly Detection MVP ([#11548](https://github.com/netdata/netdata/issues/11548))
4694 +- Fix handling of artifacts for nightlies and release builds. ([#11725](https://github.com/netdata/netdata/issues/11725))
4695 +- Fix handling of distfile links in release/nightly builds. ([#11726](https://github.com/netdata/netdata/issues/11726))
4696 +- Updating Docker Node Instructions for Clarity ([#11713](https://github.com/netdata/netdata/issues/11713))
4697 +- Update README.md ([#11728](https://github.com/netdata/netdata/issues/11728))
4698 +- Fixing Link to New Charts ([#11729](https://github.com/netdata/netdata/issues/11729))
4699 +- Add log grouping in installer and static build code when running under GitHub Actions. ([#11720](https://github.com/netdata/netdata/issues/11720))
4700 +- Make package builds more resilient against network issues. ([#11731](https://github.com/netdata/netdata/issues/11731))
4701 +- Bring eBPF to static binaries ([#11709](https://github.com/netdata/netdata/issues/11709))
4702 +- Move initial snapshot_proto generation inside the loop ([#11719](https://github.com/netdata/netdata/issues/11719))
4703 +- Fix ACLK online chart ([#11734](https://github.com/netdata/netdata/issues/11734))
4704 +- Fix typo in aclk_query.c ([#11737](https://github.com/netdata/netdata/issues/11737))
4705 +- Remove Alpine 3.11 from CI. ([#11598](https://github.com/netdata/netdata/issues/11598))
4706 +- Add @maneamarius to CODEOWNERS. ([#11740](https://github.com/netdata/netdata/issues/11740))
4707 +- Only add comma in api/v1/info if ml-info is going to be printed ([#11739](https://github.com/netdata/netdata/issues/11739))
4708 +- Update jQuery Dependency ([#11710](https://github.com/netdata/netdata/issues/11710))
4709 +- Disable C++ warnings from dlib library. ([#11738](https://github.com/netdata/netdata/issues/11738))
4710 +- Minor - fix typo popocorn->popcorn ([#11745](https://github.com/netdata/netdata/issues/11745))
4711 +- Add Fedora 35 to CI. ([#11641](https://github.com/netdata/netdata/issues/11641))
4712 +- Add *.mdx to labeler config ([#11748](https://github.com/netdata/netdata/issues/11748))
4713 +- Teach GH about ML label and its code owners. ([#11750](https://github.com/netdata/netdata/issues/11750))
4714 +- Improve the ACLK sync process for the new cloud architecture ([#11744](https://github.com/netdata/netdata/issues/11744))
4715 +- Update eBPF documentation ([#11741](https://github.com/netdata/netdata/issues/11741))
4716 +- Update dashboard to version v2.20.11. ([#11743](https://github.com/netdata/netdata/issues/11743))
4717 +- Update enable-streaming.mdx ([#11747](https://github.com/netdata/netdata/issues/11747))
4718 +- Add basic telemetry to the new kickstart script. ([#11718](https://github.com/netdata/netdata/issues/11718))
4719 +- Sanely handle installing on systems with limited RAM. ([#11658](https://github.com/netdata/netdata/issues/11658))
4720 +- Dont extend popcorn timer for children ([#11758](https://github.com/netdata/netdata/issues/11758))
4721 +- Add exit points to ACLK-NG ([#11751](https://github.com/netdata/netdata/issues/11751))
4722 +- Fix (cgroups.plugin): containers name resolution for crio/containerd cri ([#11756](https://github.com/netdata/netdata/issues/11756))
4723 +- Add SSL_MODE_ENABLE_PARTIAL_WRITE to netdata_srv_ctx ([#11754](https://github.com/netdata/netdata/issues/11754))
4724 +- Fix retention messages ([#11762](https://github.com/netdata/netdata/issues/11762))
4725 +- Add protobuf to `-W buildinfo` output. ([#11634](https://github.com/netdata/netdata/issues/11634))
4726 +- Minor improvement to CPU number function regarding macOS. ([#11746](https://github.com/netdata/netdata/issues/11746))
4727 +- Update eBPF documenation (Filesystem and HardIRQ) ([#11752](https://github.com/netdata/netdata/issues/11752))
4728 +- Fix log if D_ACLK is used ([#11763](https://github.com/netdata/netdata/issues/11763))
4729 +- Implements cloud initiated disconnect command ([#11723](https://github.com/netdata/netdata/issues/11723))
4730 +- Show stats for protected mount points in diskspace plugin ([#11767](https://github.com/netdata/netdata/issues/11767))
4731 +- Store and submit dimension delete messages for new cloud architecture ([#11765](https://github.com/netdata/netdata/issues/11765))
4732 +- Fix host hop count reported to the cloud ([#11768](https://github.com/netdata/netdata/issues/11768))
4733 +- Update netdata-security.md ([#11772](https://github.com/netdata/netdata/issues/11772))
4734 +- Fix link to new charts. ([#11773](https://github.com/netdata/netdata/issues/11773))
4735 +- Skip sending hidden dimensions via ACLK ([#11770](https://github.com/netdata/netdata/issues/11770))
4736 +- Remove feature flag and commented out code ([#11774](https://github.com/netdata/netdata/issues/11774))
4737 +- Announce proto capability and enable if cloud supports ([#11476](https://github.com/netdata/netdata/issues/11476))
4738 +- Insert into aclk_alert instead of queuing ([#11769](https://github.com/netdata/netdata/issues/11769))
4739 +- Temporary fix for cgroup renaming ([#11775](https://github.com/netdata/netdata/issues/11775))
4740 +- Add command for new health entity file. ([#11733](https://github.com/netdata/netdata/issues/11733))
4741 +- Add nightly release version to readme ([#11780](https://github.com/netdata/netdata/issues/11780))
4742 +- Fix proc/interrupts parser ([#11783](https://github.com/netdata/netdata/issues/11783))
4743 +- Packaging: update go.d.plugin version to v0.31.0 ([#11789](https://github.com/netdata/netdata/issues/11789))
4744 +- Removing dated contact suggestion. ([#11732](https://github.com/netdata/netdata/issues/11732))
4745 +- Adding parenthesis ([#11766](https://github.com/netdata/netdata/issues/11766))
4746 +- Overhaul build CI. ([#11699](https://github.com/netdata/netdata/issues/11699))
4747 +- Fix typos ([#11782](https://github.com/netdata/netdata/issues/11782))
4748 +- Create directory structure for splitting out install-required-packages.sh ([#11790](https://github.com/netdata/netdata/issues/11790))
4749 +- Verify checksums of makeself deps. ([#11791](https://github.com/netdata/netdata/issues/11791))
4750 +- Fix the new static archive verification job. ([#11792](https://github.com/netdata/netdata/issues/11792))
4751 +- Delete from aclk alerts table if ack'ed from cloud one day ago ([#11779](https://github.com/netdata/netdata/issues/11779))
4752 +- Use correct hop count if host is already in memory ([#11785](https://github.com/netdata/netdata/issues/11785))
4753 +- Add Oracle Linux 8 to CI and package builds. ([#11776](https://github.com/netdata/netdata/issues/11776))
4754 +- Use the proper format specifier when logging configuration options. ([#11795](https://github.com/netdata/netdata/issues/11795))
4755 +- Assorted cleanups to static builds. ([#11798](https://github.com/netdata/netdata/issues/11798))
4756 +- Update libbpf ([#11800](https://github.com/netdata/netdata/issues/11800))
4757 +- Add some logging for cloud new architecture to access.log ([#11788](https://github.com/netdata/netdata/issues/11788))
4758 +- Add POWER8+ static builds. ([#11802](https://github.com/netdata/netdata/issues/11802))
4759 +- Always queue alerts to aclk_alert ([#11806](https://github.com/netdata/netdata/issues/11806))
4760 +- Update interact-charts.mdx ([#11808](https://github.com/netdata/netdata/issues/11808))
4761 +- Fix coverity issues ([#11809](https://github.com/netdata/netdata/issues/11809))
4762 +- Cleanup compilation warnings ([#11810](https://github.com/netdata/netdata/issues/11810))
4763 +- Specify pip3 when installing git-semver package ([#11817](https://github.com/netdata/netdata/issues/11817))
4764 +- Use two digits after the decimal point for the anomaly rate. ([#11804](https://github.com/netdata/netdata/issues/11804))
4765 +- Simple fix for the data API query ([#11787](https://github.com/netdata/netdata/issues/11787))
4766 +- Δont use wc στρθψτ if it may not exist ([#11820](https://github.com/netdata/netdata/issues/11820))
4767 +- Add kickoke to docs codeowners ([#11824](https://github.com/netdata/netdata/issues/11824))
4768 +- Set NETDATA_CONTAINER_OS_DETECTION to system_info->container_os_detection ([#11827](https://github.com/netdata/netdata/issues/11827))
4769 +- Feat(apps.plugin): add aws to apps_groups.conf ([#11826](https://github.com/netdata/netdata/issues/11826))
4770 +- Add a note about pkg-config file location for freeipmi ([#11831](https://github.com/netdata/netdata/issues/11831))
4771 +- Add commands to check and fix database corruption ([#11828](https://github.com/netdata/netdata/issues/11828))
4772 +- Remove pihole_blocked_queries alert ([#11829](https://github.com/netdata/netdata/issues/11829))
4773 +- Updating ansible steps for clarity ([#11823](https://github.com/netdata/netdata/issues/11823))
4774 +- Feat(apps.plugin): add consul to apps_groups.conf ([#11839](https://github.com/netdata/netdata/issues/11839))
4775 +- Fix alarms info ([#11844](https://github.com/netdata/netdata/issues/11844))
4776 +- Proto optional fix ([#11840](https://github.com/netdata/netdata/issues/11840))
4777 +- [netdata minor release] v1.32.0
4778 +
4779 +## [1.31.0] - 2021-05-19
4780 +
4781 +### Merged Pull Requests:
4782 +
4783 +- Add lists of monitored metrics to the cgroups plugin documentation ([#10924](https://github.com/netdata/netdata/issues/10924))
4784 +- Add a chart for out of memory kills ([#10880](https://github.com/netdata/netdata/issues/10880))
4785 +- Add new charts for extended disk metrics ([#10939](https://github.com/netdata/netdata/issues/10939))
4786 +- Add a plugin for the system clock synchronization state ([#10895](https://github.com/netdata/netdata/issues/10895))
4787 +- Health: add Inconsistent state to the mysql_galera_cluster_state alarm ([#10945](https://github.com/netdata/netdata/issues/10945))
4788 +- Add a metric for percpu memory ([#10964](https://github.com/netdata/netdata/issues/10964))
4789 +- Fix epbf crash when process exit ([#10957](https://github.com/netdata/netdata/issues/10957))
4790 +- Update cloud-providers.md ([#10942](https://github.com/netdata/netdata/issues/10942))
4791 +- Spelling build ([#10909](https://github.com/netdata/netdata/issues/10909))
4792 +- Spelling exporting ([#10915](https://github.com/netdata/netdata/issues/10915))
4793 +- Spelling health ([#10916](https://github.com/netdata/netdata/issues/10916))
4794 +- Spelling libnetdata ([#10917](https://github.com/netdata/netdata/issues/10917))
4795 +- Spelling tests ([#10920](https://github.com/netdata/netdata/issues/10920))
4796 +- Spelling aclk ([#10910](https://github.com/netdata/netdata/issues/10910))
4797 +- Spelling: backend ([#10911](https://github.com/netdata/netdata/issues/10911))
4798 +- Spelling daemon ([#10913](https://github.com/netdata/netdata/issues/10913))
4799 +- Spelling database ([#10914](https://github.com/netdata/netdata/issues/10914))
4800 +- Spelling: bidirectional ([#10918](https://github.com/netdata/netdata/issues/10918))
4801 +- Spelling streaming ([#10919](https://github.com/netdata/netdata/issues/10919))
4802 +- Spelling web gui ([#10922](https://github.com/netdata/netdata/issues/10922))
4803 +- Spelling collectors ([#10912](https://github.com/netdata/netdata/issues/10912))
4804 +- Add --recursive to docu ([#10932](https://github.com/netdata/netdata/issues/10932))
4805 +- Health: add synchronization.conf to the Makefile ([#10907](https://github.com/netdata/netdata/issues/10907))
4806 +- Health: add systemdunits alarms ([#10906](https://github.com/netdata/netdata/issues/10906))
4807 +- Web/gui: add systemdunits info to the dashboard_info.js ([#10904](https://github.com/netdata/netdata/issues/10904))
4808 +- Spelling web api server ([#10921](https://github.com/netdata/netdata/issues/10921))
4809 +- Remove RewriteEngine for dedicated vHost ([#10873](https://github.com/netdata/netdata/issues/10873))
4810 +- Fix formatting and wording in the Running-behind-apache guide ([#8706](https://github.com/netdata/netdata/issues/8706))
4811 +- Health: fix alarm line options syntax in the docs ([#10974](https://github.com/netdata/netdata/issues/10974))
4812 +- Bump actions/upload-artifact from v2.2.2 to v2.2.3 ([#10959](https://github.com/netdata/netdata/issues/10959))
4813 +- Fix uil in statsd guide ([#10975](https://github.com/netdata/netdata/issues/10975))
4814 +- Nvidia-smi: update README.md ([#10214](https://github.com/netdata/netdata/issues/10214))
4815 +- Add docs on Nginx with IPv6 listen for certbot to work ([#10473](https://github.com/netdata/netdata/issues/10473))
4816 +- Python.d(smartd_log): collect attribute 249 -- NAND Writes 1GiB ([#10872](https://github.com/netdata/netdata/issues/10872))
4817 +- Replace references to Google Analytics with Posthog where relevant ([#10868](https://github.com/netdata/netdata/issues/10868))
4818 +- Collectors/charts.d/opensips: fix detection of `opensipsctl` executable ([#10978](https://github.com/netdata/netdata/issues/10978))
4819 +- Update fping version ([#10977](https://github.com/netdata/netdata/issues/10977))
4820 +- Fine tune clang-format ([#7271](https://github.com/netdata/netdata/issues/7271))
4821 +- Upgrade OKay repository RPM for RHEL8 ([#10973](https://github.com/netdata/netdata/issues/10973))
4822 +- Improvements to dash-example.html ([#10870](https://github.com/netdata/netdata/issues/10870))
4823 +- Remove error message on netdata restart ([#8685](https://github.com/netdata/netdata/issues/8685))
4824 +- Contributing revamp, take 2 ([#10956](https://github.com/netdata/netdata/issues/10956))
4825 +- Remove condition that was creating gaps on cachestat ([#10972](https://github.com/netdata/netdata/issues/10972))
4826 +- Assorted fixes for Travis CI code. ([#10981](https://github.com/netdata/netdata/issues/10981))
4827 +- Update eBPF documentation ([#10982](https://github.com/netdata/netdata/issues/10982))
4828 +- Bring flexible adjust for eBPF hash tables ([#10962](https://github.com/netdata/netdata/issues/10962))
4829 +- Update web server options for respecting browser DNT ([#10157](https://github.com/netdata/netdata/issues/10157))
4830 +- Remove obsolete docs ([#10979](https://github.com/netdata/netdata/issues/10979))
4831 +- Implements new https client for ACLK ([#10805](https://github.com/netdata/netdata/issues/10805))
4832 +- Move global stats to a separate thread ([#10991](https://github.com/netdata/netdata/issues/10991))
4833 +- Implements ACLK env endpoint ([#10833](https://github.com/netdata/netdata/issues/10833))
4834 +- Fix MQTT connection on OTP fail ([#10839](https://github.com/netdata/netdata/issues/10839))
4835 +- Add missing SPDX ([#10990](https://github.com/netdata/netdata/issues/10990))
4836 +- Add a chart with netdata uptime ([#10997](https://github.com/netdata/netdata/issues/10997))
4837 +- Provide new attributes in health conf files ([#10961](https://github.com/netdata/netdata/issues/10961))
4838 +- Ci: fix aws-kinesis builds ([#10992](https://github.com/netdata/netdata/issues/10992))
4839 +- Backend chart filtering backward compatibility fix ([#11002](https://github.com/netdata/netdata/issues/11002))
4840 +- Msteams 2 ([#9905](https://github.com/netdata/netdata/issues/9905))
4841 +- Python.d: add plugin and module names to the runtime charts ([#11007](https://github.com/netdata/netdata/issues/11007))
4842 +- ACLK Passwd endpoint update ([#10859](https://github.com/netdata/netdata/issues/10859))
4843 +- Remove vneg from ACLK-NG ([#10980](https://github.com/netdata/netdata/issues/10980))
4844 +- Provide more agent analytics to posthog ([#10887](https://github.com/netdata/netdata/issues/10887))
4845 +- Allow the remote write configuration have multiple destinations ([#11005](https://github.com/netdata/netdata/issues/11005))
4846 +- Revert "Provide more agent analytics to posthog ([#10887](https://github.com/netdata/netdata/issues/10887))" ([#11011](https://github.com/netdata/netdata/issues/11011))
4847 +- Improvements to anomalies collector following dogfooding ([#11003](https://github.com/netdata/netdata/issues/11003))
4848 +- Persist claim ids in local database for parent and children ([#10993](https://github.com/netdata/netdata/issues/10993))
4849 +- [area/collectors] Added support for libvirtd LXC containers to the `cgroup-name.sh` cgroup name normalization script ([#11006](https://github.com/netdata/netdata/issues/11006))
4850 +- Anonymous-statistics: add a timeout when using `curl` ([#11010](https://github.com/netdata/netdata/issues/11010))
4851 +- Improve get started/installation docs ([#10995](https://github.com/netdata/netdata/issues/10995))
4852 +- Report porcelain output ([#10494](https://github.com/netdata/netdata/issues/10494))
4853 +- Rename struct fields from class to classification. ([#11019](https://github.com/netdata/netdata/issues/11019))
4854 +- ACLK new cloud architecture new TBEB ([#10941](https://github.com/netdata/netdata/issues/10941))
4855 +- Bump to netdata-pandas==0.0.38 ([#11022](https://github.com/netdata/netdata/issues/11022))
4856 +- Proc/mdstat: add raid level to the family ([#11024](https://github.com/netdata/netdata/issues/11024))
4857 +- Store null claim id in the database for non claimed children ([#11036](https://github.com/netdata/netdata/issues/11036))
4858 +- Health/vernemq: use `average` instead of `sum` ([#11037](https://github.com/netdata/netdata/issues/11037))
4859 +- Remove links to old install doc ([#11014](https://github.com/netdata/netdata/issues/11014))
4860 +- Zscores python collector ([#10673](https://github.com/netdata/netdata/issues/10673))
4861 +- Provide more agent analytics to posthog ([#11020](https://github.com/netdata/netdata/issues/11020))
4862 +- K6 quality of life updates ([#10985](https://github.com/netdata/netdata/issues/10985))
4863 +- Dashboard version 2.17.0 ([#10856](https://github.com/netdata/netdata/issues/10856))
4864 +- Create ebpf.d directory in PLUGINDIR for debian packages(netdata#11017) ([#11031](https://github.com/netdata/netdata/issues/11031))
4865 +- Load names ([#11034](https://github.com/netdata/netdata/issues/11034))
4866 +- Remove dots in cgroup ids ([#11050](https://github.com/netdata/netdata/issues/11050))
4867 +- Add python changefinder collector ([#10672](https://github.com/netdata/netdata/issues/10672))
4868 +- Add `charts` to templates ([#11054](https://github.com/netdata/netdata/issues/11054))
4869 +- Fix coverity issue (CID 370510) #11060
4870 +- Limit maximum concurrent CI jobs to avoid blocking other CI. ([#11057](https://github.com/netdata/netdata/issues/11057))
4871 +- Add Third-party collector: nextcloud plugin ([#11032](https://github.com/netdata/netdata/issues/11032))
4872 +- Overhaul streaming documentation ([#10709](https://github.com/netdata/netdata/issues/10709))
4873 +- Improve dashboard documentation (part 1) ([#11015](https://github.com/netdata/netdata/issues/11015))
4874 +- Add documentation for claiming during kickstart installation ([#11052](https://github.com/netdata/netdata/issues/11052))
4875 +- Add functionality to store node_id for a host ([#11059](https://github.com/netdata/netdata/issues/11059))
4876 +- Change_cahestat_type: Change apps chart type to improve chart visualization and give more meaninful information ([#11074](https://github.com/netdata/netdata/issues/11074))
4877 +- Ebpf directory cache ([#10855](https://github.com/netdata/netdata/issues/10855))
4878 +- Fix typo ([#11082](https://github.com/netdata/netdata/issues/11082))
4879 +- Health: clarify which health configuration entities are required / optional ([#11086](https://github.com/netdata/netdata/issues/11086))
4880 +- Reduce info logging ([#11091](https://github.com/netdata/netdata/issues/11091))
4881 +- Fix SSL random failures when using multithreaded web server with OpenSSL < 1.1.0 ([#11089](https://github.com/netdata/netdata/issues/11089))
4882 +- Netdata-installer.sh: Enable IPv6 support in libwebsockets ([#11079](https://github.com/netdata/netdata/issues/11079)) ([#11080](https://github.com/netdata/netdata/issues/11080))
4883 +- Add an event when an incomplete agent shutdown is detected #11078
4884 +- Improve dashboard documentation (part 2) ([#11065](https://github.com/netdata/netdata/issues/11065))
4885 +- Add a module for ZFS pool state ([#11071](https://github.com/netdata/netdata/issues/11071))
4886 +- Cgroups: fix network interfaces detection when using `virsh` ([#11096](https://github.com/netdata/netdata/issues/11096))
4887 +- Improve installation method for Alpine ([#11035](https://github.com/netdata/netdata/issues/11035))
4888 +- Don't repeat the cgroup discovery cleanup info message ([#11101](https://github.com/netdata/netdata/issues/11101))
4889 +- Add host_cloud_enabled attribute to analytics ([#11100](https://github.com/netdata/netdata/issues/11100))
4890 +- Aclk/legacy: change aclk statistics charts units from kB/s to KiB/s ([#11103](https://github.com/netdata/netdata/issues/11103))
4891 +- Check the version of the default cgroup mountpoint ([#11102](https://github.com/netdata/netdata/issues/11102))
4892 +- Packaging: update go.d.plugin version to v0.28.2 ([#11104](https://github.com/netdata/netdata/issues/11104))
4893 +- Add a workflow to generate version bump PRs for the dashboard. ([#11076](https://github.com/netdata/netdata/issues/11076))
4894 +- Build mqtt_websockets with netdata autotools ([#11083](https://github.com/netdata/netdata/issues/11083))
4895 +- Minor -fixes typo in ACLK-NG ([#11107](https://github.com/netdata/netdata/issues/11107))
4896 +- Support mulitple jobs in make(1) when building LWS. ([#10799](https://github.com/netdata/netdata/issues/10799))
4897 +- Updates mqtt_websockets ([#11105](https://github.com/netdata/netdata/issues/11105))
4898 +- Check configuration for CUSTOM and MSTEAM ([#11113](https://github.com/netdata/netdata/issues/11113))
4899 +- Analytics: reduce alarms notifications dump logging ([#11116](https://github.com/netdata/netdata/issues/11116))
4900 +- Automatically trigger Helmchart PR on agent release. ([#11084](https://github.com/netdata/netdata/issues/11084))
4901 +- Remove dash-example, place in community repo ([#11077](https://github.com/netdata/netdata/issues/11077))
4902 +- Fix broken link in doc ([#11122](https://github.com/netdata/netdata/issues/11122))
4903 +- Fix broken links in various docs ([#11109](https://github.com/netdata/netdata/issues/11109))
4904 +- Update k6.md ([#11127](https://github.com/netdata/netdata/issues/11127))
4905 +- Reduce the number of ACLK chart updates during chart obsoletion ([#11133](https://github.com/netdata/netdata/issues/11133))
4906 +- Use size_t instead of int for vfs_bufspace_count in FreeBSD plugin ([#11142](https://github.com/netdata/netdata/issues/11142))
4907 +- Bundle the react dashboard code into the agent repo directly. ([#11139](https://github.com/netdata/netdata/issues/11139))
4908 +- Update performance.md ([#11144](https://github.com/netdata/netdata/issues/11144))
4909 +- Fix broken link ([#11148](https://github.com/netdata/netdata/issues/11148))
4910 +- Init new files and create connections ([#11099](https://github.com/netdata/netdata/issues/11099))
4911 +- Add sections for class, component and type. ([#10984](https://github.com/netdata/netdata/issues/10984))
4912 +- [netdata minor release] v1.31.0
4913 +
4914 +## [1.30.1] - 2021-04-12
4915 +
4916 +### Merged Pull Requests:
4917 +
4918 +- Fixed bundling of ACLK-NG components in dist tarballs. ([#10894](https://github.com/netdata/netdata/issues/10894))
4919 +- Properly handle binary package reuplods. ([#10878](https://github.com/netdata/netdata/issues/10878))
4920 +- Spelling build ([#10428](https://github.com/netdata/netdata/issues/10428))
4921 +- Bump version of OpenSSL bundled in static builds to 1.1.1k ([#10884](https://github.com/netdata/netdata/issues/10884))
4922 +- Add libzstd-dev ([#10925](https://github.com/netdata/netdata/issues/10925))
4923 +- Update news and GIF in README, fix typo ([#10900](https://github.com/netdata/netdata/issues/10900))
4924 +- Update README.md ([#10898](https://github.com/netdata/netdata/issues/10898))
4925 +- Fix incorrect health log entries ([#10822](https://github.com/netdata/netdata/issues/10822))
4926 +- Update CODEOWNERS ([#10928](https://github.com/netdata/netdata/issues/10928))
4927 +- Fix memory corruption issue when executing context queries in RAM/SAVE memory mode ([#10933](https://github.com/netdata/netdata/issues/10933))
4928 +- Add a CRASH event when the agent fails to properly shutdown ([#10893](https://github.com/netdata/netdata/issues/10893))
4929 +- Don’t use glob expansion in argument to `cd` in updater. ([#10936](https://github.com/netdata/netdata/issues/10936))
4930 +- [netdata patch release] v1.30.1
4931 +
4932 +## [1.30.0] - 2021-03-31
4933 +
4934 +### Merged Pull Requests:
4935 +
4936 +- [Package amd64 DEB] Package build process trigger
4937 +- [Package i386 DEB] Package build process trigger
4938 +- [Package amd64 RPM] Package build process trigger
4939 +- Update screenshots and text for new Cloud nav ([#10664](https://github.com/netdata/netdata/issues/10664))
4940 +- [Package amd64 DEB][Build latest] Package build process trigger
4941 +- [Package i386 DEB][Build latest] Package build process trigger
4942 +- [Package amd64 RPM][Build latest] Package build process trigger
4943 +- Fix broken links in active alarms doc ([#10678](https://github.com/netdata/netdata/issues/10678))
4944 +- Try to keep all pages from extents read from disk in the cache. ([#10558](https://github.com/netdata/netdata/issues/10558))
4945 +- Improve the Kubernetes deployment documentation ([#10662](https://github.com/netdata/netdata/issues/10662))
4946 +- Remove unreachable #else directives in plugins. ([#10523](https://github.com/netdata/netdata/issues/10523))
4947 +- Cpu stats per query thread ([#10634](https://github.com/netdata/netdata/issues/10634))
4948 +- Installer: update go.d.plugin version to v0.28.0 ([#10660](https://github.com/netdata/netdata/issues/10660))
4949 +- Don't add duplicate _total suffixes for the prometheus go.d module ([#10674](https://github.com/netdata/netdata/issues/10674))
4950 +- Web/gui: Fix broken external links ([#10586](https://github.com/netdata/netdata/issues/10586))
4951 +- Fix a typo in the email notifications readme ([#10668](https://github.com/netdata/netdata/issues/10668))
4952 +- Revamp statsd docs ([#10637](https://github.com/netdata/netdata/issues/10637))
4953 +- Ebpf support new collectors ([#10680](https://github.com/netdata/netdata/issues/10680))
4954 +- Add ACLK stats per cloud query type ([#10602](https://github.com/netdata/netdata/issues/10602))
4955 +- Increases ACLK TBEB randomness ([#10373](https://github.com/netdata/netdata/issues/10373))
4956 +- Add support for changing the number of pages per extent dynamically during runtime. ([#10593](https://github.com/netdata/netdata/issues/10593))
4957 +- Add new cookie to fix 8094 ([#10676](https://github.com/netdata/netdata/issues/10676))
4958 +- Update_kernel_version
4959 +- Fix disk utilization and backlog charts ([#10705](https://github.com/netdata/netdata/issues/10705))
4960 +- Add noauthcodecheck workaround flag to the freeipmi plugin ([#10701](https://github.com/netdata/netdata/issues/10701))
4961 +- Add Linux page cache metrics to eBPF ([#10693](https://github.com/netdata/netdata/issues/10693))
4962 +- Change all refs from service to systemctl ([#10703](https://github.com/netdata/netdata/issues/10703))
4963 +- Add a new workflow to test that updater works as expected ([#10599](https://github.com/netdata/netdata/issues/10599))
4964 +- New version eBPF programs. ([#10707](https://github.com/netdata/netdata/issues/10707))
4965 +- Changed Docker image tagging to use semver tags for releases. ([#10648](https://github.com/netdata/netdata/issues/10648))
4966 +- Update guide: Kubernetes monitoring with Netdata: Overview and visualizations ([#10691](https://github.com/netdata/netdata/issues/10691))
4967 +- Add JSON output option for buildinfo. ([#10706](https://github.com/netdata/netdata/issues/10706))
4968 +- Log ACLK cloud commands to access.log ([#10697](https://github.com/netdata/netdata/issues/10697))
4969 +- Python.d/smartd_log: collect attribute 233 (Media Wearout Indicator (SSD)). ([#10711](https://github.com/netdata/netdata/issues/10711))
4970 +- Add guide: LAMP stack monitoring ([#10698](https://github.com/netdata/netdata/issues/10698))
4971 +- Fix a parameter binding issue when storing chart names in the database ([#10717](https://github.com/netdata/netdata/issues/10717))
4972 +- Added support for claiming nodes as part of installation. ([#10084](https://github.com/netdata/netdata/issues/10084))
4973 +- Fix typo in backend_prometheus.c ([#10716](https://github.com/netdata/netdata/issues/10716))
4974 +- Alarms collector add alarm values ([#10675](https://github.com/netdata/netdata/issues/10675))
4975 +- Remove unused fnc warning from ACLK Legacy ([#10731](https://github.com/netdata/netdata/issues/10731))
4976 +- Add the ability to store chart labels in the database ([#10718](https://github.com/netdata/netdata/issues/10718))
4977 +- Update chart's metadata in database when it already exists during creation ([#10728](https://github.com/netdata/netdata/issues/10728))
4978 +- Health: make alarms less sensitive ([#10688](https://github.com/netdata/netdata/issues/10688))
4979 +- Fix claim behind proxy ([#10734](https://github.com/netdata/netdata/issues/10734))
4980 +- Use of out-of-line struct definitions. ([#10739](https://github.com/netdata/netdata/issues/10739))
4981 +- Use a parameter name that is not a reserved keyword in C++ ([#10738](https://github.com/netdata/netdata/issues/10738))
4982 +- Activate multidb context always when dbengine is compiled ([#10732](https://github.com/netdata/netdata/issues/10732))
4983 +- Rename struct avl to avl_element and the typedef to avl_t ([#10735](https://github.com/netdata/netdata/issues/10735))
4984 +- Collectors/apps.plugin: Add wireguard to vpn ([#10743](https://github.com/netdata/netdata/issues/10743))
4985 +- Replace GA with PostHog for backend telemetry events. ([#10636](https://github.com/netdata/netdata/issues/10636))
4986 +- Move network interface speed, duplex, and operstate variables to charts ([#10740](https://github.com/netdata/netdata/issues/10740))
4987 +- Skip C++ incompatible header in main libnetdata header ([#10737](https://github.com/netdata/netdata/issues/10737))
4988 +- Fixed detection of already claimed node in Docker images. ([#10720](https://github.com/netdata/netdata/issues/10720))
4989 +- Add state map to duplex and operstate charts ([#10752](https://github.com/netdata/netdata/issues/10752))
4990 +- Web/gui: add supervisord to the dashboard_info.js ([#10754](https://github.com/netdata/netdata/issues/10754))
4991 +- Add Working Set charts to the cgroups plugin ([#10712](https://github.com/netdata/netdata/issues/10712))
4992 +- Comment out memory mode mention in example ([#10751](https://github.com/netdata/netdata/issues/10751))
4993 +- Collectors/cgroups: fix cpuset.cpus count ([#10757](https://github.com/netdata/netdata/issues/10757))
4994 +- Fix wrong count of paramteres ([#10564](https://github.com/netdata/netdata/issues/10564))
4995 +- Fixed handling of permissions for some plugins. ([#10490](https://github.com/netdata/netdata/issues/10490))
4996 +- Support VS Code container devenv ([#10723](https://github.com/netdata/netdata/issues/10723))
4997 +- Dashboard@v2.13.28 ([#10761](https://github.com/netdata/netdata/issues/10761))
4998 +- Docker-based packaging workflow in GitHub Actions. ([#9964](https://github.com/netdata/netdata/issues/9964))
4999 +- Fixed handling of perf.plugin capabilities. ([#10766](https://github.com/netdata/netdata/issues/10766))

This file is too large to show in full.

CHANGELOG.md
+2336 -931
@@ -1,932 +1,2337 @@
1 -# Changelog
1 +## [unreleased]
2 +
3 +### Merged Pull Requests:
4 +
5 +- Improve(go.d/rabbitmq): add support for old RabbitMQ whoami tags format ([#21049](https://github.com/netdata/netdata/issues/21049))
6 +- Ai-docs ([#21043](https://github.com/netdata/netdata/issues/21043))
7 +- Feat(go.d/snmp): add optional ICMP ping metrics ([#21052](https://github.com/netdata/netdata/issues/21052))
8 +- Regenerate integrations docs ([#21053](https://github.com/netdata/netdata/issues/21053))
9 +- Feat(go.d/snmp): enable ping by default ([#21054](https://github.com/netdata/netdata/issues/21054))
10 +- Regenerate integrations docs ([#21055](https://github.com/netdata/netdata/issues/21055))
11 +- Chore(go.d/snmp): remove legacy custom oid collection ([#21056](https://github.com/netdata/netdata/issues/21056))
12 +- Regenerate integrations docs ([#21058](https://github.com/netdata/netdata/issues/21058))
13 +- Chore(go.d/ddsmp): profile definition cleanup ([#21062](https://github.com/netdata/netdata/issues/21062))
14 +- Feat(go.d/snmp): add `ping_only` option ([#21064](https://github.com/netdata/netdata/issues/21064))
15 +- Regenerate integrations docs ([#21065](https://github.com/netdata/netdata/issues/21065))
16 +- Add helper to run external commands without additional privileges. ([#20990](https://github.com/netdata/netdata/issues/20990))
17 +- Win plugin files with .plugin extension ([#21068](https://github.com/netdata/netdata/issues/21068))
18 +- Add missing extension go.d (Windows) ([#21070](https://github.com/netdata/netdata/issues/21070))
19 +- Declare flatten-serde-json at the workspace. ([#21072](https://github.com/netdata/netdata/issues/21072))
20 +- Convert go collectors to use ndexec module for external command invocation ([#21067](https://github.com/netdata/netdata/issues/21067))
21 +- Ml: implement fixed time-based training windows - corrected ([#21046](https://github.com/netdata/netdata/issues/21046))
22 +- Build(deps): bump openssl version in static build ([#21074](https://github.com/netdata/netdata/issues/21074))
23 +- Docs: add note about using ``--init` when not running with `pid: host` ([#21075](https://github.com/netdata/netdata/issues/21075))
24 +- Make `nd-run` silent unless exiting with an error ([#21076](https://github.com/netdata/netdata/issues/21076))
25 +- Build(go): add config dirs ([#21077](https://github.com/netdata/netdata/issues/21077))
26 +- Docs: update SNMP collector metadata to reflect profile-based collection ([#21078](https://github.com/netdata/netdata/issues/21078))
27 +- Regenerate integrations docs ([#21079](https://github.com/netdata/netdata/issues/21079))
28 +- Clean up handling of compiler flags in our build code. ([#20821](https://github.com/netdata/netdata/issues/20821))
29 +- Fix libbpf.a build path ([#21051](https://github.com/netdata/netdata/issues/21051))
30 +- Adjust Disk Size (Windows.plugin) ([#21081](https://github.com/netdata/netdata/issues/21081))
31 +- Fix duplicate header leak in ACLK HTTPS client ([#21084](https://github.com/netdata/netdata/issues/21084))
32 +- Remote MCP support (streamable http and sse) ([#21036](https://github.com/netdata/netdata/issues/21036))
33 +- MCP docs and log spamming fix ([#21087](https://github.com/netdata/netdata/issues/21087))
34 +- Register Netdata to MCP Registry ([#21088](https://github.com/netdata/netdata/issues/21088))
35 +- Fix app.mem_usage (Windows) ([#21085](https://github.com/netdata/netdata/issues/21085))
36 +- Fix cgroup-network spawn server cleanup on fatal exit ([#21080](https://github.com/netdata/netdata/issues/21080))
37 +- Correctly split MCP registry update to it’s own workflow. ([#21089](https://github.com/netdata/netdata/issues/21089))
38 +- Improve installer (Windows) ([#21090](https://github.com/netdata/netdata/issues/21090))
39 +- Build(deps): bump github.com/docker/docker from 28.4.0+incompatible to 28.5.0+incompatible in /src/go ([#21095](https://github.com/netdata/netdata/issues/21095))
40 +- Build(deps): bump github.com/go-ldap/ldap/v3 from 3.4.11 to 3.4.12 in /src/go ([#21094](https://github.com/netdata/netdata/issues/21094))
41 +- Hide mem_private_usage on Windows. ([#21093](https://github.com/netdata/netdata/issues/21093))
42 +- Fix(packaging/docker): add missing nd-run ([#21097](https://github.com/netdata/netdata/issues/21097))
43 +- Event loop cleanup ([#21091](https://github.com/netdata/netdata/issues/21091))
44 +- Add documentation and fallback to /host/ for getting the machine id ([#21044](https://github.com/netdata/netdata/issues/21044))
45 +- Update building-native-packages-locally.md ([#21101](https://github.com/netdata/netdata/issues/21101))
46 +- Use datafile block pos ([#21098](https://github.com/netdata/netdata/issues/21098))
47 +- Improve(go.d/snmp): Add APC PowerNet-MIB sysObjectID mappings and categories ([#21104](https://github.com/netdata/netdata/issues/21104))
48 +- Update `cloud-notifications` documentation ([#21105](https://github.com/netdata/netdata/issues/21105))
49 +- Regenerate integrations docs ([#21106](https://github.com/netdata/netdata/issues/21106))
50 +- Improve logging and packet handling for unknown packet IDs ([#21099](https://github.com/netdata/netdata/issues/21099))
51 +- Fix invalid map.csv ([#21108](https://github.com/netdata/netdata/issues/21108))
52 +- Fix freeipmi crash ([#21109](https://github.com/netdata/netdata/issues/21109))
53 +- Update installer documentation ([#21096](https://github.com/netdata/netdata/issues/21096))
54 +- Ibm.d.plugin: i, db2, mq, websphere ([#21066](https://github.com/netdata/netdata/issues/21066))
55 +- Build(deps): bump github.com/prometheus/common from 0.66.1 to 0.67.1 in /src/go ([#21111](https://github.com/netdata/netdata/issues/21111))
56 +- Build(deps): bump github.com/ibmdb/go_ibm_db from 0.4.5 to 0.5.3 in /src/go ([#21110](https://github.com/netdata/netdata/issues/21110))
57 +- Fix windows build ([#21113](https://github.com/netdata/netdata/issues/21113))
58 +- Address NULL access (windows.plugin) ([#21112](https://github.com/netdata/netdata/issues/21112))
59 +- Properly include client compoents for IBM MQ libraries. ([#21117](https://github.com/netdata/netdata/issues/21117))
60 +- Add openSUSE Leap 16.0 and Ubuntu 25.10 to CI and package builds. ([#21100](https://github.com/netdata/netdata/issues/21100))
61 +- Make native package dependencies consistent between DEB/RPM packages. ([#21118](https://github.com/netdata/netdata/issues/21118))
62 +- Properly check for ODBC for IBM plugin at configuration time. ([#21116](https://github.com/netdata/netdata/issues/21116))
63 +- Fix issues with IBM libs plugin. ([#21120](https://github.com/netdata/netdata/issues/21120))
64 +- Improve free disk space calculation for Windows ([#21121](https://github.com/netdata/netdata/issues/21121))
65 +- Update IBM plugin documentation. ([#21122](https://github.com/netdata/netdata/issues/21122))
66 +- Fix(ibm.d): various fixes ([#21123](https://github.com/netdata/netdata/issues/21123))
67 +- Fix(ibm.d/mq): change default ExponentialBackoff attempts to 2 ([#21124](https://github.com/netdata/netdata/issues/21124))
68 +- Chore: go.d/ibm.d various fixes ([#21128](https://github.com/netdata/netdata/issues/21128))
69 +- Build: update go otel deps ([#21129](https://github.com/netdata/netdata/issues/21129))
70 +- Build(deps): bump github/codeql-action from 3 to 4 ([#21133](https://github.com/netdata/netdata/issues/21133))
71 +- Build(deps): bump golang.org/x/net from 0.44.0 to 0.46.0 in /src/go ([#21137](https://github.com/netdata/netdata/issues/21137))
72 +- Build(deps): bump github.com/gofrs/flock from 0.12.1 to 0.13.0 in /src/go ([#21134](https://github.com/netdata/netdata/issues/21134))
73 +- Build(deps): bump github.com/docker/docker from 28.5.0+incompatible to 28.5.1+incompatible in /src/go ([#21135](https://github.com/netdata/netdata/issues/21135))
74 +- Build(deps): bump github.com/gohugoio/hashstructure from 0.5.0 to 0.6.0 in /src/go ([#21138](https://github.com/netdata/netdata/issues/21138))
75 +- Chore: move go.d/ibm.d shared pkgs out of go.d ([#21132](https://github.com/netdata/netdata/issues/21132))
76 +- Improve(go.d/snmp): automatically disable SNMP bulkwalk when not supported ([#21139](https://github.com/netdata/netdata/issues/21139))
77 +- Improve agent startup on windows ([#21125](https://github.com/netdata/netdata/issues/21125))
78 +- Add Fedora 43 to CI and package builds. ([#21142](https://github.com/netdata/netdata/issues/21142))
79 +- Skip status file on windows on crash ([#21140](https://github.com/netdata/netdata/issues/21140))
80 +- Chore(go.d): update dyncfg path ([#21141](https://github.com/netdata/netdata/issues/21141))
81 +- Updated child node behaviour change ([#21073](https://github.com/netdata/netdata/issues/21073))
82 +- Switch to using a relative RUNPATH for IBM plugin library lookup. ([#21131](https://github.com/netdata/netdata/issues/21131))
83 +- Fix AS400 metrics ([#21147](https://github.com/netdata/netdata/issues/21147))
84 +- Additional checks during cgroup discovery ([#21148](https://github.com/netdata/netdata/issues/21148))
85 +- Customize node name addition ([#21151](https://github.com/netdata/netdata/issues/21151))
86 +- Fix NaN check in anomaly score calculation ([#21149](https://github.com/netdata/netdata/issues/21149))
87 +- Skip adding Sentry breadcrumb during shutdown timeout ([#21150](https://github.com/netdata/netdata/issues/21150))
88 +- Add `ServiceNow` integration ([#21154](https://github.com/netdata/netdata/issues/21154))
89 +- Regenerate integrations docs ([#21156](https://github.com/netdata/netdata/issues/21156))
90 +- Type 2 attestation added ([#21157](https://github.com/netdata/netdata/issues/21157))
91 +- Docs: update Notifications description in cloud-notifications meta ([#21159](https://github.com/netdata/netdata/issues/21159))
92 +- Regenerate integrations docs ([#21160](https://github.com/netdata/netdata/issues/21160))
93 +- As400 improvements ([#21158](https://github.com/netdata/netdata/issues/21158))
94 +- Enable Rust-based systemd journal handling code in Docker builds. ([#21161](https://github.com/netdata/netdata/issues/21161))
95 +- Use parallelization for LTO processing to reduce build times. ([#20809](https://github.com/netdata/netdata/issues/20809))
96 +- Fix feature size calculation and add error handling for KMeans training ([#21155](https://github.com/netdata/netdata/issues/21155))
97 +- Rework maintenance thread ([#20694](https://github.com/netdata/netdata/issues/20694))
98 +- Add Windows install types and release channels doc + update map.csv ([#21119](https://github.com/netdata/netdata/issues/21119))
99 +- Libunwind ([#21163](https://github.com/netdata/netdata/issues/21163))
100 +- Build(deps): bump github.com/ibmdb/go_ibm_db from 0.5.3 to 0.5.4 in /src/go ([#21167](https://github.com/netdata/netdata/issues/21167))
101 +- Build(deps): bump github.com/ibm-messaging/mq-golang/v5 from 5.6.4 to 5.6.5 in /src/go ([#21166](https://github.com/netdata/netdata/issues/21166))
102 +- Docs: fix map.csv for win ([#21168](https://github.com/netdata/netdata/issues/21168))
103 +- Build(deps): bump azure/trusted-signing-action from 0.5.9 to 0.5.10 ([#21173](https://github.com/netdata/netdata/issues/21173))
104 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.14.0 to 9.14.1 in /src/go ([#21174](https://github.com/netdata/netdata/issues/21174))
105 +- Fix /api/v3 data update_every after filtering ([#21170](https://github.com/netdata/netdata/issues/21170))
106 +- Swagger docs ([#21086](https://github.com/netdata/netdata/issues/21086))
107 +- Stacktrace-common: define USE_NOTRACE if no HAVE_BACKTRACE ([#21165](https://github.com/netdata/netdata/issues/21165))
108 +- Update swagger json from yaml ([#21176](https://github.com/netdata/netdata/issues/21176))
109 +- Periodic sync data on windows ([#21175](https://github.com/netdata/netdata/issues/21175))
110 +- Docs: remove ``` from cloud-notifications meta ([#21178](https://github.com/netdata/netdata/issues/21178))
111 +- Regenerate integrations docs ([#21179](https://github.com/netdata/netdata/issues/21179))
112 +- Chore(go.d/snmp): refactor static_tags to structured key/value format ([#21180](https://github.com/netdata/netdata/issues/21180))
113 +- Fix(health/dyncfg): add mising "repeat" in userconfig response ([#21181](https://github.com/netdata/netdata/issues/21181))
114 +- Windows Sensors (Part II) ([#20988](https://github.com/netdata/netdata/issues/20988))
115 +- Regenerate integrations docs ([#21185](https://github.com/netdata/netdata/issues/21185))
116 +- Calculate weights for multiple nodes in parallel ([#21184](https://github.com/netdata/netdata/issues/21184))
117 +- Prometheus - exporting metrics ([#21187](https://github.com/netdata/netdata/issues/21187))
118 +- Initialize cli earlier during agent startup ([#21188](https://github.com/netdata/netdata/issues/21188))
119 +- Fix ML concurrent dimension training ([#21183](https://github.com/netdata/netdata/issues/21183))
120 +- Ci: remove update-website.yml workflow ([#21191](https://github.com/netdata/netdata/issues/21191))
121 +- Netdata API ([#21193](https://github.com/netdata/netdata/issues/21193))
122 +- Alerts api summary option ([#21192](https://github.com/netdata/netdata/issues/21192))
123 +- MSSQL Small fixes (windows.plugin) ([#21197](https://github.com/netdata/netdata/issues/21197))
124 +- As400 part3: performance optimizations ([#21164](https://github.com/netdata/netdata/issues/21164))
125 +- Fix(packagin/otel-plugin): remove cap_net_bind_service ([#21198](https://github.com/netdata/netdata/issues/21198))
126 +- SQL Server Jobs (windows.plugin) ([#21182](https://github.com/netdata/netdata/issues/21182))
127 +- Regenerate integrations docs ([#21202](https://github.com/netdata/netdata/issues/21202))
128 +- Improvement(go.d/mysql): Measure redo log occupancy ([#21153](https://github.com/netdata/netdata/issues/21153))
129 +- Regenerate integrations docs ([#21205](https://github.com/netdata/netdata/issues/21205))
130 +- Acquire and release metric as needed during journal v2 migration ([#21200](https://github.com/netdata/netdata/issues/21200))
131 +- Ibm.d: various fixes ([#21204](https://github.com/netdata/netdata/issues/21204))
132 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.14.1 to 9.16.0 in /src/go ([#21208](https://github.com/netdata/netdata/issues/21208))
133 +- Build(deps): bump actions/upload-artifact from 4.6.2 to 5.0.0 ([#21206](https://github.com/netdata/netdata/issues/21206))
134 +- Docs: add SNMP profile format doc ([#21201](https://github.com/netdata/netdata/issues/21201))
135 +- Docs: add snmp profile format to snmp collector doc ([#21210](https://github.com/netdata/netdata/issues/21210))
136 +- Regenerate integrations docs ([#21211](https://github.com/netdata/netdata/issues/21211))
137 +- Add Expanded Chart Analysis doc and update map.csv ([#21213](https://github.com/netdata/netdata/issues/21213))
138 +- Events Feed ([#21215](https://github.com/netdata/netdata/issues/21215))
139 +- Dashboards and Charts ([#21216](https://github.com/netdata/netdata/issues/21216))
140 +- Monitor Anything ([#21217](https://github.com/netdata/netdata/issues/21217))
141 +- Systemd-journal ([#21222](https://github.com/netdata/netdata/issues/21222))
142 +- Charts ([#21219](https://github.com/netdata/netdata/issues/21219))
143 +- Docs: improve snmp profile format documentation ([#21223](https://github.com/netdata/netdata/issues/21223))
144 +- Active_journal_centralization_guide_no_encryption.md ([#21221](https://github.com/netdata/netdata/issues/21221))
145 +- Passive-journal-centralization-without-encryption.md ([#21220](https://github.com/netdata/netdata/issues/21220))
146 +- Doc: improve COLLECTORS.md generation ([#21225](https://github.com/netdata/netdata/issues/21225))
147 +- Docs: fix COLLECTORS.md generation ([#21228](https://github.com/netdata/netdata/issues/21228))
148 +- Regenerate integrations docs ([#21229](https://github.com/netdata/netdata/issues/21229))
149 +- Build(deps): bump github.com/prometheus/common from 0.67.1 to 0.67.2 in /src/go ([#21232](https://github.com/netdata/netdata/issues/21232))
150 +- Build(deps): bump go.mongodb.org/mongo-driver from 1.17.4 to 1.17.6 in /src/go ([#21231](https://github.com/netdata/netdata/issues/21231))
151 +- Docs: improve COLLECTORS.md generation ([#21233](https://github.com/netdata/netdata/issues/21233))
152 +- Update MCP Registry publishing workflow and migrate server.json to latest schema ([#21230](https://github.com/netdata/netdata/issues/21230))
153 +- Regenerate integrations docs ([#21234](https://github.com/netdata/netdata/issues/21234))
154 +- Fix handling of auto updater and data files during native package removal. ([#21203](https://github.com/netdata/netdata/issues/21203))
155 +- Make OpenTelemetry plugin a required dependency for native DEB/RPM packages. ([#21194](https://github.com/netdata/netdata/issues/21194))
156 +- CPU Temperature (windows.plugin) ([#20992](https://github.com/netdata/netdata/issues/20992))
157 +- Regenerate integrations docs ([#21237](https://github.com/netdata/netdata/issues/21237))
158 +- Apps.plugin: add PSS-based memory estimation ([#21199](https://github.com/netdata/netdata/issues/21199))
159 +- Regenerate integrations docs ([#21241](https://github.com/netdata/netdata/issues/21241))
160 +- Handle problematic repo configuration states in kickstart. ([#21226](https://github.com/netdata/netdata/issues/21226))
161 +- Extend code signing in Windows CI to cover drivers. ([#21242](https://github.com/netdata/netdata/issues/21242))
162 +- Check metric count during journal creation ([#21238](https://github.com/netdata/netdata/issues/21238))
163 +
164 +## [2.7.0] - 2025-09-25
165 +
166 +### Merged Pull Requests:
167 +
168 +- Update otel-collector components deps ([#20693](https://github.com/netdata/netdata/issues/20693))
169 +- Replace legacy functions-table.md with comprehensive UI documentation ([#20697](https://github.com/netdata/netdata/issues/20697))
170 +- Add Getting Started Netdata guide ([#20642](https://github.com/netdata/netdata/issues/20642))
171 +- Escape < character in plaintext ([#20699](https://github.com/netdata/netdata/issues/20699))
172 +- Update UPDATE.md ([#20701](https://github.com/netdata/netdata/issues/20701))
173 +- Fix(nvme)!: query controller instead of namespace for SMART metrics ([#20704](https://github.com/netdata/netdata/issues/20704))
174 +- Ensure chat exists before handling message input ([#20700](https://github.com/netdata/netdata/issues/20700))
175 +- Build(deps): bump k8s.io/client-go from 0.33.2 to 0.33.3 in /src/go ([#20705](https://github.com/netdata/netdata/issues/20705))
176 +- Build(deps): bump github.com/gosnmp/gosnmp from 1.41.0 to 1.42.0 in /src/go ([#20707](https://github.com/netdata/netdata/issues/20707))
177 +- Build(deps): bump github.com/gosnmp/gosnmp from 1.42.0 to 1.42.1 in /src/go ([#20709](https://github.com/netdata/netdata/issues/20709))
178 +- Update LIBBPF ([#20696](https://github.com/netdata/netdata/issues/20696))
179 +- Improve(go.d/snmp): add profile device meta to vnode labels ([#20718](https://github.com/netdata/netdata/issues/20718))
180 +- Mark the completion from the worker thread ([#20719](https://github.com/netdata/netdata/issues/20719))
181 +- Detect missing ACLK MQTT packet acknowledgents ([#20711](https://github.com/netdata/netdata/issues/20711))
182 +- Remove H2O web server code from Netdata. ([#20713](https://github.com/netdata/netdata/issues/20713))
183 +- Enable services status (windows.plugin) ([#20720](https://github.com/netdata/netdata/issues/20720))
184 +- Docs: add Network-connections to the functions table ([#20721](https://github.com/netdata/netdata/issues/20721))
185 +- Avoid static initialization ([#20722](https://github.com/netdata/netdata/issues/20722))
186 +- Update README.md ([#20724](https://github.com/netdata/netdata/issues/20724))
187 +- Update README.md ([#20723](https://github.com/netdata/netdata/issues/20723))
188 +- Fix SSL certificate detection for Rocky Linux and static curl ([#20695](https://github.com/netdata/netdata/issues/20695))
189 +- Ignore timestamps recording in gzip metadata (for reproducible builds) ([#20714](https://github.com/netdata/netdata/issues/20714))
190 +- SNMP: make units ucum ([#20710](https://github.com/netdata/netdata/issues/20710))
191 +- Reset chart variable after release ([#20727](https://github.com/netdata/netdata/issues/20727))
192 +- Deployment Guides: add and update documentation for deployment strate… ([#20712](https://github.com/netdata/netdata/issues/20712))
193 +- Revert "Deployment Guides: add and update documentation for deployment strate" ([#20728](https://github.com/netdata/netdata/issues/20728))
194 +- Build(deps): bump github.com/bmatcuk/doublestar/v4 from 4.9.0 to 4.9.1 in /src/go ([#20730](https://github.com/netdata/netdata/issues/20730))
195 +- Improve thread shutdown handling for MSSQL plugin ([#20725](https://github.com/netdata/netdata/issues/20725))
196 +- Add additional database checks during shutdown ([#20731](https://github.com/netdata/netdata/issues/20731))
197 +- Build(deps): bump openssl and curl version in static build ([#20734](https://github.com/netdata/netdata/issues/20734))
198 +- Thread creation code cleanup ([#20732](https://github.com/netdata/netdata/issues/20732))
199 +- Build(deps): bump github.com/docker/docker from 28.3.2+incompatible to 28.3.3+incompatible in /src/go ([#20739](https://github.com/netdata/netdata/issues/20739))
200 +- Fix SNDR thread startup ([#20740](https://github.com/netdata/netdata/issues/20740))
201 +- Revert "Revert "Deployment Guides: add and update documentation for deployment strate"" ([#20729](https://github.com/netdata/netdata/issues/20729))
202 +- Docs: remove customize.md ([#20742](https://github.com/netdata/netdata/issues/20742))
203 +- Chore(go.d/snmp-profiles): use same metric name for cpu usage ([#20745](https://github.com/netdata/netdata/issues/20745))
204 +- Use netdata mutex cond and lock ([#20737](https://github.com/netdata/netdata/issues/20737))
205 +- Update deployment-with-centralization-points.md ([#20748](https://github.com/netdata/netdata/issues/20748))
206 +- Remove redundant defines ([#20744](https://github.com/netdata/netdata/issues/20744))
207 +- Change remaining pthread_ cases ([#20746](https://github.com/netdata/netdata/issues/20746))
208 +- Split collection (Windows.plugin) ([#20677](https://github.com/netdata/netdata/issues/20677))
209 +- Regenerate integrations docs ([#20749](https://github.com/netdata/netdata/issues/20749))
210 +- Streaming routing documentation ([#20743](https://github.com/netdata/netdata/issues/20743))
211 +- Chore(go.d/snmp): add org to vendor map ([#20750](https://github.com/netdata/netdata/issues/20750))
212 +- Record proxy information when establishing ACLK ([#20747](https://github.com/netdata/netdata/issues/20747))
213 +- Chore(go.d/snmp): remove SNMP prefix from hostname ([#20751](https://github.com/netdata/netdata/issues/20751))
214 +- Build(deps): bump github.com/miekg/dns from 1.1.67 to 1.1.68 in /src/go ([#20753](https://github.com/netdata/netdata/issues/20753))
215 +- Chore(go.d/snmp): add _vnode_type host label and rm duplicates ([#20754](https://github.com/netdata/netdata/issues/20754))
216 +- Chore(go.d/snmp): add _clean_hostname host label ([#20755](https://github.com/netdata/netdata/issues/20755))
217 +- Chore(go.d/snmp): update hostname to not include IP ([#20756](https://github.com/netdata/netdata/issues/20756))
218 +- Improve Disk Usage Measure (Windows.plugin) ([#20752](https://github.com/netdata/netdata/issues/20752))
219 +- Chore(go.d/snmp): update org to vendor mapping ([#20757](https://github.com/netdata/netdata/issues/20757))
220 +- Add Oracle Linux 10 to CI and package builds. ([#20684](https://github.com/netdata/netdata/issues/20684))
221 +- Update welcome-to-netdata.md ([#20760](https://github.com/netdata/netdata/issues/20760))
222 +- Fix(go.d/snmp-profile): fix extends in cradlepoint.yaml ([#20762](https://github.com/netdata/netdata/issues/20762))
223 +- Fix(go.d): validate custom binary path ([#20761](https://github.com/netdata/netdata/issues/20761))
224 +- Chore(go.d): remove patternProperties from config_schema.json ([#20763](https://github.com/netdata/netdata/issues/20763))
225 +- Feat(system-info): add default network interface IP detection ([#20764](https://github.com/netdata/netdata/issues/20764))
226 +- Fix packet timeout handling ([#20766](https://github.com/netdata/netdata/issues/20766))
227 +- Add default iface info to host labels ([#20767](https://github.com/netdata/netdata/issues/20767))
228 +- Chore(go.d/snmp): add _net_default_iface_ip host label ([#20768](https://github.com/netdata/netdata/issues/20768))
229 +- Feat(go.d/snmp): add configurable device down threshold for vnodes ([#20770](https://github.com/netdata/netdata/issues/20770))
230 +- Regenerate integrations docs ([#20771](https://github.com/netdata/netdata/issues/20771))
231 +- Add publish latency to the aclk-state command ([#20769](https://github.com/netdata/netdata/issues/20769))
232 +- Update machine-learning-and-assisted-troubleshooting.md ([#20772](https://github.com/netdata/netdata/issues/20772))
233 +- Aclk improvements ([#20775](https://github.com/netdata/netdata/issues/20775))
234 +- Fix MSSQL Charts ([#20774](https://github.com/netdata/netdata/issues/20774))
235 +- Add Debian 13 to CI and package builds. ([#20776](https://github.com/netdata/netdata/issues/20776))
236 +- Docs(go.d/memcached): add UNIX socket access prerequisite ([#20780](https://github.com/netdata/netdata/issues/20780))
237 +- Regenerate integrations docs ([#20781](https://github.com/netdata/netdata/issues/20781))
238 +- Docs(go.d/mysql): add MariaDB 10.5.9+ SLAVE MONITOR privilege ([#20782](https://github.com/netdata/netdata/issues/20782))
239 +- Regenerate integrations docs ([#20783](https://github.com/netdata/netdata/issues/20783))
240 +- Fix(go.d/ddsnmp): respect metric tag order from profile definition ([#20784](https://github.com/netdata/netdata/issues/20784))
241 +- Feat(go.d/ddsnmp): add metric aggregation support for SNMP profiles ([#20786](https://github.com/netdata/netdata/issues/20786))
242 +- Chore(go.d/ddsnmp): replace Mappings with MultiValue for state-based metrics ([#20787](https://github.com/netdata/netdata/issues/20787))
243 +- Virtual node version adjustment ([#20777](https://github.com/netdata/netdata/issues/20777))
244 +- Build(deps): bump golang.org/x/net from 0.42.0 to 0.43.0 in /src/go ([#20796](https://github.com/netdata/netdata/issues/20796))
245 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.11.0 to 9.12.0 in /src/go ([#20794](https://github.com/netdata/netdata/issues/20794))
246 +- Fix(go.d): resolve potential toctou vulnerability in binary path validation ([#20798](https://github.com/netdata/netdata/issues/20798))
247 +- Ci: handle boolean values in EOL API responses for newly released distros ([#20792](https://github.com/netdata/netdata/issues/20792))
248 +- Fix pathvalidate non unix ([#20801](https://github.com/netdata/netdata/issues/20801))
249 +- Add OpenTelemetry plugin implementation. ([#20765](https://github.com/netdata/netdata/issues/20765))
250 +- Fix ping latency calculation ([#20800](https://github.com/netdata/netdata/issues/20800))
251 +- Feat(aclk): Add detailed pulse metrics for ACLK telemetry ([#20802](https://github.com/netdata/netdata/issues/20802))
252 +- Feat(go.d/ddsnmp): sysobjectid-based metadata override support for SNMP profiles ([#20803](https://github.com/netdata/netdata/issues/20803))
253 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.12.0 to 9.12.1 in /src/go ([#20804](https://github.com/netdata/netdata/issues/20804))
254 +- Feat(go.d/snmp): add SNMP sysObjectID mappings for device identification ([#20805](https://github.com/netdata/netdata/issues/20805))
255 +- Improve(go.d/zfspool): add Ubuntu zpool binary path to config ([#20806](https://github.com/netdata/netdata/issues/20806))
256 +- Clear packet id when processed from PUBACK ([#20808](https://github.com/netdata/netdata/issues/20808))
257 +- Monitor memory reclamation and buffer compact ([#20810](https://github.com/netdata/netdata/issues/20810))
258 +- Add more MSSQL metrics (windows.plugin) ([#20788](https://github.com/netdata/netdata/issues/20788))
259 +- Improve(go.d/snmp): optimize Check() to avoid heavy collection ([#20813](https://github.com/netdata/netdata/issues/20813))
260 +- Fix(go.d/ddsnmp): fix match_pattern regex behavior in metadata and metric collection ([#20814](https://github.com/netdata/netdata/issues/20814))
261 +- Render latency chart if ACLK online ([#20811](https://github.com/netdata/netdata/issues/20811))
262 +- Fix Charts (windows.plugin) ([#20815](https://github.com/netdata/netdata/issues/20815))
263 +- Fix(go.d/ddsnmp): correct profile matching, metadata precedence, and OID handling ([#20819](https://github.com/netdata/netdata/issues/20819))
264 +- Add ACLK buffer usage metrics ([#20820](https://github.com/netdata/netdata/issues/20820))
265 +- Build(deps): bump k8s.io/client-go from 0.33.3 to 0.33.4 in /src/go ([#20826](https://github.com/netdata/netdata/issues/20826))
266 +- Refactor(go.d): move nd directories to dedicated pluginconfig package ([#20827](https://github.com/netdata/netdata/issues/20827))
267 +- Feat(go.d/snmp): add YAML overrides for sysobjectids mapping ([#20828](https://github.com/netdata/netdata/issues/20828))
268 +- Improve(go.d/snmp): add more models to meta_overrides.yaml ([#20830](https://github.com/netdata/netdata/issues/20830))
269 +- Chore(go.d/snmp): merge sysObjectIDs.json into meta_overrides.yaml ([#20831](https://github.com/netdata/netdata/issues/20831))
270 +- Chore(go.d/snmp): update category of h3c devices in meta_overrides.yaml ([#20835](https://github.com/netdata/netdata/issues/20835))
271 +- Switch to a Debian 13 base for our Docker images. ([#20816](https://github.com/netdata/netdata/issues/20816))
272 +- Mqtt adjust buffer size ([#20834](https://github.com/netdata/netdata/issues/20834))
273 +- Chore(go.d/snmp): load & merge per-vendor SNMP metadata overrides ([#20837](https://github.com/netdata/netdata/issues/20837))
274 +- Use atomics for mqtt statistics ([#20836](https://github.com/netdata/netdata/issues/20836))
275 +- Improve ACLK message parsing ([#20838](https://github.com/netdata/netdata/issues/20838))
276 +- Improve(go.d/snmp): update netgear/dlink category in snmp meta ([#20839](https://github.com/netdata/netdata/issues/20839))
277 +- Revert "Switch to a Debian 13 base for our Docker images." ([#20842](https://github.com/netdata/netdata/issues/20842))
278 +- Improve(go.d/snmp): update h3c categories in snmp meta ([#20844](https://github.com/netdata/netdata/issues/20844))
279 +- Store virtual host labels ([#20841](https://github.com/netdata/netdata/issues/20841))
280 +- Build(deps): bump actions/checkout from 4 to 5 ([#20833](https://github.com/netdata/netdata/issues/20833))
281 +- Do not set virtual host flag on agent restart ([#20845](https://github.com/netdata/netdata/issues/20845))
282 +- Ci: fix docker-test.sh handling to fail on error ([#20847](https://github.com/netdata/netdata/issues/20847))
283 +- Build(deps): bump github.com/vmware/govmomi from 0.51.0 to 0.52.0 in /src/go ([#20852](https://github.com/netdata/netdata/issues/20852))
284 +- Ci: bump GoTestTools/gotestfmt-action version ([#20850](https://github.com/netdata/netdata/issues/20850))
285 +- Revert "Revert "Switch to a Debian 13 base for our Docker images."" ([#20848](https://github.com/netdata/netdata/issues/20848))
286 +- Improve(go.d/snmp): update snmp meta copilot ([#20861](https://github.com/netdata/netdata/issues/20861))
287 +- Add cargo lock file. ([#20855](https://github.com/netdata/netdata/issues/20855))
288 +- Add build-time check to reject known bad compiler flags. ([#20851](https://github.com/netdata/netdata/issues/20851))
289 +- Chore(go.d/snmp): more vendor-scoped meta yaml files ([#20863](https://github.com/netdata/netdata/issues/20863))
290 +- Kickstarter Fix for DNF5 System ([#20823](https://github.com/netdata/netdata/issues/20823))
291 +- Windows Plugin (Sensors) ([#20840](https://github.com/netdata/netdata/issues/20840))
292 +- Update documentation (Windows.plugin) ([#20864](https://github.com/netdata/netdata/issues/20864))
293 +- Update documentation ([#20865](https://github.com/netdata/netdata/issues/20865))
294 +- Regenerate integrations docs ([#20818](https://github.com/netdata/netdata/issues/20818))
295 +- Improve(go.d/snmp): add more entries in juniper metadata file ([#20867](https://github.com/netdata/netdata/issues/20867))
296 +- Rename default port for the OpenTelemetry Collector ([#20868](https://github.com/netdata/netdata/issues/20868))
297 +- Fix Table field comparison in SNMP collector table tests ([#20871](https://github.com/netdata/netdata/issues/20871))
298 +- Fix(go.d): create vnode internal data_collection_status charts in the main context ([#20872](https://github.com/netdata/netdata/issues/20872))
299 +- Build(deps): bump github.com/coreos/go-systemd/v22 from 22.5.0 to 22.6.0 in /src/go ([#20874](https://github.com/netdata/netdata/issues/20874))
300 +- Chore(go.d/ddsnmp): use plugincofng for loading profiles ([#20878](https://github.com/netdata/netdata/issues/20878))
301 +- Improve(go.d/snmp): add zyxel snmp meta file ([#20879](https://github.com/netdata/netdata/issues/20879))
302 +- Fix(go.d): fix goroutine leak and panic risk in Docker exec ([#20881](https://github.com/netdata/netdata/issues/20881))
303 +- Improve(go.d/snmp): update tplink snmp meta ([#20882](https://github.com/netdata/netdata/issues/20882))
304 +- Improve(go.d/snmp): add MikroTik type and model detection ([#20883](https://github.com/netdata/netdata/issues/20883))
305 +- Fix(go.d/snmp): handle invalid SFP temperature readings for empty slots ([#20884](https://github.com/netdata/netdata/issues/20884))
306 +- Build(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.0 in /src/go ([#20886](https://github.com/netdata/netdata/issues/20886))
307 +- Improve(go.d/snmp): add mikrotik mtxrHlProcessorTemperature ([#20885](https://github.com/netdata/netdata/issues/20885))
308 +- Updated logging documentation and added natural siem integration ([#20829](https://github.com/netdata/netdata/issues/20829))
309 +- Troubleshooting: add troubleshoot and custom investigations docs ([#20759](https://github.com/netdata/netdata/issues/20759))
310 +- Windows: round sleep to clock resolution to prevent sub-ms early-wake logs ([#20887](https://github.com/netdata/netdata/issues/20887))
311 +- Improve(go.d/snmp): update Fortinet meta ([#20888](https://github.com/netdata/netdata/issues/20888))
312 +- Improve(go.d/snmp): update Allied Telesis meta ([#20889](https://github.com/netdata/netdata/issues/20889))
313 +- Improve exporting documentation clarity and structure ([#20890](https://github.com/netdata/netdata/issues/20890))
314 +- Move exporting integrations to their own folder ([#20894](https://github.com/netdata/netdata/issues/20894))
315 +- Improve(cgroups): skip KubeVirt helper containers in virt-launcher pods ([#20896](https://github.com/netdata/netdata/issues/20896))
316 +- Improve snmp ubiquiti unifi ap model ([#20895](https://github.com/netdata/netdata/issues/20895))
317 +- Fixing Supported Linux Platforms and Versions ([#20893](https://github.com/netdata/netdata/issues/20893))
318 +- Refactor(go.d/snmp): recreate client on SNMPv3 "packet is not authentic" errors ([#20897](https://github.com/netdata/netdata/issues/20897))
319 +- Improve(go.d/snmp): make snmp v3 auth and priv keys hidden in UI ([#20898](https://github.com/netdata/netdata/issues/20898))
320 +- Update demo link formatting in documentation ([#20899](https://github.com/netdata/netdata/issues/20899))
321 +- Improved alerting docs ([#20891](https://github.com/netdata/netdata/issues/20891))
322 +- Fix processes function: Add PPID grouping and fix WOps typo ([#20902](https://github.com/netdata/netdata/issues/20902))
323 +- Build(deps): bump k8s.io/client-go from 0.33.4 to 0.34.0 in /src/go ([#20908](https://github.com/netdata/netdata/issues/20908))
324 +- Build(deps): bump github.com/stretchr/testify from 1.11.0 to 1.11.1 in /src/go ([#20906](https://github.com/netdata/netdata/issues/20906))
325 +- Update link for opt-out section ([#20909](https://github.com/netdata/netdata/issues/20909))
326 +- Update view-plan-and-billing.md ([#20910](https://github.com/netdata/netdata/issues/20910))
327 +- Fix(go.d): try rel path before checking well-known path for user and stock dirs ([#20912](https://github.com/netdata/netdata/issues/20912))
328 +- Chore(go.d): add build-time configuration directory paths ([#20913](https://github.com/netdata/netdata/issues/20913))
329 +- SIGNL4 Alert Notification ([#20911](https://github.com/netdata/netdata/issues/20911))
330 +- Fix(netdata-updater): resolve "run: command not found" error in offline install ([#20915](https://github.com/netdata/netdata/issues/20915))
331 +- Regenerate integrations docs ([#20916](https://github.com/netdata/netdata/issues/20916))
332 +- Chore(go.d): remove unused resolve hostname functionality ([#20922](https://github.com/netdata/netdata/issues/20922))
333 +- Docs(go.d/nginx): improve prerequisites for NGINX collector ([#20924](https://github.com/netdata/netdata/issues/20924))
334 +- Regenerate integrations docs ([#20925](https://github.com/netdata/netdata/issues/20925))
335 +- Fix(go.d/weblog): remove path pattern validation in dyncfg ([#20923](https://github.com/netdata/netdata/issues/20923))
336 +- Build(deps): bump github.com/prometheus/common from 0.65.0 to 0.66.1 in /src/go ([#20930](https://github.com/netdata/netdata/issues/20930))
337 +- Build(deps): bump github.com/docker/docker from 28.3.3+incompatible to 28.4.0+incompatible in /src/go ([#20929](https://github.com/netdata/netdata/issues/20929))
338 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.12.1 to 9.13.0 in /src/go ([#20928](https://github.com/netdata/netdata/issues/20928))
339 +- Build(deps): bump actions/labeler from 5 to 6 ([#20935](https://github.com/netdata/netdata/issues/20935))
340 +- Build(deps): bump actions/setup-go from 5 to 6 ([#20934](https://github.com/netdata/netdata/issues/20934))
341 +- Build(deps): bump actions/setup-python from 5 to 6 ([#20936](https://github.com/netdata/netdata/issues/20936))
342 +- Build(deps): bump golang.org/x/text from 0.28.0 to 0.29.0 in /src/go ([#20937](https://github.com/netdata/netdata/issues/20937))
343 +- Add documentation for account deletion process ([#20927](https://github.com/netdata/netdata/issues/20927))
344 +- MCP WEB CHAT: add ollama, deepseek support ([#20741](https://github.com/netdata/netdata/issues/20741))
345 +- Update account.md ([#20940](https://github.com/netdata/netdata/issues/20940))
346 +- Update sqlite to version 3.50.4 ([#20791](https://github.com/netdata/netdata/issues/20791))
347 +- Chore(go.d/pkgs/logs): validation fixes, resource safety, and cleanup ([#20931](https://github.com/netdata/netdata/issues/20931))
348 +- Update libbpf to 1.6.2 ([#20875](https://github.com/netdata/netdata/issues/20875))
349 +- Migrate the map from Learn repo to netdata/netdata ([#20942](https://github.com/netdata/netdata/issues/20942))
350 +- Add map.csv to triggers for Docs ingest workflow ([#20945](https://github.com/netdata/netdata/issues/20945))
351 +- Update account.md ([#20946](https://github.com/netdata/netdata/issues/20946))
352 +- Change MSSQL Cleanup and Queries (windows.plugin) ([#20892](https://github.com/netdata/netdata/issues/20892))
353 +- Add Network Labels to Windows. ([#20938](https://github.com/netdata/netdata/issues/20938))
354 +- Replace uv mutex and condition variables with netdata equivalents ([#20941](https://github.com/netdata/netdata/issues/20941))
355 +- BSD Compilation ([#20944](https://github.com/netdata/netdata/issues/20944))
356 +- Fix use after free in metric registry ([#20947](https://github.com/netdata/netdata/issues/20947))
357 +- Build(deps): bump golang.org/x/net from 0.43.0 to 0.44.0 in /src/go ([#20949](https://github.com/netdata/netdata/issues/20949))
358 +- Build(deps): bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6 in /src/go ([#20950](https://github.com/netdata/netdata/issues/20950))
359 +- Move whole category and fix leftovers ([#20951](https://github.com/netdata/netdata/issues/20951))
360 +- Fix(health/rocketchat): add missing "Content-Type: application/json" header ([#20954](https://github.com/netdata/netdata/issues/20954))
361 +- Improve(go.d/snmp): add transform for Host-Resources-MIB storage metrics ([#20957](https://github.com/netdata/netdata/issues/20957))
362 +- Chore(go.d/snmp): remove hrStorageTable from mikrotik-router.yaml ([#20958](https://github.com/netdata/netdata/issues/20958))
363 +- Improve(go.d/snmp): add net-snmp.yaml profile ([#20959](https://github.com/netdata/netdata/issues/20959))
364 +- Ensure memory ordering when updating partition list and the bitmap ([#20956](https://github.com/netdata/netdata/issues/20956))
365 +- Fix FreeBSD (Part II) ([#20955](https://github.com/netdata/netdata/issues/20955))
366 +- Chore(go.d/sd/snmp): remove skipping servers in snmp discovery ([#20960](https://github.com/netdata/netdata/issues/20960))
367 +- Improve(go.d/ddsnmp): add composite virtual metrics ([#20962](https://github.com/netdata/netdata/issues/20962))
368 +- Improve(go.d/ddsnmp): add composite metrics for CPU & Load Average in std-ucd-mib ([#20964](https://github.com/netdata/netdata/issues/20964))
369 +- Build(deps): bump k8s.io/client-go from 0.34.0 to 0.34.1 in /src/go ([#20968](https://github.com/netdata/netdata/issues/20968))
370 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.13.0 to 9.14.0 in /src/go ([#20966](https://github.com/netdata/netdata/issues/20966))
371 +- Improve(go.d/ddsnmp): add group_by for virtual metrics ([#20970](https://github.com/netdata/netdata/issues/20970))
372 +- Improve(go.d/ddsnmp): add per_row mode for virtual metrics ([#20971](https://github.com/netdata/netdata/issues/20971))
373 +- Docs(go.d/snmp): remove legacy "custom oid" cfg examples ([#20972](https://github.com/netdata/netdata/issues/20972))
374 +- Regenerate integrations docs ([#20973](https://github.com/netdata/netdata/issues/20973))
375 +- Docs(go.d): add UI configuration instructions and restructure Configuration section ([#20975](https://github.com/netdata/netdata/issues/20975))
376 +- Regenerate integrations docs ([#20976](https://github.com/netdata/netdata/issues/20976))
377 +- Docs: restructure Setup, update SNMP prerequisites, and fix SNMP options ([#20977](https://github.com/netdata/netdata/issues/20977))
378 +- Regenerate integrations docs ([#20978](https://github.com/netdata/netdata/issues/20978))
379 +- Perf(go.d/ddsnmp): cache group key per aggregator per metric ([#20979](https://github.com/netdata/netdata/issues/20979))
380 +- Docs: improve config options table with grouped section headers ([#20980](https://github.com/netdata/netdata/issues/20980))
381 +- Regenerate integrations docs ([#20982](https://github.com/netdata/netdata/issues/20982))
382 +- Chore: add `-c` option to gen docs for a single collector ([#20981](https://github.com/netdata/netdata/issues/20981))
383 +- Enhance README with publishing instructions for docs ([#20952](https://github.com/netdata/netdata/issues/20952))
384 +- Document accuracy implications of sampling algorithm ([#20991](https://github.com/netdata/netdata/issues/20991))
385 +- Fix(macos.plugin): drop SyncookiesFailed metric on macOS 16+ ([#20994](https://github.com/netdata/netdata/issues/20994))
386 +- Fix(go.d): skip writing HOST line for vnodes with no collected metrics ([#20995](https://github.com/netdata/netdata/issues/20995))
387 +- Ci: rm macos 13, add macos 26 ([#20993](https://github.com/netdata/netdata/issues/20993))
388 +- Chore(go.d): skip HOST for vnodes during Cleanup with stale label ([#20996](https://github.com/netdata/netdata/issues/20996))
389 +- Update welcome-to-netdata.md ([#20986](https://github.com/netdata/netdata/issues/20986))
390 +- Docs: add "per cpu core utilization" option to proc/stat meta ([#20997](https://github.com/netdata/netdata/issues/20997))
391 +- Regenerate integrations docs ([#20998](https://github.com/netdata/netdata/issues/20998))
392 +- Docs: Use fallback title "Config options" when folding title is empty ([#20999](https://github.com/netdata/netdata/issues/20999))
393 +- Regenerate integrations docs ([#21000](https://github.com/netdata/netdata/issues/21000))
394 +- Docs: add "cpu idle state" procstat config option ([#21001](https://github.com/netdata/netdata/issues/21001))
395 +- Regenerate integrations docs ([#21002](https://github.com/netdata/netdata/issues/21002))
396 +- Docs: add grouped headers to config options ([#20987](https://github.com/netdata/netdata/issues/20987))
397 +- Regenerate integrations docs ([#21007](https://github.com/netdata/netdata/issues/21007))
398 +- Deps(mcp/bridge/stdio-golang): switch to github.com/coder/websocket ([#21006](https://github.com/netdata/netdata/issues/21006))
399 +- Fix(go.d): correct buf truncate in processMetrics ([#21008](https://github.com/netdata/netdata/issues/21008))
400 +- Update best-practices.md ([#20984](https://github.com/netdata/netdata/issues/20984))
401 +- Chore(go.d): use forked gosnmp to fix SNMPv3 REPORT handling for UniFi APs ([#21009](https://github.com/netdata/netdata/issues/21009))
402 +- Chore: refactor get_doc_integrations.py to use main() and improve structure ([#20983](https://github.com/netdata/netdata/issues/20983))
403 +- Chore(go.d/snmp): remove recreating client on "packet is not authentic" ([#21010](https://github.com/netdata/netdata/issues/21010))
404 +- Handle virtual host disconnection ([#20860](https://github.com/netdata/netdata/issues/20860))
405 +- Rework dbengine async wakeup on windows ([#21003](https://github.com/netdata/netdata/issues/21003))
406 +- Fix Mermaid diagrams across multiple files ([#21011](https://github.com/netdata/netdata/issues/21011))
407 +- Improve(go.d/ddsnmp): add alternatives support for virtual metrics ([#21013](https://github.com/netdata/netdata/issues/21013))
408 +- Chore(go.d): don’t log "no such file or directory" for user SNMP profiles ([#21014](https://github.com/netdata/netdata/issues/21014))
409 +- Docs: Update ToC - add realtime-monitoring and reorganize functions ([#21012](https://github.com/netdata/netdata/issues/21012))
410 +- Fix MDX compilation errors in realtime-monitoring.md ([#21015](https://github.com/netdata/netdata/issues/21015))
411 +- Fix MDX parsing errors in realtime-monitoring.md ([#21016](https://github.com/netdata/netdata/issues/21016))
412 +- Docs: Add comprehensive scalability architecture documentation ([#21018](https://github.com/netdata/netdata/issues/21018))
413 +- Docs: Rename 'Top Monitoring' to 'Top Consumers' in Functions documentation ([#21019](https://github.com/netdata/netdata/issues/21019))
414 +- Docs: Remove parentheses from Top Consumers title to fix URL issues ([#21020](https://github.com/netdata/netdata/issues/21020))
415 +- Fix duplicate ToC entries for Top Consumers ([#21021](https://github.com/netdata/netdata/issues/21021))
416 +- Improve(go.d/ddsnmp): refactor IF-MIB profile with unified virtual metrics and 64-bit preference ([#21017](https://github.com/netdata/netdata/issues/21017))
417 +- Chore(go.d/ddsnmp): update vmBuildGroupKey in per-row mode without group_by ([#21022](https://github.com/netdata/netdata/issues/21022))
418 +- Improve(go.d/snmp): add `manual_profiles` option ([#21023](https://github.com/netdata/netdata/issues/21023))
419 +- Build(deps): bump openssl and curl version in static build ([#21024](https://github.com/netdata/netdata/issues/21024))
420 +- Build(deps): update go toolchain to v1.25.1 ([#21025](https://github.com/netdata/netdata/issues/21025))
421 +- Update README.md ([#21027](https://github.com/netdata/netdata/issues/21027))
422 +- Chore(go.d/snmp): remove/disable legacy components ([#21026](https://github.com/netdata/netdata/issues/21026))
423 +- Regenerate integrations docs ([#21028](https://github.com/netdata/netdata/issues/21028))
424 +- Chore(docs): rename REST API sidebar to Netdata APIs ([#21029](https://github.com/netdata/netdata/issues/21029))
425 +- Revert "chore(docs): rename REST API sidebar to Netdata APIs" ([#21031](https://github.com/netdata/netdata/issues/21031))
426 +- Update scalability.md ([#21030](https://github.com/netdata/netdata/issues/21030))
427 +- Ml: implement fixed time-based training windows ([#20638](https://github.com/netdata/netdata/issues/20638))
428 +- Docs: fix mdx parsing scalability.md ([#21032](https://github.com/netdata/netdata/issues/21032))
429 +- Fix(docs): update mermaid diagrams leftovers plus syntax issues ([#21034](https://github.com/netdata/netdata/issues/21034))
430 +- Improve(go.d/ddsnmp): switch profile matching to `selector` ([#21039](https://github.com/netdata/netdata/issues/21039))
431 +- Chore(go.d/ddsnmp): Improve profile sorting by match specificity ([#21042](https://github.com/netdata/netdata/issues/21042))
432 +- Context loading priority to vnodes ([#21040](https://github.com/netdata/netdata/issues/21040))
433 +- Add documentation on using custom CA certificates to Learn ([#21041](https://github.com/netdata/netdata/issues/21041))
434 +- Revert "ml: implement fixed time-based training windows ([#20638](https://github.com/netdata/netdata/issues/20638))" ([#21045](https://github.com/netdata/netdata/issues/21045))
435 +- Properly integrate Rust code checks in CI. ([#20862](https://github.com/netdata/netdata/issues/20862))
436 +
437 +## [2.6.0] - 2025-07-17
438 +
439 +### Merged Pull Requests:
440 +
441 +- Revert "Revert "fix(go.d/couchdb): correct db size charts unit"" ([#20235](https://github.com/netdata/netdata/issues/20235))
442 +- Make all threads joinable and join on agent shutdown ([#20228](https://github.com/netdata/netdata/issues/20228))
443 +- Let the user override the default stack size ([#20236](https://github.com/netdata/netdata/issues/20236))
444 +- Fix build issue on old distros ([#20243](https://github.com/netdata/netdata/issues/20243))
445 +- Session claim id in docker ([#20240](https://github.com/netdata/netdata/issues/20240))
446 +- Fix(go.d/sd/snmp): fix snmpv3 credentials ([#20247](https://github.com/netdata/netdata/issues/20247))
447 +- Fix(go.d/snmp): use ifDescr for interface name if ifName is empty ([#20248](https://github.com/netdata/netdata/issues/20248))
448 +- Fix(go.d/snmp): use 32bit counters if 64 aren't available ([#20249](https://github.com/netdata/netdata/issues/20249))
449 +- Update Netdata README ([#20251](https://github.com/netdata/netdata/issues/20251))
450 +- Docs: fix license link and remove GH alerts syntax from FAQ ([#20252](https://github.com/netdata/netdata/issues/20252))
451 +- Fix obsolete chart cleanup to properly handle vnodes ([#20254](https://github.com/netdata/netdata/issues/20254))
452 +- Chore(go.d/snmp): make enable_profiles configurable (needed for dev) ([#20255](https://github.com/netdata/netdata/issues/20255))
453 +- Fix(go.d/sd/snmp): fix snmnpv3 again ([#20256](https://github.com/netdata/netdata/issues/20256))
454 +- Clearify the path of `plugins.d/go.d.plugin` in docs ([#20258](https://github.com/netdata/netdata/issues/20258))
455 +- Update documentation for native DEB/RPM packages ([#20257](https://github.com/netdata/netdata/issues/20257))
456 +- Docs: reword go.d Troubleshooting section for clarity ([#20259](https://github.com/netdata/netdata/issues/20259))
457 +- Fix(go.d/mysql): fix MariaDB User CPU Time ([#20262](https://github.com/netdata/netdata/issues/20262))
458 +- Minor fixes ([#20263](https://github.com/netdata/netdata/issues/20263))
459 +- Update Netdata README with improved structure ([#20265](https://github.com/netdata/netdata/issues/20265))
460 +- Schedule journal file indexing after database file rotation ([#20264](https://github.com/netdata/netdata/issues/20264))
461 +- Build(deps): bump golang.org/x/net from 0.39.0 to 0.40.0 in /src/go ([#20270](https://github.com/netdata/netdata/issues/20270))
462 +- Build(deps): bump github.com/miekg/dns from 1.1.65 to 1.1.66 in /src/go ([#20268](https://github.com/netdata/netdata/issues/20268))
463 +- SNMP first cisco yaml file pass ([#20246](https://github.com/netdata/netdata/issues/20246))
464 +- Chore(go.d/snmp): small cleanup snmp profiles code ([#20274](https://github.com/netdata/netdata/issues/20274))
465 +- Switch to poll from epoll ([#20273](https://github.com/netdata/netdata/issues/20273))
466 +- Switch to uv threads ([#20250](https://github.com/netdata/netdata/issues/20250))
467 +- Improve MSSQL (Part III) ([#20230](https://github.com/netdata/netdata/issues/20230))
468 +- Docs: update mssql meta ([#20278](https://github.com/netdata/netdata/issues/20278))
469 +- Regenerate integrations docs ([#20279](https://github.com/netdata/netdata/issues/20279))
470 +- Improved StatsD documentation ([#20282](https://github.com/netdata/netdata/issues/20282))
471 +- New Windows Metrics (CPU and Memory) ([#20277](https://github.com/netdata/netdata/issues/20277))
472 +- Regenerate integrations docs ([#20284](https://github.com/netdata/netdata/issues/20284))
473 +- Model Context Protocol Server (MCP) for Netdata ([#20244](https://github.com/netdata/netdata/issues/20244))
474 +- Add "unix://" scheme to DOCKER_HOST in run.sh ([#20286](https://github.com/netdata/netdata/issues/20286))
475 +- Improve agent shutdown ([#20280](https://github.com/netdata/netdata/issues/20280))
476 +- Comment metric tags that could be metrics ([#20272](https://github.com/netdata/netdata/issues/20272))
477 +- Fix(go.d): sanitize vnode labels before creating vnode ([#20293](https://github.com/netdata/netdata/issues/20293))
478 +- Build(deps): bump k8s.io/client-go from 0.33.0 to 0.33.1 in /src/go ([#20295](https://github.com/netdata/netdata/issues/20295))
479 +- Build(deps): bump github.com/prometheus/common from 0.63.0 to 0.64.0 in /src/go ([#20296](https://github.com/netdata/netdata/issues/20296))
480 +- Minor code adjustments ([#20290](https://github.com/netdata/netdata/issues/20290))
481 +- Fix when docker socket group id points to an existing group in container ([#20288](https://github.com/netdata/netdata/issues/20288))
482 +- Build(deps): bump github.com/jackc/pgx/v5 from 5.7.4 to 5.7.5 in /src/go ([#20299](https://github.com/netdata/netdata/issues/20299))
483 +- Updating SOC2 compliance status ([#20300](https://github.com/netdata/netdata/issues/20300))
484 +- Docs: Observability centralization points ([#20292](https://github.com/netdata/netdata/issues/20292))
485 +- Fix(go.d/snmp): replace newline control chars with spaces in system info ([#20301](https://github.com/netdata/netdata/issues/20301))
486 +- Docs: fix `<br>` in streaming ([#20302](https://github.com/netdata/netdata/issues/20302))
487 +- Fix heap-use-after-free in plugins.d inflight functions ([#20304](https://github.com/netdata/netdata/issues/20304))
488 +- Fix use after free of streaming current parent ([#20305](https://github.com/netdata/netdata/issues/20305))
489 +- Improve metasync shutdown ([#20303](https://github.com/netdata/netdata/issues/20303))
490 +- Improve user transition log messages ([#20308](https://github.com/netdata/netdata/issues/20308))
491 +- Docs: fix tip in streaming readme ([#20310](https://github.com/netdata/netdata/issues/20310))
492 +- Plugins dyncfg is always on localhost ([#20312](https://github.com/netdata/netdata/issues/20312))
493 +- Netdata ai ([#20309](https://github.com/netdata/netdata/issues/20309))
494 +- Docs: fix netdata-assistant.md ([#20314](https://github.com/netdata/netdata/issues/20314))
495 +- IIS W3SCV W3MP Metrics (windows.plugin) ([#20245](https://github.com/netdata/netdata/issues/20245))
496 +- Regenerate integrations docs ([#20315](https://github.com/netdata/netdata/issues/20315))
497 +- Reduce memory allocations in event loops ([#20306](https://github.com/netdata/netdata/issues/20306))
498 +- Cisco yaml pass ([#20291](https://github.com/netdata/netdata/issues/20291))
499 +- Ci: ignore changes in src/go/otel-collector/release-config.yaml.in ([#20222](https://github.com/netdata/netdata/issues/20222))
500 +- Build(deps): update otel dependencies version ([#20319](https://github.com/netdata/netdata/issues/20319))
501 +- SNMP: _generic-if.yaml pass ([#20317](https://github.com/netdata/netdata/issues/20317))
502 +- Update libbpf ([#20316](https://github.com/netdata/netdata/issues/20316))
503 +- Build(deps): bump github.com/lmittmann/tint from 1.0.7 to 1.1.0 in /src/go ([#20320](https://github.com/netdata/netdata/issues/20320))
504 +- _generic-tcp.yaml pass ([#20321](https://github.com/netdata/netdata/issues/20321))
505 +- Dont init dyncfg for vnode ([#20324](https://github.com/netdata/netdata/issues/20324))
506 +- Cancel health initialization if shutdown has been requested ([#20318](https://github.com/netdata/netdata/issues/20318))
507 +- SOC 2 cloud doc update ([#20325](https://github.com/netdata/netdata/issues/20325))
508 +- Generic-udp.yaml pass ([#20326](https://github.com/netdata/netdata/issues/20326))
509 +- Generic-bgp4.yaml ([#20328](https://github.com/netdata/netdata/issues/20328))
510 +- Generic-ospf.yaml pass ([#20327](https://github.com/netdata/netdata/issues/20327))
511 +- Update alerting and notification documentation Agent ([#20329](https://github.com/netdata/netdata/issues/20329))
512 +- Update SCIM documentation ([#20330](https://github.com/netdata/netdata/issues/20330))
513 +- Regenerate integrations docs ([#20332](https://github.com/netdata/netdata/issues/20332))
514 +- Code cleanup and improvements ([#20323](https://github.com/netdata/netdata/issues/20323))
515 +- Alerts cloud ([#20334](https://github.com/netdata/netdata/issues/20334))
516 +- _generic-ip.yaml ([#20331](https://github.com/netdata/netdata/issues/20331))
517 +- Build(deps): bump github.com/vmware/govmomi from 0.50.0 to 0.51.0 in /src/go ([#20341](https://github.com/netdata/netdata/issues/20341))
518 +- SNMP: _generic-lldp.yaml ([#20342](https://github.com/netdata/netdata/issues/20342))
519 +- Switch back to epoll from poll ([#20337](https://github.com/netdata/netdata/issues/20337))
520 +- Fix(go.d/dyncfg): fix duplicate potential "name" in userconfig action ([#20346](https://github.com/netdata/netdata/issues/20346))
521 +- Improvement(go.d/sd): better prometheus exporters detection ([#20348](https://github.com/netdata/netdata/issues/20348))
522 +- SNMP: _generic-rtp.yaml ([#20343](https://github.com/netdata/netdata/issues/20343))
523 +- SNMP: _generic-sip.yaml ([#20344](https://github.com/netdata/netdata/issues/20344))
524 +- SNMP: _generic-ucd.yaml ([#20349](https://github.com/netdata/netdata/issues/20349))
525 +- Build(deps): update otel dependencies version ([#20352](https://github.com/netdata/netdata/issues/20352))
526 +- Add installing flex to install-required-packages.sh ([#20322](https://github.com/netdata/netdata/issues/20322))
527 +- Feat(go.d/dyncfg): add autodetect_retry to dyncfg jobs ([#20357](https://github.com/netdata/netdata/issues/20357))
528 +- Chore(go.d): fix some golangcilint warning ([#20360](https://github.com/netdata/netdata/issues/20360))
529 +- Windows updated ([#20358](https://github.com/netdata/netdata/issues/20358))
530 +- Updated configuration reference ([#20347](https://github.com/netdata/netdata/issues/20347))
531 +- _cisco-voice.yaml ([#20361](https://github.com/netdata/netdata/issues/20361))
532 +- SNMP: _generic-ups.yaml ([#20351](https://github.com/netdata/netdata/issues/20351))
533 +- SNMP: _cisco-wlc.yaml ([#20364](https://github.com/netdata/netdata/issues/20364))
534 +- Chore(otel.plugin): fix building ([#20368](https://github.com/netdata/netdata/issues/20368))
535 +- Split systemd-journal plugin and add Rust-based journal file reader ([#20345](https://github.com/netdata/netdata/issues/20345))
536 +- SNMP: _cisco-ipsec-flow-monitor.yaml ([#20353](https://github.com/netdata/netdata/issues/20353))
537 +- SNMP: _fortinet-fortigate-vpn-tunnel.yaml ([#20367](https://github.com/netdata/netdata/issues/20367))
538 +- SNMP: _fortinet-fortigate-cpu-memory.yaml ([#20366](https://github.com/netdata/netdata/issues/20366))
539 +- Build(deps): bump github.com/lmittmann/tint from 1.1.0 to 1.1.1 in /src/go ([#20370](https://github.com/netdata/netdata/issues/20370))
540 +- SNMP: fortinet-appliance.yaml ([#20369](https://github.com/netdata/netdata/issues/20369))
541 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.8.0 to 9.9.0 in /src/go ([#20372](https://github.com/netdata/netdata/issues/20372))
542 +- Build(deps): bump github.com/docker/docker from 28.1.1+incompatible to 28.2.1+incompatible in /src/go ([#20371](https://github.com/netdata/netdata/issues/20371))
543 +- Fix(go.d/oracledb): correct tablespace usage calculation for all types ([#20373](https://github.com/netdata/netdata/issues/20373))
544 +- Regenerate integrations docs ([#20375](https://github.com/netdata/netdata/issues/20375))
545 +- SNMP: fortinet-fortigate.yaml and remove un-needed profile ([#20374](https://github.com/netdata/netdata/issues/20374))
546 +- Chore(otel.plugin): add more receivers/exporter ([#20376](https://github.com/netdata/netdata/issues/20376))
547 +- Test(go.d/oracledb): fix test ([#20378](https://github.com/netdata/netdata/issues/20378))
548 +- SNMP: fortinet-fortiswitch.yaml ([#20377](https://github.com/netdata/netdata/issues/20377))
549 +- Improve datafile rotation and indexing ([#20354](https://github.com/netdata/netdata/issues/20354))
550 +- SNMP: _aruba-switch-cpu-memory.yaml ([#20381](https://github.com/netdata/netdata/issues/20381))
551 +- Update documentation ([#20380](https://github.com/netdata/netdata/issues/20380))
552 +- SNMP: aruba-switch.yaml ([#20385](https://github.com/netdata/netdata/issues/20385))
553 +- SNMP: aruba-cx-switch.yaml ([#20383](https://github.com/netdata/netdata/issues/20383))
554 +- SNMP: aruba-clearpass.yaml ([#20382](https://github.com/netdata/netdata/issues/20382))
555 +- Apps.plugin documentation and grouping matches improvements ([#20386](https://github.com/netdata/netdata/issues/20386))
556 +- Build(deps): bump github.com/docker/docker from 28.2.1+incompatible to 28.2.2+incompatible in /src/go ([#20387](https://github.com/netdata/netdata/issues/20387))
557 +- Model Context Protocol (MCP) Part 2 ([#20287](https://github.com/netdata/netdata/issues/20287))
558 +- Improvement(go.d/httpcheck): add resp validation debug logging ([#20392](https://github.com/netdata/netdata/issues/20392))
559 +- Improve DynCfg documentation ([#20384](https://github.com/netdata/netdata/issues/20384))
560 +- Feat(go.d): allow to debug a specific job ([#20394](https://github.com/netdata/netdata/issues/20394))
561 +- Maintenance: update restart, backup, uninstall, and restore docs ([#20398](https://github.com/netdata/netdata/issues/20398))
562 +- Improve retention calculation after datafile deletion ([#20350](https://github.com/netdata/netdata/issues/20350))
563 +- Rename nd-mcp on windows ([#20404](https://github.com/netdata/netdata/issues/20404))
564 +- SNMP: _juniper-firewall.yaml ([#20407](https://github.com/netdata/netdata/issues/20407))
565 +- SNMP: _juniper-userfirewall.yaml ([#20409](https://github.com/netdata/netdata/issues/20409))
566 +- SNMP: _juniper-scu.yaml ([#20408](https://github.com/netdata/netdata/issues/20408))
567 +- SNMP: _juniper-dcu.yaml ([#20406](https://github.com/netdata/netdata/issues/20406))
568 +- Improvement(go.d): add ddsnmp profile collector (scalar only) ([#20415](https://github.com/netdata/netdata/issues/20415))
569 +- Fix context updates ([#20416](https://github.com/netdata/netdata/issues/20416))
570 +- SNMP: apc_ups.yaml ([#20419](https://github.com/netdata/netdata/issues/20419))
571 +- Chore(go.d/ddsnmp): correctly handle all mapping types ([#20420](https://github.com/netdata/netdata/issues/20420))
572 +- Improve metrics centralization points documentation ([#20412](https://github.com/netdata/netdata/issues/20412))
573 +- Update_installer: Update remove instruction ([#20418](https://github.com/netdata/netdata/issues/20418))
574 +- Docs: remove sizing-netdata-parents.md ([#20421](https://github.com/netdata/netdata/issues/20421))
575 +- ML: Add documentation for Netdata Insights ([#20425](https://github.com/netdata/netdata/issues/20425))
576 +- Feat(go.d/snmp): enable profile scalar metrics collection ([#20426](https://github.com/netdata/netdata/issues/20426))
577 +- Docs(go.d): add example how to debug a specific job ([#20399](https://github.com/netdata/netdata/issues/20399))
578 +- Chore(go.d/ddsnmp): lazy ddsnmp profile loading ([#20427](https://github.com/netdata/netdata/issues/20427))
579 +- Update MSSQL Metadata ([#20429](https://github.com/netdata/netdata/issues/20429))
580 +- Update ddsnmp mikrotik-router.yaml ([#20428](https://github.com/netdata/netdata/issues/20428))
581 +- Regenerate integrations docs ([#20430](https://github.com/netdata/netdata/issues/20430))
582 +- Enforce correct CPU architecture for Go plugin builds. ([#20405](https://github.com/netdata/netdata/issues/20405))
583 +- Improve statement finalization and cleanup ([#20433](https://github.com/netdata/netdata/issues/20433))
584 +- Adjust stream connector timeout during agent shutdown ([#20434](https://github.com/netdata/netdata/issues/20434))
585 +- Fix heap-use-after-free in query progress updates ([#20431](https://github.com/netdata/netdata/issues/20431))
586 +- Mcp3 ([#20435](https://github.com/netdata/netdata/issues/20435))
587 +- Fix registry save integer overflow and add failure backoff ([#20437](https://github.com/netdata/netdata/issues/20437))
588 +- Improvement(go.d/ddsnmp): use dev type and vendor from meta for family ([#20439](https://github.com/netdata/netdata/issues/20439))
589 +- Chore(go.d/ddsnmp): add basic SNMP table walking functionality ([#20441](https://github.com/netdata/netdata/issues/20441))
590 +- Build(deps): bump golang.org/x/net from 0.40.0 to 0.41.0 in /src/go ([#20444](https://github.com/netdata/netdata/issues/20444))
591 +- Build(deps): bump github.com/gosnmp/gosnmp from 1.40.0 to 1.41.0 in /src/go ([#20449](https://github.com/netdata/netdata/issues/20449))
592 +- Build(deps): bump github.com/lmittmann/tint from 1.1.1 to 1.1.2 in /src/go ([#20446](https://github.com/netdata/netdata/issues/20446))
593 +- Build(deps): bump go.mongodb.org/mongo-driver from 1.17.3 to 1.17.4 in /src/go ([#20447](https://github.com/netdata/netdata/issues/20447))
594 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.9.0 to 9.10.0 in /src/go ([#20445](https://github.com/netdata/netdata/issues/20445))
595 +- Feat: improve SCIM documentation ([#20451](https://github.com/netdata/netdata/issues/20451))
596 +- Regenerate integrations docs ([#20453](https://github.com/netdata/netdata/issues/20453))
597 +- Improvement(go.d/ddsnmp): dedup metrics when merging profiles ([#20456](https://github.com/netdata/netdata/issues/20456))
598 +- Weblog collector: Exclude 429 from 4xx ([#20443](https://github.com/netdata/netdata/issues/20443))
599 +- Build(deps): bump github.com/sijms/go-ora/v2 from 2.8.24 to 2.9.0 in /src/go ([#20457](https://github.com/netdata/netdata/issues/20457))
600 +- Chore(go.d/smartctl): debug log exec output ([#20460](https://github.com/netdata/netdata/issues/20460))
601 +- Build: update otel-collector deps ([#20461](https://github.com/netdata/netdata/issues/20461))
602 +- Improvement(go.d/ddsnmp): add table metrics, tags from the same table ([#20463](https://github.com/netdata/netdata/issues/20463))
603 +- Improve database indexing and rotation handling in event loop ([#20459](https://github.com/netdata/netdata/issues/20459))
604 +- Improvement(go.d/ddsnmp): add table metrics and tags caching optimization ([#20465](https://github.com/netdata/netdata/issues/20465))
605 +- Add MSSQL Wait statistics (windows.plugin) ([#20307](https://github.com/netdata/netdata/issues/20307))
606 +- Regenerate integrations docs ([#20466](https://github.com/netdata/netdata/issues/20466))
607 +- Vendor protobuf in static builds. ([#17774](https://github.com/netdata/netdata/issues/17774))
608 +- Improve datafile rotation and indexing during shutdown ([#20464](https://github.com/netdata/netdata/issues/20464))
609 +- Handle orphan journal files by deleting unmatched entries ([#20462](https://github.com/netdata/netdata/issues/20462))
610 +- Remove static build timeouts from regular builds. ([#20470](https://github.com/netdata/netdata/issues/20470))
611 +- Improvement(go.d/snmp): create table charts ([#20471](https://github.com/netdata/netdata/issues/20471))
612 +- Add MCP documentation ([#20469](https://github.com/netdata/netdata/issues/20469))
613 +- Update mcp.md ([#20475](https://github.com/netdata/netdata/issues/20475))
614 +- Chore(go.d/ddsnmp): add dependency-based expiration to table cache ([#20474](https://github.com/netdata/netdata/issues/20474))
615 +- Improvement(go.d): add bearer_token_file to request cfg ([#20476](https://github.com/netdata/netdata/issues/20476))
616 +- Fix(go.d/redis): don't clear tls for rediss ([#20478](https://github.com/netdata/netdata/issues/20478))
617 +- Chore(go.d/ddsnmp): split table collection into walk and process phases ([#20479](https://github.com/netdata/netdata/issues/20479))
618 +- Chore(go.d/ddsnmp): collect cross-table metrics and tags ([#20481](https://github.com/netdata/netdata/issues/20481))
619 +- Correctly ignore patches that are already applied. ([#20480](https://github.com/netdata/netdata/issues/20480))
620 +- Modify Uninstall Action (windows.installer) ([#20467](https://github.com/netdata/netdata/issues/20467))
621 +- Fix typo. ([#20417](https://github.com/netdata/netdata/issues/20417))
622 +- Chore(go.d/ddsnmp): support extracting table index components as tags ([#20482](https://github.com/netdata/netdata/issues/20482))
623 +- Build(deps): bump github.com/go-sql-driver/mysql from 1.9.2 to 1.9.3 in /src/go ([#20483](https://github.com/netdata/netdata/issues/20483))
624 +- Anue ([#20488](https://github.com/netdata/netdata/issues/20488))
625 +- Fix(go.d): add missing props to config schemas ([#20489](https://github.com/netdata/netdata/issues/20489))
626 +- Fix fluentd schema permit_plugin ([#20490](https://github.com/netdata/netdata/issues/20490))
627 +- Chore(go.d/ddsnmp): fix table metrics collection ([#20492](https://github.com/netdata/netdata/issues/20492))
628 +- Fix: mark import groups as not supported SCIM feature ([#20495](https://github.com/netdata/netdata/issues/20495))
629 +- Regenerate integrations docs ([#20496](https://github.com/netdata/netdata/issues/20496))
630 +- Chore(go.d/ddsnmp): fix table metrics again ([#20497](https://github.com/netdata/netdata/issues/20497))
631 +- Chore(go.d/ddsnmp): better label values sanitization ([#20500](https://github.com/netdata/netdata/issues/20500))
632 +- Feat(go.d/ddsnmp): make SNMP profile collection configurable ([#20503](https://github.com/netdata/netdata/issues/20503))
633 +- Fix snmp prof mikrotik mem tagging ([#20504](https://github.com/netdata/netdata/issues/20504))
634 +- Additional checks on metasync thread shutdown ([#20455](https://github.com/netdata/netdata/issues/20455))
635 +- Improve(go.d/snmp profiles): simplify _generic-if.yaml and add interface type tags ([#20505](https://github.com/netdata/netdata/issues/20505))
636 +- Monitor Exchange Server (Window.plugin) ([#20454](https://github.com/netdata/netdata/issues/20454))
637 +- Feat(go.d/snmp profile): add sensors to mikrotik-router.yaml ([#20507](https://github.com/netdata/netdata/issues/20507))
638 +- Feat(go.d/snmp profile): add fallback support for duplicate metric tags ([#20508](https://github.com/netdata/netdata/issues/20508))
639 +- Chore(go.d/ddsnmp): fix table collection with caching ([#20509](https://github.com/netdata/netdata/issues/20509))
640 +- Regenerate integrations docs ([#20506](https://github.com/netdata/netdata/issues/20506))
641 +- Test(go.d/ddsnmp): add more tests for table metrics ([#20510](https://github.com/netdata/netdata/issues/20510))
642 +- Improve(go.d/snmp): add SNMP- prefix for vnode hostname ([#20512](https://github.com/netdata/netdata/issues/20512))
643 +- Docs: add Netdata MCP Server preview announcement ([#20513](https://github.com/netdata/netdata/issues/20513))
644 +- Update machine-learning-and-assisted-troubleshooting.md ([#20514](https://github.com/netdata/netdata/issues/20514))
645 +- Use ARAL for labels ([#20502](https://github.com/netdata/netdata/issues/20502))
646 +- Cleanup pending statements during shutdown ([#20511](https://github.com/netdata/netdata/issues/20511))
647 +- Update mcp.md ([#20515](https://github.com/netdata/netdata/issues/20515))
648 +- Improve(go.d/snmp-profiles): Add hrSystemUptime metric for system upt… ([#20516](https://github.com/netdata/netdata/issues/20516))
649 +- Fix(go.d/ddsnmp): remove singular-to-plural conversion in metric family ([#20517](https://github.com/netdata/netdata/issues/20517))
650 +- Drop POWER8+ builds. ([#20518](https://github.com/netdata/netdata/issues/20518))
651 +- Chore(go.d/snmp-profiles): remove unsupported constant_value_one metrics ([#20519](https://github.com/netdata/netdata/issues/20519))
652 +- MCP Part 4 ([#20452](https://github.com/netdata/netdata/issues/20452))
653 +- Improve(go.d/snmp-profiles): metrics deduplication ([#20520](https://github.com/netdata/netdata/issues/20520))
654 +- Upd generic check in snmp prof metrics deduplication ([#20521](https://github.com/netdata/netdata/issues/20521))
655 +- Update units in _generic-if.yaml ([#20523](https://github.com/netdata/netdata/issues/20523))
656 +- Improve(go.d/snmp): log device profiles matched by sysObjectID ([#20524](https://github.com/netdata/netdata/issues/20524))
657 +- Improve(go.d/snmp-profiles): allow users to add custom SNMP profiles ([#20526](https://github.com/netdata/netdata/issues/20526))
658 +- Improve(go.d/snmp): add Go template-based metric transformations for SNMP profiles ([#20528](https://github.com/netdata/netdata/issues/20528))
659 +- Improve(go.d/snmp): dd support for non-identifying tags in table metrics ([#20530](https://github.com/netdata/netdata/issues/20530))
660 +- Build(deps): bump k8s.io/client-go from 0.33.1 to 0.33.2 in /src/go ([#20532](https://github.com/netdata/netdata/issues/20532))
661 +- Lock before checking the statement pool ([#20536](https://github.com/netdata/netdata/issues/20536))
662 +- Refactor(go.d/ddsnmpcollector): restructure into components ([#20543](https://github.com/netdata/netdata/issues/20543))
663 +- SNMP: bluecat profile ([#20538](https://github.com/netdata/netdata/issues/20538))
664 +- Update SQLITE to version 3.50.1 ([#20539](https://github.com/netdata/netdata/issues/20539))
665 +- Build(deps): bump github.com/prometheus/common from 0.64.0 to 0.65.0 in /src/go ([#20545](https://github.com/netdata/netdata/issues/20545))
666 +- Improve(go.d/snmp-profiles): add DHCP tags transform to bluecat profile ([#20547](https://github.com/netdata/netdata/issues/20547))
667 +- Enable Rust-based journal file reader in static builds. ([#20477](https://github.com/netdata/netdata/issues/20477))
668 +- Properly parse disconnect reason ([#20540](https://github.com/netdata/netdata/issues/20540))
669 +- MSI parameter ([#20550](https://github.com/netdata/netdata/issues/20550))
670 +- Hardware (Windows.plugin) ([#20522](https://github.com/netdata/netdata/issues/20522))
671 +- Fix save alert config transition on shutdown ([#20553](https://github.com/netdata/netdata/issues/20553))
672 +- Regenerate integrations docs ([#20552](https://github.com/netdata/netdata/issues/20552))
673 +- Mcp disclaimer update ([#20563](https://github.com/netdata/netdata/issues/20563))
674 +- Additional checks for valid db during db_execute ([#20560](https://github.com/netdata/netdata/issues/20560))
675 +- Check that there is a valid thread when performing ACLK sync shutdown ([#20555](https://github.com/netdata/netdata/issues/20555))
676 +- Simplify MRG loading mechanism logic ([#20562](https://github.com/netdata/netdata/issues/20562))
677 +- Improve(go.d/smartctl): enable direct smartctl execution on non-Linux ([#20567](https://github.com/netdata/netdata/issues/20567))
678 +- Add CLI command to schedule update information ([#20558](https://github.com/netdata/netdata/issues/20558))
679 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.10.0 to 9.11.0 in /src/go ([#20568](https://github.com/netdata/netdata/issues/20568))
680 +- Improve(go.d/smartctl): add configurable concurrent device scanning ([#20569](https://github.com/netdata/netdata/issues/20569))
681 +- Regenerate integrations docs ([#20571](https://github.com/netdata/netdata/issues/20571))
682 +- Switch install types ([#20564](https://github.com/netdata/netdata/issues/20564))
683 +- Improve(go.d/smartctl): add Win default path for smartctl executable ([#20574](https://github.com/netdata/netdata/issues/20574))
684 +- Chore(go.d/snmp-profiles): skip abstract when loading ([#20576](https://github.com/netdata/netdata/issues/20576))
685 +- NUMA Windows ([#20573](https://github.com/netdata/netdata/issues/20573))
686 +- Regenerate integrations docs ([#20577](https://github.com/netdata/netdata/issues/20577))
687 +- Add Remove Node guide ([#20549](https://github.com/netdata/netdata/issues/20549))
688 +- Improve SQLite library shutdown handling and initialization state ([#20559](https://github.com/netdata/netdata/issues/20559))
689 +- Add Rocky Linux 10 to CI and package builds. ([#20578](https://github.com/netdata/netdata/issues/20578))
690 +- Fix(go.d/ddsnmp): walk cross-table columns when referenced table has no metrics ([#20583](https://github.com/netdata/netdata/issues/20583))
691 +- Fix(go.d/ddsnmp): include table name in config id ([#20584](https://github.com/netdata/netdata/issues/20584))
692 +- Add defines for cleanup statements ([#20570](https://github.com/netdata/netdata/issues/20570))
693 +- Remove devType/Vendor/ from ddsnmp metric families ([#20585](https://github.com/netdata/netdata/issues/20585))
694 +- Fix(go.d/ddsnmp): correct matching same profile multiple times ([#20586](https://github.com/netdata/netdata/issues/20586))
695 +- Ddsnmp add pow transform func and allow mapping duplicate values ([#20587](https://github.com/netdata/netdata/issues/20587))
696 +- Doc: update SCIM doc ([#20588](https://github.com/netdata/netdata/issues/20588))
697 +- Regenerate integrations docs ([#20589](https://github.com/netdata/netdata/issues/20589))
698 +- Build(deps): bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0 in /src/go/otel-collector/exporter/netdataexporter ([#20591](https://github.com/netdata/netdata/issues/20591))
699 +- Mcp5 ([#20529](https://github.com/netdata/netdata/issues/20529))
700 +- Build(deps): bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0 in /src/go/otel-collector/exporter/journaldexporter ([#20592](https://github.com/netdata/netdata/issues/20592))
701 +- SNMP: new version of families Cisco pass ([#20432](https://github.com/netdata/netdata/issues/20432))
702 +- SNMP: palo-alto.yaml ([#20391](https://github.com/netdata/netdata/issues/20391))
703 +- SNMP: aruba-wireless-controller.yaml ([#20389](https://github.com/netdata/netdata/issues/20389))
704 +- SNMP: _juniper-cos.yaml ([#20402](https://github.com/netdata/netdata/issues/20402))
705 +- Improve(go.d/snmp-profiles): extend transformEntitySensorValue ([#20594](https://github.com/netdata/netdata/issues/20594))
706 +- SNMP: _juniper-virtualchassis.yaml ([#20410](https://github.com/netdata/netdata/issues/20410))
707 +- SNMP: juniper-pulse-secure.yaml ([#20413](https://github.com/netdata/netdata/issues/20413))
708 +- SNMP: 3com profiles ([#20468](https://github.com/netdata/netdata/issues/20468))
709 +- SNMP: a10 yamls ([#20472](https://github.com/netdata/netdata/issues/20472))
710 +- SNMP: APC profiles ([#20491](https://github.com/netdata/netdata/issues/20491))
711 +- SNMP: Alcatel profiles ([#20487](https://github.com/netdata/netdata/issues/20487))
712 +- SNMP: Arista profiles ([#20498](https://github.com/netdata/netdata/issues/20498))
713 +- SNMP: second pass of aruba profiles ([#20499](https://github.com/netdata/netdata/issues/20499))
714 +- SNMP: avaya profiles ([#20525](https://github.com/netdata/netdata/issues/20525))
715 +- SNMP: audiocodes profile ([#20501](https://github.com/netdata/netdata/issues/20501))
716 +- SNMP: avocent profile ([#20527](https://github.com/netdata/netdata/issues/20527))
717 +- SNMP: brother profile ([#20548](https://github.com/netdata/netdata/issues/20548))
718 +- SNMP: cradlepoint profile ([#20561](https://github.com/netdata/netdata/issues/20561))
719 +- Build(deps): bump github.com/docker/docker from 28.2.2+incompatible to 28.3.0+incompatible in /src/go ([#20595](https://github.com/netdata/netdata/issues/20595))
720 +- SNMP: avtech Profiles ([#20535](https://github.com/netdata/netdata/issues/20535))
721 +- SNMP: barracuda Profiles ([#20537](https://github.com/netdata/netdata/issues/20537))
722 +- SNMP: brocade profiles ([#20546](https://github.com/netdata/netdata/issues/20546))
723 +- SNMP: checkpoint profiles ([#20556](https://github.com/netdata/netdata/issues/20556))
724 +- SNMP: chrysalis profiles ([#20557](https://github.com/netdata/netdata/issues/20557))
725 +- SNMP: Chatsworth profile ([#20554](https://github.com/netdata/netdata/issues/20554))
726 +- SNMP: cyberpower-pdu profile ([#20575](https://github.com/netdata/netdata/issues/20575))
727 +- Docs: fix 404 link in README.md ([#20597](https://github.com/netdata/netdata/issues/20597))
728 +- Migrate from stable to nightly and vice versa ([#20551](https://github.com/netdata/netdata/issues/20551))
729 +- Update generic snmp profiles ([#20599](https://github.com/netdata/netdata/issues/20599))
730 +- Small snmp-related changes ([#20603](https://github.com/netdata/netdata/issues/20603))
731 +- Improve mikrotik-router snmp profile ([#20605](https://github.com/netdata/netdata/issues/20605))
732 +- Fix compilation on windows ([#20602](https://github.com/netdata/netdata/issues/20602))
733 +- Ignore duplicate entries when rebuilding the alert version table ([#20579](https://github.com/netdata/netdata/issues/20579))
734 +- Chore(go.d/snmp): add disable_legacy_collection option ([#20606](https://github.com/netdata/netdata/issues/20606))
735 +- Metadata worker should respect shutdown request ([#20598](https://github.com/netdata/netdata/issues/20598))
736 +- Improve netapp snmp profile ([#20608](https://github.com/netdata/netdata/issues/20608))
737 +- Update fortinet snmp profiles ([#20609](https://github.com/netdata/netdata/issues/20609))
738 +- SNMP Mikrotik profile make units in transform ucum ([#20611](https://github.com/netdata/netdata/issues/20611))
739 +- Update sqlite version to 3.50.2 ([#20601](https://github.com/netdata/netdata/issues/20601))
740 +- Improve datafile indexing ([#20607](https://github.com/netdata/netdata/issues/20607))
741 +- Update tripplite snmp profiles ([#20613](https://github.com/netdata/netdata/issues/20613))
742 +- Bump otel-collector components to v0.129.0 ([#20615](https://github.com/netdata/netdata/issues/20615))
743 +- Transfer Learn PR 2473 ([#20600](https://github.com/netdata/netdata/issues/20600))
744 +- Chore(go.d/snmp-profiles): move fam desc and unit under chart_meta ([#20614](https://github.com/netdata/netdata/issues/20614))
745 +- Chore(go.d/snmp-profiles): small cleanup ([#20618](https://github.com/netdata/netdata/issues/20618))
746 +- Chore(go.d/snmp-profiles): charts meta fixes and fam updates p1 ([#20620](https://github.com/netdata/netdata/issues/20620))
747 +- Chore(go.d/snmp-profiles): charts meta fixes and fam updates p2 ([#20621](https://github.com/netdata/netdata/issues/20621))
748 +- Chore(go.d/snmp-profiles): charts meta fixes and fam updates p3 ([#20622](https://github.com/netdata/netdata/issues/20622))
749 +- Fix coverity issues ([#20612](https://github.com/netdata/netdata/issues/20612))
750 +- Improve journal v2 file creation on startup ([#20619](https://github.com/netdata/netdata/issues/20619))
751 +- Improve packet ID generation ([#20624](https://github.com/netdata/netdata/issues/20624))
752 +- At a glance ([#20627](https://github.com/netdata/netdata/issues/20627))
753 +- Fix syntax error on learn doc ([#20628](https://github.com/netdata/netdata/issues/20628))
754 +- Nidl Framework Documentation ([#20629](https://github.com/netdata/netdata/issues/20629))
755 +- [WIP] Move NIDL-Framework.md to docs/ directory ([#20630](https://github.com/netdata/netdata/issues/20630))
756 +- Move NIDL to docs ([#20632](https://github.com/netdata/netdata/issues/20632))
757 +- Build(deps): bump github.com/docker/docker from 28.3.0+incompatible to 28.3.1+incompatible in /src/go ([#20633](https://github.com/netdata/netdata/issues/20633))
758 +- Chore(go.d/snmp-profiles): charts meta fixes and fam updates p4 ([#20623](https://github.com/netdata/netdata/issues/20623))
759 +- Update NIDL-Framework.md ([#20634](https://github.com/netdata/netdata/issues/20634))
760 +- Refactor(go.d/iprange): migrate from net to net/netip ([#20636](https://github.com/netdata/netdata/issues/20636))
761 +- MCP in Netdata Operations Diagram ([#20637](https://github.com/netdata/netdata/issues/20637))
762 +- Chore(go.d/snmp-profiles): charts meta fixes and fam updates p5 ([#20635](https://github.com/netdata/netdata/issues/20635))
763 +- Improve ACLK connection handling ([#20625](https://github.com/netdata/netdata/issues/20625))
764 +- Rework datafiles ([#20581](https://github.com/netdata/netdata/issues/20581))
765 +- Chore(go.d/snmp-profiles): charts meta fixes and fam updates p6 ([#20640](https://github.com/netdata/netdata/issues/20640))
766 +- Add Screen to Windows installer ([#20593](https://github.com/netdata/netdata/issues/20593))
767 +- Additional checks for ACLK proxy setting ([#20639](https://github.com/netdata/netdata/issues/20639))
768 +- Update Cloud OIDC Authorization Server setup docs ([#20643](https://github.com/netdata/netdata/issues/20643))
769 +- Regenerate integrations docs ([#20644](https://github.com/netdata/netdata/issues/20644))
770 +- SNMP Profiles pass ep1 ([#20641](https://github.com/netdata/netdata/issues/20641))
771 +- Chore(go.d/snmp-profiles): fix quotes ([#20645](https://github.com/netdata/netdata/issues/20645))
772 +- SNMP profiles pass ep2 ([#20647](https://github.com/netdata/netdata/issues/20647))
773 +- Sophos ([#20648](https://github.com/netdata/netdata/issues/20648))
774 +- Build(deps): bump github.com/docker/docker from 28.3.1+incompatible to 28.3.2+incompatible in /src/go ([#20650](https://github.com/netdata/netdata/issues/20650))
775 +- Build(deps): bump golang.org/x/text from 0.26.0 to 0.27.0 in /src/go ([#20651](https://github.com/netdata/netdata/issues/20651))
776 +- Build(deps): bump github.com/miekg/dns from 1.1.66 to 1.1.67 in /src/go ([#20649](https://github.com/netdata/netdata/issues/20649))
777 +- Fix documentation regarding header_match ([#20652](https://github.com/netdata/netdata/issues/20652))
778 +- Regenerate integrations docs ([#20655](https://github.com/netdata/netdata/issues/20655))
779 +- ASP.NET (windows.plugin) ([#20485](https://github.com/netdata/netdata/issues/20485))
780 +- Chore(go.d/snmp-profiles): charts meta fixes and fam updates p7 ([#20646](https://github.com/netdata/netdata/issues/20646))
781 +- Stop submitting analytics ([#20654](https://github.com/netdata/netdata/issues/20654))
782 +- Fix coverity issues ([#20656](https://github.com/netdata/netdata/issues/20656))
783 +- Improve job completion handling with timeout mechanism ([#20657](https://github.com/netdata/netdata/issues/20657))
784 +- Chore(go.d/snmp-profiles): charts meta fixes and fam updates p8 ([#20660](https://github.com/netdata/netdata/issues/20660))
785 +- Cloud Docs: updated ([#20661](https://github.com/netdata/netdata/issues/20661))
786 +- Docs: fix "Unsupported markdown: list" in NC readme diagram ([#20665](https://github.com/netdata/netdata/issues/20665))
787 +- Fix datafile creation race condition ([#20662](https://github.com/netdata/netdata/issues/20662))
788 +- Regenerate integrations docs ([#20659](https://github.com/netdata/netdata/issues/20659))
789 +- Build(deps): bump golang.org/x/net from 0.41.0 to 0.42.0 in /src/go ([#20667](https://github.com/netdata/netdata/issues/20667))
790 +- Build(deps): bump github.com/bmatcuk/doublestar/v4 from 4.8.1 to 4.9.0 in /src/go ([#20666](https://github.com/netdata/netdata/issues/20666))
791 +- Windows Pluging (Freedom to update every) ([#20580](https://github.com/netdata/netdata/issues/20580))
792 +- Update netdata-enterprise-evaluation-corrected.md
793 +- Add comprehensive welcome document ([#20669](https://github.com/netdata/netdata/issues/20669))
794 +- Add ML anomaly detection accuracy analysis documentation ([#20663](https://github.com/netdata/netdata/issues/20663))
795 +- Escape chars on documentation ([#20671](https://github.com/netdata/netdata/issues/20671))
796 +- Regenerate integrations docs ([#20668](https://github.com/netdata/netdata/issues/20668))
797 +- Update welcome-to-netdata.md
798 +- Nd-mcp add claude cli cmd for adding netdata mcp ([#20440](https://github.com/netdata/netdata/issues/20440))
799 +- Feat(go.d/snmp): enable table metrics by default ([#20674](https://github.com/netdata/netdata/issues/20674))
800 +- Regenerate integrations docs ([#20675](https://github.com/netdata/netdata/issues/20675))
801 +- Build(deps): bump azure/trusted-signing-action from 0.5.1 to 0.5.9 ([#20670](https://github.com/netdata/netdata/issues/20670))
802 +- Improve agent shutdown on windows ([#20672](https://github.com/netdata/netdata/issues/20672))
803 +- Code cleanup ([#20673](https://github.com/netdata/netdata/issues/20673))
804 +- Agent docs alignement ([#20676](https://github.com/netdata/netdata/issues/20676))
805 +- Chore(charts.d): suppress broken pipe error from echo during cleanup ([#20680](https://github.com/netdata/netdata/issues/20680))
806 +- Fix deadlock in dictionary cleanup ([#20679](https://github.com/netdata/netdata/issues/20679))
807 +- Remove Ubuntu 24.10 from CI and package builds. ([#20681](https://github.com/netdata/netdata/issues/20681))
808 +- Fix systemd-journal-plugin RPM package. ([#20686](https://github.com/netdata/netdata/issues/20686))
809 +- Fix log message format for buffered reader error ([#20687](https://github.com/netdata/netdata/issues/20687))
810 +- Docs: update continue ext setup ([#20689](https://github.com/netdata/netdata/issues/20689))
811 +- Docs: fix file location in continue setup ([#20690](https://github.com/netdata/netdata/issues/20690))
812 +- Remove Fedora 40 from CI and package builds. ([#20685](https://github.com/netdata/netdata/issues/20685))
813 +- Docs: remove Profiles heading from collapsible section ([#20691](https://github.com/netdata/netdata/issues/20691))
814 +
815 +## [2.5.0] - 2025-05-05
816 +
817 +### Merged Pull Requests:
818 +
819 +- SNMP, Custom descriptions and units ([#20100](https://github.com/netdata/netdata/issues/20100))
820 +- Create Empty Directories (Windows installer) ([#20124](https://github.com/netdata/netdata/issues/20124))
821 +- Fix cleanup and exit and memory leaks ([#20120](https://github.com/netdata/netdata/issues/20120))
822 +- Sqlite upgrade to version 3.49.1 ([#19933](https://github.com/netdata/netdata/issues/19933))
823 +- Work to find leaks easily ([#20106](https://github.com/netdata/netdata/issues/20106))
824 +- Fix compilation when using FSANITIZE_ADDRESS ([#20129](https://github.com/netdata/netdata/issues/20129))
825 +- Handle corrupted journal data when populating the MRG during startup. ([#20128](https://github.com/netdata/netdata/issues/20128))
826 +- Free ACLK message ([#20125](https://github.com/netdata/netdata/issues/20125))
827 +- Make sure pattern array items are added and evaluated in order ([#20130](https://github.com/netdata/netdata/issues/20130))
828 +- Fix Locks (Windows Locks) ([#20131](https://github.com/netdata/netdata/issues/20131))
829 +- Update README.md ([#20133](https://github.com/netdata/netdata/issues/20133))
830 +- Installation-Static Build-Windows ([#20122](https://github.com/netdata/netdata/issues/20122))
831 +- Expression evaluator in re2c/lemon ([#20126](https://github.com/netdata/netdata/issues/20126))
832 +- Install fix admonition docs ([#20136](https://github.com/netdata/netdata/issues/20136))
833 +- Update MSI to use a single unified EULA instead of multiple license pages. ([#20134](https://github.com/netdata/netdata/issues/20134))
834 +- Create netdata-kubernetes.md
835 +- Update netdata-kubernetes.md
836 +- Improve error handling and logging for journal and data files ([#20112](https://github.com/netdata/netdata/issues/20112))
837 +- Fix MSSQL and improvements ([#20032](https://github.com/netdata/netdata/issues/20032))
838 +- Chore(otel/journaldexporter): improve remote tests ([#20143](https://github.com/netdata/netdata/issues/20143))
839 +- Docs: cleanup language and fix minor grammar issues ([#20144](https://github.com/netdata/netdata/issues/20144))
840 +- Build(deps): bump github.com/gosnmp/gosnmp from 1.39.0 to 1.40.0 in /src/go ([#20149](https://github.com/netdata/netdata/issues/20149))
841 +- Build(deps): bump github.com/invopop/jsonschema from 0.12.0 to 0.13.0 in /src/go ([#20152](https://github.com/netdata/netdata/issues/20152))
842 +- Build(deps): bump github.com/go-ldap/ldap/v3 from 3.4.10 to 3.4.11 in /src/go ([#20151](https://github.com/netdata/netdata/issues/20151))
843 +- Build(deps): bump github.com/docker/docker from 28.0.4+incompatible to 28.1.1+incompatible in /src/go ([#20153](https://github.com/netdata/netdata/issues/20153))
844 +- Chore(go.d/apcupsd): log UPS response in debug mode ([#20157](https://github.com/netdata/netdata/issues/20157))
845 +- Improvement(cgroups): filter systemd-nspawn payload by default ([#20155](https://github.com/netdata/netdata/issues/20155))
846 +- Improve metadata event loop shutdown ([#20132](https://github.com/netdata/netdata/issues/20132))
847 +- Fix compilation with DBENGINE disabled ([#20154](https://github.com/netdata/netdata/issues/20154))
848 +- Fix(dyncfg/health): correct db lookup absolute option name ([#20161](https://github.com/netdata/netdata/issues/20161))
849 +- Chore(go.d/snmp): remove unused ddsnmp ([#20164](https://github.com/netdata/netdata/issues/20164))
850 +- Docs: update macOS/freeBSD versions in Versions & Platforms ([#20165](https://github.com/netdata/netdata/issues/20165))
851 +- Chore(go.d): remove wmi->win collector rename handling ([#20166](https://github.com/netdata/netdata/issues/20166))
852 +- Dashboards and charts ([#20162](https://github.com/netdata/netdata/issues/20162))
853 +- Update platforms for CI and package builds. ([#20119](https://github.com/netdata/netdata/issues/20119))
854 +- Update kickstart.md ([#20167](https://github.com/netdata/netdata/issues/20167))
855 +- Improvement(cgroups): improve systemd-nspawn filter for default ([#20168](https://github.com/netdata/netdata/issues/20168))
856 +- Fix integrations config file sample ([#20169](https://github.com/netdata/netdata/issues/20169))
857 +- Regenerate integrations docs ([#20170](https://github.com/netdata/netdata/issues/20170))
858 +- Chore(otel/netdataexporter): add exporter module skeleton ([#20171](https://github.com/netdata/netdata/issues/20171))
859 +- Build(deps): bump github.com/vmware/govmomi from 0.49.0 to 0.50.0 in /src/go ([#20173](https://github.com/netdata/netdata/issues/20173))
860 +- Build(deps): update go toolchain to v1.24.2 ([#20176](https://github.com/netdata/netdata/issues/20176))
861 +- Fix memory leaks and service thread corruption ([#20159](https://github.com/netdata/netdata/issues/20159))
862 +- Fix labels memory accounting ([#20158](https://github.com/netdata/netdata/issues/20158))
863 +- Bump go mod 1.24.0 ([#20179](https://github.com/netdata/netdata/issues/20179))
864 +- Build(deps): bump k8s.io/client-go from 0.32.3 to 0.33.0 in /src/go ([#20175](https://github.com/netdata/netdata/issues/20175))
865 +- Retry nightly changelog generation. ([#20178](https://github.com/netdata/netdata/issues/20178))
866 +- Improve pgc fatal errors ([#20181](https://github.com/netdata/netdata/issues/20181))
867 +- Group anomaly rate per chart context instead of type. ([#20180](https://github.com/netdata/netdata/issues/20180))
868 +- Some fixes for macOS < 11 ([#20145](https://github.com/netdata/netdata/issues/20145))
869 +- Ensure atomicity when logging pending message ([#20185](https://github.com/netdata/netdata/issues/20185))
870 +- Fix recursive lock ([#20188](https://github.com/netdata/netdata/issues/20188))
871 +- Ensure atomicity when logging pending message 3/3 ([#20189](https://github.com/netdata/netdata/issues/20189))
872 +- Fix repeating alert crash ([#20186](https://github.com/netdata/netdata/issues/20186))
873 +- Added dyncfg docs ([#20187](https://github.com/netdata/netdata/issues/20187))
874 +- Ignore maintenance signals on exit ([#20190](https://github.com/netdata/netdata/issues/20190))
875 +- Limit the max number of threads based on memory too ([#20192](https://github.com/netdata/netdata/issues/20192))
876 +- Exporting exit fix ([#20191](https://github.com/netdata/netdata/issues/20191))
877 +- Cleanup ML cached pointers on child disconnection ([#20195](https://github.com/netdata/netdata/issues/20195))
878 +- Rrdset/rrddim find function do not return obsolete metadata ([#20196](https://github.com/netdata/netdata/issues/20196))
879 +- Improve systemd journal logs documentation ([#20184](https://github.com/netdata/netdata/issues/20184))
880 +- Spinlocks now timeout at 10 minutes, to reveal deadlocks ([#20197](https://github.com/netdata/netdata/issues/20197))
881 +- Add fast path to waitq ([#20198](https://github.com/netdata/netdata/issues/20198))
882 +- Rrd metadata needs to be discoverable while replication is running ([#20200](https://github.com/netdata/netdata/issues/20200))
883 +- Reorganize code (IIS) ([#20182](https://github.com/netdata/netdata/issues/20182))
884 +- Add a default busy timeout ([#20201](https://github.com/netdata/netdata/issues/20201))
885 +- Rrd metadata search fix ([#20203](https://github.com/netdata/netdata/issues/20203))
886 +- Remove the status file spinlock to avoid deadlocks ([#20205](https://github.com/netdata/netdata/issues/20205))
887 +- Call spinlock_init() when initializing rrdlabels spinlock ([#20206](https://github.com/netdata/netdata/issues/20206))
888 +- Added more annotations in spinlock deadlock detection ([#20207](https://github.com/netdata/netdata/issues/20207))
889 +- Avoid indexing journal files when db rotation is running ([#20204](https://github.com/netdata/netdata/issues/20204))
890 +- Use one spinlock to access v2 and mmap related data ([#20202](https://github.com/netdata/netdata/issues/20202))
891 +- Fix hardcoding of eval variables ([#20210](https://github.com/netdata/netdata/issues/20210))
892 +- Small fixes ([#20209](https://github.com/netdata/netdata/issues/20209))
893 +- Security and Privacy Design ([#20208](https://github.com/netdata/netdata/issues/20208))
894 +- Add Fedora 42 to CI and package builds. ([#20177](https://github.com/netdata/netdata/issues/20177))
895 +- Improve health log cleanup ([#20213](https://github.com/netdata/netdata/issues/20213))
896 +- Use nd threads in exporting ([#20212](https://github.com/netdata/netdata/issues/20212))
897 +- Small fixes2 ([#20219](https://github.com/netdata/netdata/issues/20219))
898 +- SNMP profiles units and description generation ([#20163](https://github.com/netdata/netdata/issues/20163))
899 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.7.3 to 9.8.0 in /src/go ([#20220](https://github.com/netdata/netdata/issues/20220))
900 +- Chore(otel/netdataexporter): poc version ([#20199](https://github.com/netdata/netdata/issues/20199))
901 +- Documentation and helpers for centralizing namespaced logs ([#20217](https://github.com/netdata/netdata/issues/20217))
902 +- Enable analytics data collection ([#20221](https://github.com/netdata/netdata/issues/20221))
903 +- Fix crashes 7 ([#20224](https://github.com/netdata/netdata/issues/20224))
904 +- Fix crashes 8 ([#20225](https://github.com/netdata/netdata/issues/20225))
905 +- Fix potential null pointer dereference when accessing journalfile ([#20226](https://github.com/netdata/netdata/issues/20226))
906 +- Clean up prepared statements on thread exit ([#20211](https://github.com/netdata/netdata/issues/20211))
907 +- Improve MSSQL (Windows.plugin Part II) ([#20141](https://github.com/netdata/netdata/issues/20141))
908 +- Status file 28 ([#20229](https://github.com/netdata/netdata/issues/20229))
909 +- Regenerate integrations docs ([#20227](https://github.com/netdata/netdata/issues/20227))
910 +- Docs: rename DynCfg developer doc to avoid title conflict ([#20232](https://github.com/netdata/netdata/issues/20232))
911 +- Fix(go.d/couchdb): correct db size charts unit ([#20233](https://github.com/netdata/netdata/issues/20233))
912 +- Revert "fix(go.d/couchdb): correct db size charts unit" ([#20234](https://github.com/netdata/netdata/issues/20234))
913 +
914 +## [2.4.0] - 2025-04-14
915 +
916 +### Merged Pull Requests:
917 +
918 +- New exit cause: shutdown timeout ([#19903](https://github.com/netdata/netdata/issues/19903))
919 +- Fix reliability calculation ([#19909](https://github.com/netdata/netdata/issues/19909))
920 +- Store alert config asynchronously ([#19885](https://github.com/netdata/netdata/issues/19885))
921 +- Post the first status when there is no last status ([#19912](https://github.com/netdata/netdata/issues/19912))
922 +- Do not enqueue command if aclk is not initialized ([#19914](https://github.com/netdata/netdata/issues/19914))
923 +- Detect null datafile while finding datafiles in range ([#19913](https://github.com/netdata/netdata/issues/19913))
924 +- Align cmsgbuf to size_t to avoid unaligned memory access. ([#19917](https://github.com/netdata/netdata/issues/19917))
925 +- Make sure ACLK sync thread completes initialization ([#19916](https://github.com/netdata/netdata/issues/19916))
926 +- Exclude external code from CodeQL scanning. ([#19923](https://github.com/netdata/netdata/issues/19923))
927 +- Remove ilove endpoint ([#19919](https://github.com/netdata/netdata/issues/19919))
928 +- Do not expose web server filenames ([#19925](https://github.com/netdata/netdata/issues/19925))
929 +- Fix TOCTOU race in daemon status file handling. ([#19924](https://github.com/netdata/netdata/issues/19924))
930 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.7.1 to 9.7.3 in /src/go ([#19926](https://github.com/netdata/netdata/issues/19926))
931 +- Fix compile without dbengine ([#19930](https://github.com/netdata/netdata/issues/19930))
932 +- Fix max_page_length calculation for GORILLA_32BIT page type ([#19932](https://github.com/netdata/netdata/issues/19932))
933 +- Initial implementation of libbacktrace ([#19910](https://github.com/netdata/netdata/issues/19910))
934 +- Metadata event loop code cleanup ([#19929](https://github.com/netdata/netdata/issues/19929))
935 +- Fix path to copy drop-in crontab from ([#19935](https://github.com/netdata/netdata/issues/19935))
936 +- Status file v21 ([#19928](https://github.com/netdata/netdata/issues/19928))
937 +- Status file 21b ([#19937](https://github.com/netdata/netdata/issues/19937))
938 +- Fix logic for libbacktrace enablement in CMakeLists,txt ([#19936](https://github.com/netdata/netdata/issues/19936))
939 +- Build(deps): bump github.com/go-sql-driver/mysql from 1.9.0 to 1.9.1 in /src/go ([#19943](https://github.com/netdata/netdata/issues/19943))
940 +- Build(deps): bump github.com/miekg/dns from 1.1.63 to 1.1.64 in /src/go ([#19945](https://github.com/netdata/netdata/issues/19945))
941 +- Build(deps): bump github.com/docker/docker from 28.0.1+incompatible to 28.0.2+incompatible in /src/go ([#19942](https://github.com/netdata/netdata/issues/19942))
942 +- Build(deps): bump github.com/jackc/pgx/v5 from 5.7.2 to 5.7.3 in /src/go ([#19944](https://github.com/netdata/netdata/issues/19944))
943 +- Don't build libunwind in static builds when it's not needed. ([#19939](https://github.com/netdata/netdata/issues/19939))
944 +- Detect low ram conditions more aggresively ([#19938](https://github.com/netdata/netdata/issues/19938))
945 +- Build(deps): bump github.com/DataDog/datadog-agent/pkg/networkdevice/profile from 0.65.0-devel.0.20250317105920-ce55f088ab29 to 0.66.0-devel in /src/go ([#19941](https://github.com/netdata/netdata/issues/19941))
946 +- Set default CMake build type to include debug info. ([#19946](https://github.com/netdata/netdata/issues/19946))
947 +- Disable generation of debuginfo packages for DEB distros. ([#19948](https://github.com/netdata/netdata/issues/19948))
948 +- Daemon status 22 ([#19953](https://github.com/netdata/netdata/issues/19953))
949 +- Enable interface to release sqlite memory ([#19952](https://github.com/netdata/netdata/issues/19952))
950 +- Fix claiming on startup ([#19954](https://github.com/netdata/netdata/issues/19954))
951 +- Fix rrdcalc_unlink_from_rrdset() ([#19956](https://github.com/netdata/netdata/issues/19956))
952 +- Improve event loop thread creation ([#19951](https://github.com/netdata/netdata/issues/19951))
953 +- Status file 22b ([#19957](https://github.com/netdata/netdata/issues/19957))
954 +- Use UPDATE_DISCONNECTED mode for libbacktrace. ([#19958](https://github.com/netdata/netdata/issues/19958))
955 +- Large-scale cleanup of static build infrastructure. ([#19852](https://github.com/netdata/netdata/issues/19852))
956 +- Build(deps): bump actions/upload-artifact from 4.6.1 to 4.6.2 ([#19949](https://github.com/netdata/netdata/issues/19949))
957 +- Fix undefined ([#19960](https://github.com/netdata/netdata/issues/19960))
958 +- Daemon status 22c ([#19959](https://github.com/netdata/netdata/issues/19959))
959 +- Don’t skip building Go code on static builds. ([#19961](https://github.com/netdata/netdata/issues/19961))
960 +- Build(deps): bump github.com/docker/docker from 28.0.2+incompatible to 28.0.4+incompatible in /src/go ([#19967](https://github.com/netdata/netdata/issues/19967))
961 +- Build(deps): bump github.com/jackc/pgx/v5 from 5.7.3 to 5.7.4 in /src/go ([#19968](https://github.com/netdata/netdata/issues/19968))
962 +- Update SCIM docs with Groups support ([#19969](https://github.com/netdata/netdata/issues/19969))
963 +- Regenerate integrations docs ([#19970](https://github.com/netdata/netdata/issues/19970))
964 +- Fix crash in variable_lookup_add_result_with_score() ([#19972](https://github.com/netdata/netdata/issues/19972))
965 +- Doc Linux improved order in kickstart ([#19975](https://github.com/netdata/netdata/issues/19975))
966 +- Set max datafile size to 1GiB ([#19977](https://github.com/netdata/netdata/issues/19977))
967 +- Improve ACLK sync shutdown process ([#19966](https://github.com/netdata/netdata/issues/19966))
968 +- Fix random crash during shutdown ([#19978](https://github.com/netdata/netdata/issues/19978))
969 +- Release memory when calculating metric correlations ([#19979](https://github.com/netdata/netdata/issues/19979))
970 +- Installation section Improvements ([#19981](https://github.com/netdata/netdata/issues/19981))
971 +- Set sqlite max soft and hard heap limit ([#19963](https://github.com/netdata/netdata/issues/19963))
972 +- Revert "fix undefined" ([#19982](https://github.com/netdata/netdata/issues/19982))
973 +- Improvement(health/dyncfg): add widget to load available contexts ([#19904](https://github.com/netdata/netdata/issues/19904))
974 +- Keep errno in out of memory situations ([#19984](https://github.com/netdata/netdata/issues/19984))
975 +- Do not allocate or access zero sized arrays ([#19983](https://github.com/netdata/netdata/issues/19983))
976 +- Improve agent shutdown ([#19980](https://github.com/netdata/netdata/issues/19980))
977 +- Perflib: do not dereference null pointer ([#19985](https://github.com/netdata/netdata/issues/19985))
978 +- Fix MSI installer ([#19962](https://github.com/netdata/netdata/issues/19962))
979 +- IIS Application Pool (Windows.plugin) ([#19950](https://github.com/netdata/netdata/issues/19950))
980 +- Regenerate integrations docs ([#19986](https://github.com/netdata/netdata/issues/19986))
981 +- Installation + docker, improvements ([#19987](https://github.com/netdata/netdata/issues/19987))
982 +- Ebpf.plugin: rework memory ([#19844](https://github.com/netdata/netdata/issues/19844))
983 +- Regenerate integrations docs ([#19988](https://github.com/netdata/netdata/issues/19988))
984 +- Fast restart on busy parents ([#19964](https://github.com/netdata/netdata/issues/19964))
985 +- Update synology.md ([#19989](https://github.com/netdata/netdata/issues/19989))
986 +- Added worker last job id to status file ([#19992](https://github.com/netdata/netdata/issues/19992))
987 +- Docs: improve Synology NAS installation documentation clarity ([#19993](https://github.com/netdata/netdata/issues/19993))
988 +- Add kanelatechnical to CODEOWNERS ([#19994](https://github.com/netdata/netdata/issues/19994))
989 +- Improve shutdown and datafile rotation ([#19991](https://github.com/netdata/netdata/issues/19991))
990 +- Status file 24 ([#19996](https://github.com/netdata/netdata/issues/19996))
991 +- Detect more CI ([#19999](https://github.com/netdata/netdata/issues/19999))
992 +- Update synology.md ([#20001](https://github.com/netdata/netdata/issues/20001))
993 +- Use v4 UUIDs ([#20002](https://github.com/netdata/netdata/issues/20002))
994 +- Deployment Guides Improved ([#20004](https://github.com/netdata/netdata/issues/20004))
995 +- Fix(go.d/megacli): handle BBU hardware component is not present ([#20008](https://github.com/netdata/netdata/issues/20008))
996 +- Fix crashes No 3 ([#20007](https://github.com/netdata/netdata/issues/20007))
997 +- Daemon status 24c ([#20003](https://github.com/netdata/netdata/issues/20003))
998 +- Update synology.md ([#20010](https://github.com/netdata/netdata/issues/20010))
999 +- Added agent-events backend ([#20012](https://github.com/netdata/netdata/issues/20012))
1000 +- Agent-events: add deduplicating web server ([#20014](https://github.com/netdata/netdata/issues/20014))
1001 +- Minor changes when handling systemd integration. ([#20006](https://github.com/netdata/netdata/issues/20006))
1002 +- Daemon status 24d ([#20011](https://github.com/netdata/netdata/issues/20011))
1003 +- Validate journal file headers to prevent invalid memory access ([#20013](https://github.com/netdata/netdata/issues/20013))
1004 +- Blacklist leaked machine guids ([#20016](https://github.com/netdata/netdata/issues/20016))
1005 +- Properly clean up install paths after runtime checks in static builds. ([#20017](https://github.com/netdata/netdata/issues/20017))
1006 +- Additional checks then creating a v2 journal file ([#20018](https://github.com/netdata/netdata/issues/20018))
1007 +- Windows installer + ML (all) improved ([#20021](https://github.com/netdata/netdata/issues/20021))
1008 +- On prem files moved to their own repo ([#20023](https://github.com/netdata/netdata/issues/20023))
1009 +- Series of NFCs to make the code more maintainable. ([#20022](https://github.com/netdata/netdata/issues/20022))
1010 +- Daemon status 25 ([#20026](https://github.com/netdata/netdata/issues/20026))
1011 +- Kickstart.sh: add missing option --offline-install-source to USAGE ([#20025](https://github.com/netdata/netdata/issues/20025))
1012 +- Logs enhancements ([#20027](https://github.com/netdata/netdata/issues/20027))
1013 +- More completely disable our own telemetry in CI. ([#20009](https://github.com/netdata/netdata/issues/20009))
1014 +- Fix crash ([#20028](https://github.com/netdata/netdata/issues/20028))
1015 +- Trim-all ([#20029](https://github.com/netdata/netdata/issues/20029))
1016 +- Improvement(go.d): add `_hostname` label for virtual nodes ([#20030](https://github.com/netdata/netdata/issues/20030))
1017 +- Improve estimated disk space usage for data file rotation ([#20019](https://github.com/netdata/netdata/issues/20019))
1018 +- Improve kickstart so it can add the netdata user/group on Synology DSM ([#20024](https://github.com/netdata/netdata/issues/20024))
1019 +- Check for host timer validity in ACLK synchronization ([#20031](https://github.com/netdata/netdata/issues/20031))
1020 +- Chore(otel/journaldexporter): convert logs to journald format ([#20033](https://github.com/netdata/netdata/issues/20033))
1021 +- Chore(otel/journaldexporter): add trusted journald fields ([#20038](https://github.com/netdata/netdata/issues/20038))
1022 +- Daemon status 26 - dmi strings ([#20037](https://github.com/netdata/netdata/issues/20037))
1023 +- Update netdata-updater-daily.in ([#20039](https://github.com/netdata/netdata/issues/20039))
1024 +- Fix ACLK synchronization fatal on shutdown ([#20034](https://github.com/netdata/netdata/issues/20034))
1025 +- Handle journal_v2 file creation failure due to OOM ([#19965](https://github.com/netdata/netdata/issues/19965))
1026 +- Trace crashes No 4 ([#20043](https://github.com/netdata/netdata/issues/20043))
1027 +- Daemon status 26b ([#20041](https://github.com/netdata/netdata/issues/20041))
1028 +- Daemon status 26c ([#20044](https://github.com/netdata/netdata/issues/20044))
1029 +- Fix(go.d/megacli): handle Adapters with no drives ([#20046](https://github.com/netdata/netdata/issues/20046))
1030 +- Daemon status 26d ([#20047](https://github.com/netdata/netdata/issues/20047))
1031 +- Added checksum to detect corruption in netdev rename tasks ([#20048](https://github.com/netdata/netdata/issues/20048))
1032 +- Fix releasing statements after databases are closed ([#20045](https://github.com/netdata/netdata/issues/20045))
1033 +- Fix cgroup netdev renames ([#20050](https://github.com/netdata/netdata/issues/20050))
1034 +- Daemon status 26e ([#20051](https://github.com/netdata/netdata/issues/20051))
1035 +- Remove unnecessary parameters for oidc configuration ([#20053](https://github.com/netdata/netdata/issues/20053))
1036 +- Regenerate integrations docs ([#20054](https://github.com/netdata/netdata/issues/20054))
1037 +- Nested code block in doc ([#20056](https://github.com/netdata/netdata/issues/20056))
1038 +- Daemon status 27 ([#20058](https://github.com/netdata/netdata/issues/20058))
1039 +- Observability cent points improved ([#20052](https://github.com/netdata/netdata/issues/20052))
1040 +- Fix memory leaks ([#20062](https://github.com/netdata/netdata/issues/20062))
1041 +- Improve agent-events web server ([#20063](https://github.com/netdata/netdata/issues/20063))
1042 +- Agent-events: fix metric names ([#20064](https://github.com/netdata/netdata/issues/20064))
1043 +- Agent-events: fix metrics ([#20065](https://github.com/netdata/netdata/issues/20065))
1044 +- Ci: remove codeql-action build-mode none ([#20066](https://github.com/netdata/netdata/issues/20066))
1045 +- Agent-events: Consolidate metrics into a single labeled counter ([#20067](https://github.com/netdata/netdata/issues/20067))
1046 +- Agent-events: fix more metrics ([#20068](https://github.com/netdata/netdata/issues/20068))
1047 +- Fix(go.d/prometheus): don't use "ratio" as unit ([#20069](https://github.com/netdata/netdata/issues/20069))
1048 +- Update nodes-ephemerality.md ([#20073](https://github.com/netdata/netdata/issues/20073))
1049 +- Build(deps): bump github.com/fsnotify/fsnotify from 1.8.0 to 1.9.0 in /src/go ([#20070](https://github.com/netdata/netdata/issues/20070))
1050 +- Build(deps): bump golang.org/x/text from 0.23.0 to 0.24.0 in /src/go ([#20071](https://github.com/netdata/netdata/issues/20071))
1051 +- Build(deps): bump github.com/miekg/dns from 1.1.64 to 1.1.65 in /src/go ([#20072](https://github.com/netdata/netdata/issues/20072))
1052 +- Build(deps): bump golang.org/x/net from 0.37.0 to 0.38.0 in /src/go ([#20000](https://github.com/netdata/netdata/issues/20000))
1053 +- Agent events No 7 ([#20074](https://github.com/netdata/netdata/issues/20074))
1054 +- Update README.md
1055 +- Improve ephemerality docs, adding `remove-stale-node` ([#20057](https://github.com/netdata/netdata/issues/20057))
1056 +- Add Docker tags for the last few nightly builds. ([#19734](https://github.com/netdata/netdata/issues/19734))
1057 +- Improve jv2 load ([#19995](https://github.com/netdata/netdata/issues/19995))
1058 +- Cleanup during shutdown ([#20078](https://github.com/netdata/netdata/issues/20078))
1059 +- Fix crash during shutdown when there are pending messages to cloud ([#20080](https://github.com/netdata/netdata/issues/20080))
1060 +- Do not try to index jv2 files during shutdown ([#20079](https://github.com/netdata/netdata/issues/20079))
1061 +- Daemon status 27b ([#20076](https://github.com/netdata/netdata/issues/20076))
1062 +- ACLK synchronization improvements ([#20077](https://github.com/netdata/netdata/issues/20077))
1063 +- Address Chart name (Windows Hyper V) ([#20060](https://github.com/netdata/netdata/issues/20060))
1064 +- Fix memory allocation for timer callback data when cancelling a timer ([#20084](https://github.com/netdata/netdata/issues/20084))
1065 +- Skip non-native builds in CI on PRs in most cases. ([#20055](https://github.com/netdata/netdata/issues/20055))
1066 +- Fix inverted logic for skipping non-native CI jobs on PRs. ([#20087](https://github.com/netdata/netdata/issues/20087))
1067 +- Alerts and Notifications ([#20085](https://github.com/netdata/netdata/issues/20085))
1068 +- Update src/aclk/aclk-schemas to latest version. ([#19940](https://github.com/netdata/netdata/issues/19940))
1069 +- Fix typo in .github/scripts/gen-docker-tags.py ([#20089](https://github.com/netdata/netdata/issues/20089))
1070 +- Windows Services Monitoring ([#19990](https://github.com/netdata/netdata/issues/19990))
1071 +- Regenerate integrations docs ([#20091](https://github.com/netdata/netdata/issues/20091))
1072 +- Daemon status 27c ([#20088](https://github.com/netdata/netdata/issues/20088))
1073 +- Protected access against SIGBUS/SIGSEGV for journal v2 files ([#20092](https://github.com/netdata/netdata/issues/20092))
1074 +- Document switching from a native package to a static build ([#20075](https://github.com/netdata/netdata/issues/20075))
1075 +- SNMP Collector, use custom YAML files for auto single metrics ([#20020](https://github.com/netdata/netdata/issues/20020))
1076 +- Daemon status 27d ([#20096](https://github.com/netdata/netdata/issues/20096))
1077 +- Fix ACLK Backoff Timeout Logic ([#20095](https://github.com/netdata/netdata/issues/20095))
1078 +- Release memory after journalfile creation ([#20094](https://github.com/netdata/netdata/issues/20094))
1079 +- Protection access improvements 1 ([#20093](https://github.com/netdata/netdata/issues/20093))
1080 +- Add the number of cpu cores to the status file ([#20101](https://github.com/netdata/netdata/issues/20101))
1081 +- Fix Windows registry name crashes ([#20097](https://github.com/netdata/netdata/issues/20097))
1082 +- Improve journal file access error logging protect retention recalculation ([#20098](https://github.com/netdata/netdata/issues/20098))
1083 +- Properly integrate dlib into our build system. ([#20086](https://github.com/netdata/netdata/issues/20086))
1084 +- Daemon status 27f ([#20104](https://github.com/netdata/netdata/issues/20104))
1085 +- Further improve ACLK synchronization shutdown ([#20105](https://github.com/netdata/netdata/issues/20105))
1086 +- Build(deps): bump github.com/prometheus-community/pro-bing from 0.6.1 to 0.7.0 in /src/go ([#20107](https://github.com/netdata/netdata/issues/20107))
1087 +- Build(deps): bump github.com/go-sql-driver/mysql from 1.9.1 to 1.9.2 in /src/go ([#20109](https://github.com/netdata/netdata/issues/20109))
1088 +- Build(deps): bump golang.org/x/net from 0.38.0 to 0.39.0 in /src/go ([#20108](https://github.com/netdata/netdata/issues/20108))
1089 +- Docs: clarify static build transition process for EOL platforms ([#20110](https://github.com/netdata/netdata/issues/20110))
1090 +- Fix completion marking in ACLK cancel node update timer logic ([#20111](https://github.com/netdata/netdata/issues/20111))
1091 +- Netdatacli remove/mark stale, swap order in help output ([#20113](https://github.com/netdata/netdata/issues/20113))
1092 +- Fix memory leaks ([#20116](https://github.com/netdata/netdata/issues/20116))
1093 +- Feat(system-info): improve Windows OS detection and categorization ([#20117](https://github.com/netdata/netdata/issues/20117))
1094 +- Dump Netdata buildinfo during CI. ([#19918](https://github.com/netdata/netdata/issues/19918))
1095 +- Chore(otel/journaldexporter): add socket/remote clients ([#20121](https://github.com/netdata/netdata/issues/20121))
1096 +
1097 +## [2.3.0] - 2025-03-19
1098 +
1099 +### Merged Pull Requests:
1100 +
1101 +- Pulse stream-parents ([#19445](https://github.com/netdata/netdata/issues/19445))
1102 +- Use aral in ACLK ([#19459](https://github.com/netdata/netdata/issues/19459))
1103 +- Child should be online before initializing health ([#19463](https://github.com/netdata/netdata/issues/19463))
1104 +- Streaming nodes accounting ([#19466](https://github.com/netdata/netdata/issues/19466))
1105 +- Fix crash when cleaning up virtual nodes ([#19467](https://github.com/netdata/netdata/issues/19467))
1106 +- Don’t fail fast on static builds and Docker builds. ([#19465](https://github.com/netdata/netdata/issues/19465))
1107 +- Unregister node from the agent to run in a worker thread ([#19471](https://github.com/netdata/netdata/issues/19471))
1108 +- Optimized rrdhost_status ([#19472](https://github.com/netdata/netdata/issues/19472))
1109 +- Build(deps): bump github.com/prometheus-community/pro-bing from 0.5.0 to 0.6.0 in /src/go ([#19477](https://github.com/netdata/netdata/issues/19477))
1110 +- Build(deps): bump github.com/miekg/dns from 1.1.62 to 1.1.63 in /src/go ([#19475](https://github.com/netdata/netdata/issues/19475))
1111 +- Build(deps): bump github.com/docker/docker from 27.5.0+incompatible to 27.5.1+incompatible in /src/go ([#19476](https://github.com/netdata/netdata/issues/19476))
1112 +- Use QEMU from the runner environment instead of an external copy. ([#19468](https://github.com/netdata/netdata/issues/19468))
1113 +- Chore(go.d/ping): set privileged by default for dyncfg jobs ([#19480](https://github.com/netdata/netdata/issues/19480))
1114 +- Regenerate integrations docs ([#19481](https://github.com/netdata/netdata/issues/19481))
1115 +- Add system-info columns to streaming function ([#19482](https://github.com/netdata/netdata/issues/19482))
1116 +- Coverity fixes ([#19484](https://github.com/netdata/netdata/issues/19484))
1117 +- Add agent name and version in streaming function ([#19485](https://github.com/netdata/netdata/issues/19485))
1118 +- Improve alert transition processing ([#19487](https://github.com/netdata/netdata/issues/19487))
1119 +- LTO Benchmark ([#19488](https://github.com/netdata/netdata/issues/19488))
1120 +- Proc.plugin: remove traces of /proc/spl/kstat/zfs/pool/state ([#19491](https://github.com/netdata/netdata/issues/19491))
1121 +- Build(deps): bump github.com/bmatcuk/doublestar/v4 from 4.8.0 to 4.8.1 in /src/go ([#19493](https://github.com/netdata/netdata/issues/19493))
1122 +- Further improve alert processing ([#19489](https://github.com/netdata/netdata/issues/19489))
1123 +- Proc.plugin: add `ifb4*` to excluded interface name patterns ([#19494](https://github.com/netdata/netdata/issues/19494))
1124 +- Fix absolute injection ([#19496](https://github.com/netdata/netdata/issues/19496))
1125 +- Fix absolute injection again ([#19497](https://github.com/netdata/netdata/issues/19497))
1126 +- Create impact-on-resources.md ([#19499](https://github.com/netdata/netdata/issues/19499))
1127 +- Add worker for alert queue processing ([#19498](https://github.com/netdata/netdata/issues/19498))
1128 +- Fix up libsensors vendoring. ([#19369](https://github.com/netdata/netdata/issues/19369))
1129 +- Improve metadata cleanup ([#19479](https://github.com/netdata/netdata/issues/19479))
1130 +- Docs(go.d/postgres): add config example with unix socket + custom port ([#19501](https://github.com/netdata/netdata/issues/19501))
1131 +- Regenerate integrations docs ([#19502](https://github.com/netdata/netdata/issues/19502))
1132 +- Build(deps): bump github.com/vmware/govmomi from 0.47.0 to 0.48.0 in /src/go ([#19504](https://github.com/netdata/netdata/issues/19504))
1133 +- Fix(go.d/nvme): support v2.11 output format ([#19505](https://github.com/netdata/netdata/issues/19505))
1134 +- ACLK: allow encoded proxy username and password to work ([#19508](https://github.com/netdata/netdata/issues/19508))
1135 +- Update buildinfo ([#19506](https://github.com/netdata/netdata/issues/19506))
1136 +- Make handling of cross-platform emulation for static builds smarter. ([#19470](https://github.com/netdata/netdata/issues/19470))
1137 +- Fix alert transition ([#19507](https://github.com/netdata/netdata/issues/19507))
1138 +- Max data file size ([#19495](https://github.com/netdata/netdata/issues/19495))
1139 +- Invert order of checks in pgd_append_point(). ([#19515](https://github.com/netdata/netdata/issues/19515))
1140 +- Compile time and runtime check of required compiler flags ([#19513](https://github.com/netdata/netdata/issues/19513))
1141 +- Link the ebpf plugin against libbpf directly instead of through libnetdata. ([#19514](https://github.com/netdata/netdata/issues/19514))
1142 +- Chore(go.d/nvme): fix :dog: warning ([#19510](https://github.com/netdata/netdata/issues/19510))
1143 +- Docs(go.d/httpcheck): add alerts to metadata ([#19516](https://github.com/netdata/netdata/issues/19516))
1144 +- Regenerate integrations docs ([#19517](https://github.com/netdata/netdata/issues/19517))
1145 +- Improve ACLK query processing ([#19518](https://github.com/netdata/netdata/issues/19518))
1146 +- Ci: increase static build timeout 180->300m ([#19519](https://github.com/netdata/netdata/issues/19519))
1147 +- Update README.md
1148 +- Chore(packaging): remove old dashboard ([#19523](https://github.com/netdata/netdata/issues/19523))
1149 +- Fix MSSQL Instance ([#19527](https://github.com/netdata/netdata/issues/19527))
1150 +- Active Directory Metrics (Windows.plugin) ([#19461](https://github.com/netdata/netdata/issues/19461))
1151 +- Netdata.spec/plugin-go: remove dependency for lm_sensors ([#19511](https://github.com/netdata/netdata/issues/19511))
1152 +- Chore(go.d/snmp): enable create_vnode by default ([#19529](https://github.com/netdata/netdata/issues/19529))
1153 +- Ci: bump static build timeout to 6hr ([#19528](https://github.com/netdata/netdata/issues/19528))
1154 +- Regenerate integrations docs ([#19530](https://github.com/netdata/netdata/issues/19530))
1155 +- Docs(web/gui): remove info about old dashboard from readme ([#19531](https://github.com/netdata/netdata/issues/19531))
1156 +- Fix heap use after free ([#19532](https://github.com/netdata/netdata/issues/19532))
1157 +- Inline functions related to metrics ingestion ([#19524](https://github.com/netdata/netdata/issues/19524))
1158 +- Fix coverity issue ([#19535](https://github.com/netdata/netdata/issues/19535))
1159 +- Fix contexts stay not-live when children reconnect ([#19536](https://github.com/netdata/netdata/issues/19536))
1160 +- Allow dbengine to read at offsets above 4GiB ([#19538](https://github.com/netdata/netdata/issues/19538))
1161 +- Allow dbengine to read at offsets above 4GiB - again ([#19539](https://github.com/netdata/netdata/issues/19539))
1162 +- Format PGDs on fatal() ([#19521](https://github.com/netdata/netdata/issues/19521))
1163 +- Bundle cmake cache. ([#19509](https://github.com/netdata/netdata/issues/19509))
1164 +- SMSEagle integration ([#19520](https://github.com/netdata/netdata/issues/19520))
1165 +- Regenerate integrations docs ([#19541](https://github.com/netdata/netdata/issues/19541))
1166 +- Add NetFramework Metrics (part II) ([#19008](https://github.com/netdata/netdata/issues/19008))
1167 +- Modify eBPF.plugin integration (Part I) ([#19219](https://github.com/netdata/netdata/issues/19219))
1168 +- Use database/rrd.h instead of daemon/common.h ([#19540](https://github.com/netdata/netdata/issues/19540))
1169 +- Virtual hosts now get hops = 1 ([#19546](https://github.com/netdata/netdata/issues/19546))
1170 +- Chore: remove old dashboard leftovers ([#19545](https://github.com/netdata/netdata/issues/19545))
1171 +- Actually handle the `-fexceptions` requirement correctly in our build system. ([#19534](https://github.com/netdata/netdata/issues/19534))
1172 +- Add LTO support in CMake build system. ([#17027](https://github.com/netdata/netdata/issues/17027))
1173 +- Chore(windows.plugin): format perflib ad and netframework ([#19544](https://github.com/netdata/netdata/issues/19544))
1174 +- Add CLR Remoting metadata ([#19203](https://github.com/netdata/netdata/issues/19203))
1175 +- Regenerate integrations docs ([#19548](https://github.com/netdata/netdata/issues/19548))
1176 +- Active Directory Certification Service (windows.plugin) ([#19492](https://github.com/netdata/netdata/issues/19492))
1177 +- Fix cloud connect after claim ([#19547](https://github.com/netdata/netdata/issues/19547))
1178 +- Fix(go.d/mysql): fix typo in test name ([#19550](https://github.com/netdata/netdata/issues/19550))
1179 +- Fix(go.d/mysql): don't collect global variables on every iteration ([#19549](https://github.com/netdata/netdata/issues/19549))
1180 +- Format ebpf ([#19553](https://github.com/netdata/netdata/issues/19553))
1181 +- Rename appconfig to inicfg and drop config_* function-like macros. ([#19552](https://github.com/netdata/netdata/issues/19552))
1182 +- Format Windows.plugin ([#19554](https://github.com/netdata/netdata/issues/19554))
1183 +- Docs(start-stop-restart): fix restart typo ([#19555](https://github.com/netdata/netdata/issues/19555))
1184 +- MSSQL Multiple Instances (windows.plugin) ([#19559](https://github.com/netdata/netdata/issues/19559))
1185 +- Build(deps): bump github.com/lmittmann/tint from 1.0.6 to 1.0.7 in /src/go ([#19558](https://github.com/netdata/netdata/issues/19558))
1186 +- Metadata (AD and ADCS), and small fixes ([#19557](https://github.com/netdata/netdata/issues/19557))
1187 +- Regenerate integrations docs ([#19561](https://github.com/netdata/netdata/issues/19561))
1188 +- Cgroups.plugin: fixes to cgroup path validation ([#19490](https://github.com/netdata/netdata/issues/19490))
1189 +- Feat(go.d/dnsquery): support system DNS servers from /etc/resolv.conf ([#19562](https://github.com/netdata/netdata/issues/19562))
1190 +- Regenerate integrations docs ([#19563](https://github.com/netdata/netdata/issues/19563))
1191 +- Start using new GitHub hosted ARM runners for CI when appropriate. ([#19427](https://github.com/netdata/netdata/issues/19427))
1192 +- Add a new agent status when connecting to the cloud ([#19564](https://github.com/netdata/netdata/issues/19564))
1193 +- Build(deps): bump github.com/prometheus-community/pro-bing from 0.6.0 to 0.6.1 in /src/go ([#19567](https://github.com/netdata/netdata/issues/19567))
1194 +- Fix memory leak ([#19569](https://github.com/netdata/netdata/issues/19569))
1195 +- Code cleanup on ACLK messages ([#19566](https://github.com/netdata/netdata/issues/19566))
1196 +- Fix(go.d): clean up charts for stopped and removed jobs ([#19573](https://github.com/netdata/netdata/issues/19573))
1197 +- Inline dbengine query critical path ([#19537](https://github.com/netdata/netdata/issues/19537))
1198 +- Improve data write ([#19525](https://github.com/netdata/netdata/issues/19525))
1199 +- Fix(go.d/nvme): add missing "/dev/" prefix to device path for v2.11 ([#19577](https://github.com/netdata/netdata/issues/19577))
1200 +- Fix static build conditions to run on release and nightly builds. ([#19579](https://github.com/netdata/netdata/issues/19579))
1201 +- Build(deps): update go toolchain to v1.23.6 ([#19578](https://github.com/netdata/netdata/issues/19578))
1202 +- Fix(go.d/apache): make ?auto param check non-fatal ([#19580](https://github.com/netdata/netdata/issues/19580))
1203 +- Generate protobuf source files in build dir. ([#19576](https://github.com/netdata/netdata/issues/19576))
1204 +- Format missing file (eBPF.plugin) ([#19582](https://github.com/netdata/netdata/issues/19582))
1205 +- Protection against extreme cardinality ([#19486](https://github.com/netdata/netdata/issues/19486))
1206 +- Improvement(go.d/zookeeper): add more metrics ([#19584](https://github.com/netdata/netdata/issues/19584))
1207 +- Regenerate integrations docs ([#19585](https://github.com/netdata/netdata/issues/19585))
1208 +- Docs(go.d/zookeeper): fix ZooKeeper server scope name ([#19587](https://github.com/netdata/netdata/issues/19587))
1209 +- Regenerate integrations docs ([#19588](https://github.com/netdata/netdata/issues/19588))
1210 +- Docs(health): clarify "special user of the conf operator" ([#19589](https://github.com/netdata/netdata/issues/19589))
1211 +- Docs(health): clarify "special user of the cond operator" p2 ([#19590](https://github.com/netdata/netdata/issues/19590))
1212 +- Switch from x86 to ARM build host for POWER8+ builds. ([#19575](https://github.com/netdata/netdata/issues/19575))
1213 +- Add agent version during ACLK handshake ([#19583](https://github.com/netdata/netdata/issues/19583))
1214 +- Fix incomplete implementation of journal watcher ([#19592](https://github.com/netdata/netdata/issues/19592))
1215 +- Add check for available active instances when checking for extreme cardinality ([#19594](https://github.com/netdata/netdata/issues/19594))
1216 +- Free resources where writing datafile extents ([#19593](https://github.com/netdata/netdata/issues/19593))
1217 +- Build(deps): bump github.com/gohugoio/hashstructure from 0.3.0 to 0.5.0 in /src/go ([#19598](https://github.com/netdata/netdata/issues/19598))
1218 +- Build(deps): bump golang.org/x/text from 0.21.0 to 0.22.0 in /src/go ([#19597](https://github.com/netdata/netdata/issues/19597))
1219 +- Dequeue from hub before deleting contexts ([#19599](https://github.com/netdata/netdata/issues/19599))
1220 +- Update manage-notification-methods.md ([#19601](https://github.com/netdata/netdata/issues/19601))
1221 +- Streaming alerts ([#19586](https://github.com/netdata/netdata/issues/19586))
1222 +- Make remove-stale-node remove also ephemeral nodes ([#19602](https://github.com/netdata/netdata/issues/19602))
1223 +- Cleanup hosts - leftover code ([#19603](https://github.com/netdata/netdata/issues/19603))
1224 +- Docs: reword nodes-ephemerality for clarity ([#19604](https://github.com/netdata/netdata/issues/19604))
1225 +- Add interpolation to median and percentile ([#19606](https://github.com/netdata/netdata/issues/19606))
1226 +- Disable LTO for openSUSE package builds. ([#19607](https://github.com/netdata/netdata/issues/19607))
1227 +- Close database if we encounter error during startup ([#19600](https://github.com/netdata/netdata/issues/19600))
1228 +- Cleanup code that writes extents to the database ([#19596](https://github.com/netdata/netdata/issues/19596))
1229 +- Silence new alerts ([#19610](https://github.com/netdata/netdata/issues/19610))
1230 +- Allow indirect access when agent is claimed, but offline (indirect cloud connectivity) ([#19611](https://github.com/netdata/netdata/issues/19611))
1231 +- Do not register removed node on agent restart ([#19609](https://github.com/netdata/netdata/issues/19609))
1232 +- Chore: remove fluentbit.log from Dockerfile ([#19613](https://github.com/netdata/netdata/issues/19613))
1233 +- Improvement(health): clarify clickhouse_replicated_readonly_tables info ([#19616](https://github.com/netdata/netdata/issues/19616))
1234 +- Add sentry fatal message breadcrumb. ([#19608](https://github.com/netdata/netdata/issues/19608))
1235 +- Fix(go.d/mysql): handle Cpu_time in microseconds in v11.4.5+ ([#19618](https://github.com/netdata/netdata/issues/19618))
1236 +- Fix: correct typo in NetdataCompilerFlags ([#19614](https://github.com/netdata/netdata/issues/19614))
1237 +- Switch to Ubuntu 22.04 runner images for CI build jobs. ([#19619](https://github.com/netdata/netdata/issues/19619))
1238 +- Feat(health): add system_reboot_detection alarm ([#19624](https://github.com/netdata/netdata/issues/19624))
1239 +- Build(deps): bump github.com/vmware/govmomi from 0.48.0 to 0.48.1 in /src/go ([#19625](https://github.com/netdata/netdata/issues/19625))
1240 +- Build(deps): bump golang.org/x/net from 0.34.0 to 0.35.0 in /src/go ([#19626](https://github.com/netdata/netdata/issues/19626))
1241 +- HyperV Adjusts (windows.plugin) ([#19623](https://github.com/netdata/netdata/issues/19623))
1242 +- Do not send sentry reports on rrd_init() failures ([#19628](https://github.com/netdata/netdata/issues/19628))
1243 +- Detect the system ca bundle at runtime ([#19622](https://github.com/netdata/netdata/issues/19622))
1244 +- Revert "HyperV Adjusts (windows.plugin)" ([#19630](https://github.com/netdata/netdata/issues/19630))
1245 +- More perflib error checking ([#19631](https://github.com/netdata/netdata/issues/19631))
1246 +- Fix windows logs ([#19632](https://github.com/netdata/netdata/issues/19632))
1247 +- Docs(exporting): remove influxdb (via graphite) exporter ([#19633](https://github.com/netdata/netdata/issues/19633))
1248 +- Regenerate integrations docs ([#19634](https://github.com/netdata/netdata/issues/19634))
1249 +- Docs(exporting): clarify graphite exporters ([#19635](https://github.com/netdata/netdata/issues/19635))
1250 +- Docs: add missing prop to graphite meta ([#19637](https://github.com/netdata/netdata/issues/19637))
1251 +- Regenerate integrations docs ([#19636](https://github.com/netdata/netdata/issues/19636))
1252 +- Revert "fix windows logs" ([#19639](https://github.com/netdata/netdata/issues/19639))
1253 +- Fix windows logs 2 - do not renumber - append fields ([#19640](https://github.com/netdata/netdata/issues/19640))
1254 +- Ci: fix win build ([#19642](https://github.com/netdata/netdata/issues/19642))
1255 +- Add Group=netdata to systemd unit file ([#19638](https://github.com/netdata/netdata/issues/19638))
1256 +- Docs: move /run/dbus mount to Docker recommended way ([#19645](https://github.com/netdata/netdata/issues/19645))
1257 +- Make onewayalloc fallback to malloc ([#19646](https://github.com/netdata/netdata/issues/19646))
1258 +- Build(deps): bump k8s.io/client-go from 0.32.1 to 0.32.2 in /src/go ([#19652](https://github.com/netdata/netdata/issues/19652))
1259 +- Add agent timezones as host labels ([#19656](https://github.com/netdata/netdata/issues/19656))
1260 +- Improvement(go.d/k8sstate): collect deployments ([#19657](https://github.com/netdata/netdata/issues/19657))
1261 +- Regenerate integrations docs ([#19658](https://github.com/netdata/netdata/issues/19658))
1262 +- Speed up aral when a single item is allocated and freed repeateadly ([#19660](https://github.com/netdata/netdata/issues/19660))
1263 +- Avoid dbengine event loop starvation by running uv_run periodically ([#19661](https://github.com/netdata/netdata/issues/19661))
1264 +- Improvement(go.d/k8sstate): add deployment conditions ([#19662](https://github.com/netdata/netdata/issues/19662))
1265 +- Regenerate integrations docs ([#19663](https://github.com/netdata/netdata/issues/19663))
1266 +- Add k8s_state_deployment_condition_available alert ([#19664](https://github.com/netdata/netdata/issues/19664))
1267 +- Chore(go.d/sensors): disable by default ([#19667](https://github.com/netdata/netdata/issues/19667))
1268 +- Improvement(go.d dyncfg): add user to source ([#19666](https://github.com/netdata/netdata/issues/19666))
1269 +- Chore: remove lock files from go.d/python.d ([#19668](https://github.com/netdata/netdata/issues/19668))
1270 +- Fix(go.d/k8sstate): correct deployment conditions ([#19671](https://github.com/netdata/netdata/issues/19671))
1271 +- Improvement(go.d dyncfg): log collector dyncfg actions ([#19672](https://github.com/netdata/netdata/issues/19672))
1272 +- Chore: remove netdata_configured_lock_dir ([#19669](https://github.com/netdata/netdata/issues/19669))
1273 +- Fix(go.d dyncfg): don't overwrite source ([#19673](https://github.com/netdata/netdata/issues/19673))
1274 +- Test(go.d dyncfg): fix tests ([#19676](https://github.com/netdata/netdata/issues/19676))
1275 +- Dyncfg users actions log ([#19674](https://github.com/netdata/netdata/issues/19674))
1276 +- Fix native package installation on RHEL. ([#19643](https://github.com/netdata/netdata/issues/19643))
1277 +- Initial setup of custom OpenTelemetry Collector distribution ([#19678](https://github.com/netdata/netdata/issues/19678))
1278 +- Build(deps): bump github.com/go-sql-driver/mysql from 1.8.1 to 1.9.0 in /src/go ([#19679](https://github.com/netdata/netdata/issues/19679))
1279 +- Build: change go.mod version to 1.23.6 ([#19680](https://github.com/netdata/netdata/issues/19680))
1280 +- Fix freebsd compilation ([#19677](https://github.com/netdata/netdata/issues/19677))
1281 +- Build: change go.mod version to 1.23.4 to fix win ci builds ([#19681](https://github.com/netdata/netdata/issues/19681))
1282 +- Fix(go.d/mysql): handle Cpu_time in microseconds in v10.11.11+ ([#19683](https://github.com/netdata/netdata/issues/19683))
1283 +- Improve dyncfg src type anon message ([#19684](https://github.com/netdata/netdata/issues/19684))
1284 +- Allow parsing empty json arrays and objects ([#19685](https://github.com/netdata/netdata/issues/19685))
1285 +- Switch back to x86 hosts for POWER8+ builds. ([#19686](https://github.com/netdata/netdata/issues/19686))
1286 +- Chore(go.d/mysql): InnodbOSLogIO in MariaDB >= 10.8 ([#19687](https://github.com/netdata/netdata/issues/19687))
1287 +- Chore(go.d/pkg/iprange): add iterator ([#19688](https://github.com/netdata/netdata/issues/19688))
1288 +- Load health config before creating localhost ([#19689](https://github.com/netdata/netdata/issues/19689))
1289 +- Enable libunwind in native packages and Docker images. ([#19452](https://github.com/netdata/netdata/issues/19452))
1290 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.7.0 to 9.7.1 in /src/go ([#19693](https://github.com/netdata/netdata/issues/19693))
1291 +- Build(deps): bump github.com/docker/docker from 27.5.1+incompatible to 28.0.0+incompatible in /src/go ([#19692](https://github.com/netdata/netdata/issues/19692))
1292 +- Change the moto and the description of netdata ([#19696](https://github.com/netdata/netdata/issues/19696))
1293 +- Build(deps): bump github.com/sijms/go-ora/v2 from 2.8.23 to 2.8.24 in /src/go ([#19698](https://github.com/netdata/netdata/issues/19698))
1294 +- Build(deps): bump actions/upload-artifact from 4.6.0 to 4.6.1 ([#19697](https://github.com/netdata/netdata/issues/19697))
1295 +- Build(deps): update go.d packages ([#19700](https://github.com/netdata/netdata/issues/19700))
1296 +- Detect netdata exit reasons ([#19617](https://github.com/netdata/netdata/issues/19617))
1297 +- Under MSYS2 use stat ([#19703](https://github.com/netdata/netdata/issues/19703))
1298 +- Add host/os fields to status file ([#19704](https://github.com/netdata/netdata/issues/19704))
1299 +- Document journal v2 index file format. ([#19701](https://github.com/netdata/netdata/issues/19701))
1300 +- Fix runtime directory; annotate daemon status file ([#19706](https://github.com/netdata/netdata/issues/19706))
1301 +- Daemon status improvements 3 ([#19707](https://github.com/netdata/netdata/issues/19707))
1302 +- Check for final step ([#19708](https://github.com/netdata/netdata/issues/19708))
1303 +- Avoid post initialization errors repeateadly ([#19709](https://github.com/netdata/netdata/issues/19709))
1304 +- Fix Fresh Installation on Microsoft ([#19710](https://github.com/netdata/netdata/issues/19710))
1305 +- 4 malloc arenas for parents, not IoT ([#19711](https://github.com/netdata/netdata/issues/19711))
1306 +- Deduplicate all crash reports ([#19712](https://github.com/netdata/netdata/issues/19712))
1307 +- Systemd-journal: allow almost all fields to be facets ([#19713](https://github.com/netdata/netdata/issues/19713))
1308 +- Do not use mmap when the mmap limit is too low ([#19714](https://github.com/netdata/netdata/issues/19714))
1309 +- Do not call cleanup and exit on fatal conditions during startup ([#19715](https://github.com/netdata/netdata/issues/19715))
1310 +- Chore(go.d): add file persister ([#19716](https://github.com/netdata/netdata/issues/19716))
1311 +- Unified out of memory handling ([#19717](https://github.com/netdata/netdata/issues/19717))
1312 +- Attempt to save status file from the signal handler ([#19718](https://github.com/netdata/netdata/issues/19718))
1313 +- Save status on out of memory event ([#19719](https://github.com/netdata/netdata/issues/19719))
1314 +- More status file annotations ([#19721](https://github.com/netdata/netdata/issues/19721))
1315 +- Status has install type ([#19722](https://github.com/netdata/netdata/issues/19722))
1316 +- Minor status file annotation fixes ([#19723](https://github.com/netdata/netdata/issues/19723))
1317 +- Allow configuring journal v2 unmount time; turn it off for parents ([#19724](https://github.com/netdata/netdata/issues/19724))
1318 +- Handle flushing state during exit ([#19725](https://github.com/netdata/netdata/issues/19725))
1319 +- Improve status file deduplication ([#19726](https://github.com/netdata/netdata/issues/19726))
1320 +- Docs: clarify Windows Agent limits on free plans ([#19727](https://github.com/netdata/netdata/issues/19727))
1321 +- Do not post empty reports ([#19729](https://github.com/netdata/netdata/issues/19729))
1322 +- Improved descriptions of exit reasons ([#19730](https://github.com/netdata/netdata/issues/19730))
1323 +- Fix json generation of apps.plugin processes function info ([#19732](https://github.com/netdata/netdata/issues/19732))
1324 +- Support https_proxy too ([#19733](https://github.com/netdata/netdata/issues/19733))
1325 +- Add more information about claiming failures ([#19735](https://github.com/netdata/netdata/issues/19735))
1326 +- Allow insecure cloud connections ([#19736](https://github.com/netdata/netdata/issues/19736))
1327 +- Add another step when initializing web ([#19731](https://github.com/netdata/netdata/issues/19731))
1328 +- Capture deadly signals ([#19737](https://github.com/netdata/netdata/issues/19737))
1329 +- Zero mtime when a fallback check fails ([#19740](https://github.com/netdata/netdata/issues/19740))
1330 +- Work on agent-events crashes ([#19741](https://github.com/netdata/netdata/issues/19741))
1331 +- Fix(go.d): ignore sigpipe to exit gracefully ([#19739](https://github.com/netdata/netdata/issues/19739))
1332 +- Allow coredumps to be generated ([#19743](https://github.com/netdata/netdata/issues/19743))
1333 +- Pass NULL to sensors_init() when the standard files exist in /etc/ ([#19744](https://github.com/netdata/netdata/issues/19744))
1334 +- More strict parsing of the output of system-info.sh ([#19745](https://github.com/netdata/netdata/issues/19745))
1335 +- Build(deps): bump github.com/gosnmp/gosnmp from 1.38.0 to 1.39.0 in /src/go ([#19747](https://github.com/netdata/netdata/issues/19747))
1336 +- Build(deps): bump github.com/axiomhq/hyperloglog from 0.2.3 to 0.2.5 in /src/go ([#19750](https://github.com/netdata/netdata/issues/19750))
1337 +- Build(deps): bump go.mongodb.org/mongo-driver from 1.17.2 to 1.17.3 in /src/go ([#19748](https://github.com/netdata/netdata/issues/19748))
1338 +- Build(deps): bump github.com/docker/docker from 28.0.0+incompatible to 28.0.1+incompatible in /src/go ([#19746](https://github.com/netdata/netdata/issues/19746))
1339 +- Build(deps): bump github.com/likexian/whois from 1.15.5 to 1.15.6 in /src/go ([#19749](https://github.com/netdata/netdata/issues/19749))
1340 +- Status file improvements (dedup and signal handler use) ([#19751](https://github.com/netdata/netdata/issues/19751))
1341 +- Status file version 8 ([#19753](https://github.com/netdata/netdata/issues/19753))
1342 +- Feat(go.d): add snmp devices discovery ([#19720](https://github.com/netdata/netdata/issues/19720))
1343 +- Chore(go.d/sd/snmp): comment out defaults in snmp.conf ([#19755](https://github.com/netdata/netdata/issues/19755))
1344 +- Improvement(go.d/sd/snmp): support device cache ttl 0 ([#19756](https://github.com/netdata/netdata/issues/19756))
1345 +- Status file timings per step ([#19758](https://github.com/netdata/netdata/issues/19758))
1346 +- Fix(go.d/nvidia_smi): handle xml gpu_power_readings change ([#19759](https://github.com/netdata/netdata/issues/19759))
1347 +- Fix(go.d/sd/snmp): use rescan and cache ttl only when set ([#19760](https://github.com/netdata/netdata/issues/19760))
1348 +- Make status file use fixed size character arrays ([#19761](https://github.com/netdata/netdata/issues/19761))
1349 +- Fix invalid free ([#19763](https://github.com/netdata/netdata/issues/19763))
1350 +- Post status syncrhonously ([#19766](https://github.com/netdata/netdata/issues/19766))
1351 +- Detect crashes during status file processing ([#19767](https://github.com/netdata/netdata/issues/19767))
1352 +- Copy fields only when the source is valid ([#19768](https://github.com/netdata/netdata/issues/19768))
1353 +- Add documentation outlining how to use custom CA certificates with Netdata. ([#19754](https://github.com/netdata/netdata/issues/19754))
1354 +- Add handling for sigabrt in the status file ([#19769](https://github.com/netdata/netdata/issues/19769))
1355 +- Block all signals before spawning any threads ([#19770](https://github.com/netdata/netdata/issues/19770))
1356 +- Block signals before curl ([#19771](https://github.com/netdata/netdata/issues/19771))
1357 +- Chore(go.d/sd): rename discoverers pkgs ([#19772](https://github.com/netdata/netdata/issues/19772))
1358 +- Improvement(go.d/sd): add file path to k8s/snmp discovered job source ([#19776](https://github.com/netdata/netdata/issues/19776))
1359 +- Fix(go.d/sd): fix logging cfg source when disabled ([#19777](https://github.com/netdata/netdata/issues/19777))
1360 +- Fix SIGSEGV on static installs due to dengine log ([#19774](https://github.com/netdata/netdata/issues/19774))
1361 +- Kickstart: install native pkg on RPi2+ ([#19773](https://github.com/netdata/netdata/issues/19773))
1362 +- Add repository priority configuration for DEB package repositories. ([#19705](https://github.com/netdata/netdata/issues/19705))
1363 +- Add unique machine id to status file ([#19778](https://github.com/netdata/netdata/issues/19778))
1364 +- Revert broken DEB priority configuration in repoconfig packages. ([#19783](https://github.com/netdata/netdata/issues/19783))
1365 +- Restructure shutdown logic used during updates. ([#19781](https://github.com/netdata/netdata/issues/19781))
1366 +- Improve agent shutdown ([#19775](https://github.com/netdata/netdata/issues/19775))
1367 +- Enable libunwind in static builds ([#19764](https://github.com/netdata/netdata/issues/19764))
1368 +- Add datadog profiles for snmp collector ([#19785](https://github.com/netdata/netdata/issues/19785))
1369 +- Chore: rename snmp.profiles.d -> snmp.profiles ([#19786](https://github.com/netdata/netdata/issues/19786))
1370 +- Detect when running in CI and disable posting status ([#19787](https://github.com/netdata/netdata/issues/19787))
1371 +- User configurable crash reporting ([#19789](https://github.com/netdata/netdata/issues/19789))
1372 +- Docs(go.d/snmp): add snmp discovery information ([#19790](https://github.com/netdata/netdata/issues/19790))
1373 +- Regenerate integrations docs ([#19791](https://github.com/netdata/netdata/issues/19791))
1374 +- Improvement(go.d/k8s_state): collect cronjobs ([#19793](https://github.com/netdata/netdata/issues/19793))
1375 +- Regenerate integrations docs ([#19794](https://github.com/netdata/netdata/issues/19794))
1376 +- Status file improvements 12 ([#19792](https://github.com/netdata/netdata/issues/19792))
1377 +- Improvement(go.d/k8s_state): add more CronJob metrics ([#19796](https://github.com/netdata/netdata/issues/19796))
1378 +- Bump dag jinja to 3.1.6 ([#19800](https://github.com/netdata/netdata/issues/19800))
1379 +- Modify eBPF.plugin integration (Part II, the sockets) ([#19572](https://github.com/netdata/netdata/issues/19572))
1380 +- Build(deps): bump golang.org/x/net from 0.35.0 to 0.37.0 in /src/go ([#19799](https://github.com/netdata/netdata/issues/19799))
1381 +- Regenerate integrations docs ([#19797](https://github.com/netdata/netdata/issues/19797))
1382 +- Add k8s_state_cronjob_last_execution_failed alert ([#19801](https://github.com/netdata/netdata/issues/19801))
1383 +- Regenerate integrations docs ([#19803](https://github.com/netdata/netdata/issues/19803))
1384 +- Async-signal-safe stack traces ([#19802](https://github.com/netdata/netdata/issues/19802))
1385 +- ADFS (windows.plugin) ([#19699](https://github.com/netdata/netdata/issues/19699))
1386 +- Regenerate integrations docs ([#19804](https://github.com/netdata/netdata/issues/19804))
1387 +- Fix memory corruption in streaming ([#19805](https://github.com/netdata/netdata/issues/19805))
1388 +- Help finding leaks and running valgrind ([#19806](https://github.com/netdata/netdata/issues/19806))
1389 +- Fix fsanitize ifdefs ([#19809](https://github.com/netdata/netdata/issues/19809))
1390 +- Do not change the scheduling policy by default ([#19808](https://github.com/netdata/netdata/issues/19808))
1391 +- Detect memory leaks ([#19811](https://github.com/netdata/netdata/issues/19811))
1392 +- Avoid zero timeout in libuv timers ([#19810](https://github.com/netdata/netdata/issues/19810))
1393 +- Fix(go.d/filecheck): remove dyncfg path validation pattern ([#19815](https://github.com/netdata/netdata/issues/19815))
1394 +- Fix(go.d/pihole): switch to pihole6 api ([#19807](https://github.com/netdata/netdata/issues/19807))
1395 +- Regenerate integrations docs ([#19816](https://github.com/netdata/netdata/issues/19816))
1396 +- Fix LSAN and memory leaks ([#19819](https://github.com/netdata/netdata/issues/19819))
1397 +- Acquire datafile for deletion before calculating retention ([#19812](https://github.com/netdata/netdata/issues/19812))
1398 +- Free all memory on exit ([#19821](https://github.com/netdata/netdata/issues/19821))
1399 +- Include libucontext in static builds to vendor libunwind even on POWER. ([#19817](https://github.com/netdata/netdata/issues/19817))
1400 +- Integrate OpenTelemetry collector build into build system. ([#19702](https://github.com/netdata/netdata/issues/19702))
1401 +- Use notice log level for "machine ID found" ([#19825](https://github.com/netdata/netdata/issues/19825))
1402 +- Build(otel-collector): update to v0.121.0 ([#19824](https://github.com/netdata/netdata/issues/19824))
1403 +- Finding leaks No 2 ([#19823](https://github.com/netdata/netdata/issues/19823))
1404 +- Rrdhost name fix heap-use-after-free ([#19826](https://github.com/netdata/netdata/issues/19826))
1405 +- Fix rrdset name crash on rrdset obsoletion ([#19449](https://github.com/netdata/netdata/issues/19449))
1406 +- Revert "fix rrdset name crash on rrdset obsoletion" ([#19828](https://github.com/netdata/netdata/issues/19828))
1407 +- Improvement(go.d/k8state): add CronJob suspend status ([#19829](https://github.com/netdata/netdata/issues/19829))
1408 +- Fix typo in otel collector build infra. ([#19832](https://github.com/netdata/netdata/issues/19832))
1409 +- Regenerate integrations docs ([#19833](https://github.com/netdata/netdata/issues/19833))
1410 +- Store status file in /var/lib/netdata, not in /var/cache/netdata ([#19831](https://github.com/netdata/netdata/issues/19831))
1411 +- Free strings judy arrays to show leaked strings ([#19827](https://github.com/netdata/netdata/issues/19827))
1412 +- When destroying pgc, check if the cache is null ([#19837](https://github.com/netdata/netdata/issues/19837))
1413 +- Fix rrdset name crash on cleanup ([#19838](https://github.com/netdata/netdata/issues/19838))
1414 +- Fix for building with protobuf 30.0 ([#19835](https://github.com/netdata/netdata/issues/19835))
1415 +- Fix RRDDIM_MEM storage engine index ([#19830](https://github.com/netdata/netdata/issues/19830))
1416 +- Docs: fix typos in nodes-ephemerality.md ([#19840](https://github.com/netdata/netdata/issues/19840))
1417 +- Build(deps): bump k8s.io/client-go from 0.32.2 to 0.32.3 in /src/go ([#19848](https://github.com/netdata/netdata/issues/19848))
1418 +- Build(deps): bump github.com/vmware/govmomi from 0.48.1 to 0.49.0 in /src/go ([#19845](https://github.com/netdata/netdata/issues/19845))
1419 +- Fix updating on RPi2+ ([#19850](https://github.com/netdata/netdata/issues/19850))
1420 +- Add oci meta info ([#19839](https://github.com/netdata/netdata/issues/19839))
1421 +- Minor fixes ([#19849](https://github.com/netdata/netdata/issues/19849))
1422 +- Fix contexts labels to avoid clearing the rrdlabels pointer ([#19853](https://github.com/netdata/netdata/issues/19853))
1423 +- Make sure alerts are concurrently altered by dyncfg ([#19854](https://github.com/netdata/netdata/issues/19854))
1424 +- Fix crashes identified by sentry ([#19856](https://github.com/netdata/netdata/issues/19856))
1425 +- Daemon status 15 ([#19857](https://github.com/netdata/netdata/issues/19857))
1426 +- Netdata-uninstaller: improve input prompt with more descriptive guidance ([#19855](https://github.com/netdata/netdata/issues/19855))
1427 +- Disable UNW_LOCAL_ONLY on static builds ([#19858](https://github.com/netdata/netdata/issues/19858))
1428 +- Fix(macos.plugin): correct disks/network devices charts ([#19859](https://github.com/netdata/netdata/issues/19859))
1429 +- Restore needed variables for pluginsd ([#19860](https://github.com/netdata/netdata/issues/19860))
1430 +- Initial commit with snmp profile code ([#19813](https://github.com/netdata/netdata/issues/19813))
1431 +- Build(deps): bump github.com/prometheus/common from 0.62.0 to 0.63.0 in /src/go ([#19864](https://github.com/netdata/netdata/issues/19864))
1432 +- Daemon status file 16 ([#19863](https://github.com/netdata/netdata/issues/19863))
1433 +- Improvement(macos.plugin): add options to filter net ifaces and mountpoints ([#19865](https://github.com/netdata/netdata/issues/19865))
1434 +- Fixed sentry dedup ([#19867](https://github.com/netdata/netdata/issues/19867))
1435 +- Fixed sentry version ([#19868](https://github.com/netdata/netdata/issues/19868))
1436 +- Release memory on shutdown - detect invalid extent in journal files ([#19861](https://github.com/netdata/netdata/issues/19861))
1437 +- Fix(freebsd.plugin): correct disks/network devices charts ([#19866](https://github.com/netdata/netdata/issues/19866))
1438 +- Daemon status file 17 ([#19869](https://github.com/netdata/netdata/issues/19869))
1439 +- Remove tj-actions/changed-files from CI jobs. ([#19870](https://github.com/netdata/netdata/issues/19870))
1440 +- Sentry events annotations ([#19872](https://github.com/netdata/netdata/issues/19872))
1441 +- Add the fatal to the exit reasons ([#19873](https://github.com/netdata/netdata/issues/19873))
1442 +- Make sure the daemon status hash does not depend on random bytes ([#19874](https://github.com/netdata/netdata/issues/19874))
1443 +- Do not lose exit reasons ([#19875](https://github.com/netdata/netdata/issues/19875))
1444 +- SIGABRT and already running are fatal conditions ([#19878](https://github.com/netdata/netdata/issues/19878))
1445 +- Add stack trace information to the compiler and linker ([#19879](https://github.com/netdata/netdata/issues/19879))
1446 +- Change log priorities on agent-events ([#19880](https://github.com/netdata/netdata/issues/19880))
1447 +- Daemon-status-18 ([#19876](https://github.com/netdata/netdata/issues/19876))
1448 +- Ci: use step-security/changed-files ([#19881](https://github.com/netdata/netdata/issues/19881))
1449 +- Docs(go.d/snmp): improve auto-detection section ([#19882](https://github.com/netdata/netdata/issues/19882))
1450 +- Regenerate integrations docs ([#19883](https://github.com/netdata/netdata/issues/19883))
1451 +- Daemon status 18b ([#19884](https://github.com/netdata/netdata/issues/19884))
1452 +- Chore(go.d/snmp/ddsnmp): use dd profile definition ([#19886](https://github.com/netdata/netdata/issues/19886))
1453 +- Update DEB/RPM package signing key info. ([#19888](https://github.com/netdata/netdata/issues/19888))
1454 +- Fix(go.d/snmp/ddsnmp): correct profile directory path ([#19887](https://github.com/netdata/netdata/issues/19887))
1455 +- Remove deadlock from dyncfg health ([#19890](https://github.com/netdata/netdata/issues/19890))
1456 +- Fix typo in README title ([#19891](https://github.com/netdata/netdata/issues/19891))
1457 +- Make sure all rrdcalcs are unlinked the moment they are deleted ([#19893](https://github.com/netdata/netdata/issues/19893))
1458 +- Do not recurse cleanup on shutdown ([#19894](https://github.com/netdata/netdata/issues/19894))
1459 +- Build: update otel deps to v0.122.0 ([#19895](https://github.com/netdata/netdata/issues/19895))
1460 +- Fix for system shutdown ([#19897](https://github.com/netdata/netdata/issues/19897))
1461 +- More strict checks on log-fw ([#19898](https://github.com/netdata/netdata/issues/19898))
1462 +- More compilation flags for stack traces ([#19899](https://github.com/netdata/netdata/issues/19899))
1463 +- Do not use errno when hashing status events ([#19900](https://github.com/netdata/netdata/issues/19900))
1464 +- Fix compile without dbengine ([#19902](https://github.com/netdata/netdata/issues/19902))
1465 +- Improve CI reliability by allowing for better retry behavior. ([#19834](https://github.com/netdata/netdata/issues/19834))
1466 +- Revert "Fix compile without dbengine" ([#19905](https://github.com/netdata/netdata/issues/19905))
1467 +- Bump repoconfig version used in kickstart script to 5-1. ([#19906](https://github.com/netdata/netdata/issues/19906))
1468 +- Remove auto-retry on changelog generation. ([#19908](https://github.com/netdata/netdata/issues/19908))
1469 +
1470 +## [2.2.0] - 2025-01-22
1471 +
1472 +### Merged Pull Requests:
1473 +
1474 +- Feat(go.d): add NATS collector ([#19252](https://github.com/netdata/netdata/issues/19252))
1475 +- Docs: fix nats metadata suffix ([#19253](https://github.com/netdata/netdata/issues/19253))
1476 +- Regenerate integrations docs ([#19254](https://github.com/netdata/netdata/issues/19254))
1477 +- Updated copyright notices ([#19256](https://github.com/netdata/netdata/issues/19256))
1478 +- Docs: change "node-membership-rules" filename/title ([#19257](https://github.com/netdata/netdata/issues/19257))
1479 +- Fix crash when the DRM file does not contain the right information ([#19258](https://github.com/netdata/netdata/issues/19258))
1480 +- Add an alert guide for reboot required ([#19260](https://github.com/netdata/netdata/issues/19260))
1481 +- HELP and TYPE in prometheus fix ([#19261](https://github.com/netdata/netdata/issues/19261))
1482 +- Improvement(go.d/nats): add accstatz metrics ([#19262](https://github.com/netdata/netdata/issues/19262))
1483 +- Regenerate integrations docs ([#19263](https://github.com/netdata/netdata/issues/19263))
1484 +- Improvement(go.d/nats): add routez metrics ([#19264](https://github.com/netdata/netdata/issues/19264))
1485 +- Regenerate integrations docs ([#19265](https://github.com/netdata/netdata/issues/19265))
1486 +- Build(deps): bump github.com/axiomhq/hyperloglog from 0.2.0 to 0.2.2 in /src/go ([#19270](https://github.com/netdata/netdata/issues/19270))
1487 +- Build(deps): bump github.com/jackc/pgx/v5 from 5.7.1 to 5.7.2 in /src/go ([#19271](https://github.com/netdata/netdata/issues/19271))
1488 +- Build(deps): bump github.com/docker/docker from 27.4.0+incompatible to 27.4.1+incompatible in /src/go ([#19268](https://github.com/netdata/netdata/issues/19268))
1489 +- Build(deps): bump golang.org/x/net from 0.32.0 to 0.33.0 in /src/go ([#19269](https://github.com/netdata/netdata/issues/19269))
1490 +- Build(deps): bump actions/upload-artifact from 4.4.2 to 4.5.0 ([#19272](https://github.com/netdata/netdata/issues/19272))
1491 +- Build(deps): update go toolchain to v1.23.4 ([#19273](https://github.com/netdata/netdata/issues/19273))
1492 +- Improvement(go.d/nats): add gatewayz metrics ([#19266](https://github.com/netdata/netdata/issues/19266))
1493 +- Regenerate integrations docs ([#19276](https://github.com/netdata/netdata/issues/19276))
1494 +- Skip label cleanup during metadata processing ([#19274](https://github.com/netdata/netdata/issues/19274))
1495 +- Fix(go.d/rabbitmq): handle insufficient perms when querying definitions ([#19277](https://github.com/netdata/netdata/issues/19277))
1496 +- Updates to onprem docs ([#19275](https://github.com/netdata/netdata/issues/19275))
1497 +- Fix metric retention check and cleanup ([#19278](https://github.com/netdata/netdata/issues/19278))
1498 +- Improvement(go.d/nats): add server_id label ([#19280](https://github.com/netdata/netdata/issues/19280))
1499 +- Regenerate integrations docs ([#19281](https://github.com/netdata/netdata/issues/19281))
1500 +- Docs: improve on-prem troubleshooting readability ([#19279](https://github.com/netdata/netdata/issues/19279))
1501 +- Improvement(go.d/nats): add leafz metrics ([#19282](https://github.com/netdata/netdata/issues/19282))
1502 +- Regenerate integrations docs ([#19283](https://github.com/netdata/netdata/issues/19283))
1503 +- Fix go.d/nats tests ([#19284](https://github.com/netdata/netdata/issues/19284))
1504 +- Improvement(go.d/nats): add basic jetstream metrics ([#19285](https://github.com/netdata/netdata/issues/19285))
1505 +- Regenerate integrations docs ([#19286](https://github.com/netdata/netdata/issues/19286))
1506 +- Bump dag req jinja version ([#19287](https://github.com/netdata/netdata/issues/19287))
1507 +- Fix(netdata-updater.sh): remove commit_check_file directory ([#19288](https://github.com/netdata/netdata/issues/19288))
1508 +- Fix(netdata-updater.sh): ensure tmpdir-path argument is always passed ([#19289](https://github.com/netdata/netdata/issues/19289))
1509 +- Remove go.d/windows ([#19290](https://github.com/netdata/netdata/issues/19290))
1510 +- Build(deps): add bison and flex ([#19292](https://github.com/netdata/netdata/issues/19292))
1511 +- Monitor sensors using libsensors via debugfs.plugin ([#19251](https://github.com/netdata/netdata/issues/19251))
1512 +- DBENGINE: pgc tuning, replication tuning ([#19237](https://github.com/netdata/netdata/issues/19237))
1513 +- Fix(debugfs/sensors): correct driver label value ([#19294](https://github.com/netdata/netdata/issues/19294))
1514 +- More descriptive alert transition logs ([#19297](https://github.com/netdata/netdata/issues/19297))
1515 +- Nd_poll() fairness ([#19298](https://github.com/netdata/netdata/issues/19298))
1516 +- Improve stream sending thread error message ([#19300](https://github.com/netdata/netdata/issues/19300))
1517 +- Streaming improvements No 12 ([#19299](https://github.com/netdata/netdata/issues/19299))
1518 +- Revert waiting-queue optimization ([#19301](https://github.com/netdata/netdata/issues/19301))
1519 +- Improvement(go.d/nats): add cluster_name label and jetstream status chart ([#19303](https://github.com/netdata/netdata/issues/19303))
1520 +- Waiting Queue ([#19302](https://github.com/netdata/netdata/issues/19302))
1521 +- WAITQ: fixed mixed up ordering ([#19305](https://github.com/netdata/netdata/issues/19305))
1522 +- Fix shutdown ([#19306](https://github.com/netdata/netdata/issues/19306))
1523 +- Load rrdcontext dimensions in batches ([#19304](https://github.com/netdata/netdata/issues/19304))
1524 +- Fix aral memory accounting ([#19308](https://github.com/netdata/netdata/issues/19308))
1525 +- Docs(go.d/nats): add missing labels to meta ([#19309](https://github.com/netdata/netdata/issues/19309))
1526 +- Regenerate integrations docs ([#19310](https://github.com/netdata/netdata/issues/19310))
1527 +- Fix(go.d/nats): add missing cid label to gw charts ([#19311](https://github.com/netdata/netdata/issues/19311))
1528 +- Fix(go.d/sd): correctly adding tags in classify ([#19312](https://github.com/netdata/netdata/issues/19312))
1529 +- Add yugabytedb docker manager ([#19313](https://github.com/netdata/netdata/issues/19313))
1530 +- Locks Improvements ([#19314](https://github.com/netdata/netdata/issues/19314))
1531 +- Feat(cgroup-name.sh): Add support for `netdata.cloud/*` container labels ([#19315](https://github.com/netdata/netdata/issues/19315))
1532 +- Fix(cgroup-rename): prevent leading comma in Docker LABELS when IMAGE empty ([#19318](https://github.com/netdata/netdata/issues/19318))
1533 +- Build(deps): bump github.com/vmware/govmomi from 0.46.3 to 0.47.0 in /src/go ([#19322](https://github.com/netdata/netdata/issues/19322))
1534 +- Fix(kickstart.sh): correct wrong function name in perpare_offline_install ([#19323](https://github.com/netdata/netdata/issues/19323))
1535 +- Fix(netdata-updater.sh): use explicit paths for temp dir creation ([#19293](https://github.com/netdata/netdata/issues/19293))
1536 +- FD Leaks Fix ([#19327](https://github.com/netdata/netdata/issues/19327))
1537 +- CGROUP labels ([#19316](https://github.com/netdata/netdata/issues/19316))
1538 +- Build(deps): bump golang.org/x/net from 0.33.0 to 0.34.0 in /src/go ([#19330](https://github.com/netdata/netdata/issues/19330))
1539 +- Improvement(go.d/docker): add option to filter containers ([#19337](https://github.com/netdata/netdata/issues/19337))
1540 +- Docs(go.d/docker): fix syntax error in meta ([#19339](https://github.com/netdata/netdata/issues/19339))
1541 +- Regenerate integrations docs ([#19340](https://github.com/netdata/netdata/issues/19340))
1542 +- Improvement(go.d/docker): respect ignore label ([#19341](https://github.com/netdata/netdata/issues/19341))
1543 +- Convert invalid utf8 sequences to hex characters ([#19333](https://github.com/netdata/netdata/issues/19333))
1544 +- Improvement(go.d/k8sstate): respect ignore annotation ([#19342](https://github.com/netdata/netdata/issues/19342))
1545 +- Contexts Loading ([#19336](https://github.com/netdata/netdata/issues/19336))
1546 +- Abort on fatal and report system available bytes on allocation failures. ([#19332](https://github.com/netdata/netdata/issues/19332))
1547 +- Add alert version to aclk-state ([#19335](https://github.com/netdata/netdata/issues/19335))
1548 +- Add option to updater to report status of auto-updates on the system. ([#19248](https://github.com/netdata/netdata/issues/19248))
1549 +- Add instructions for Docker Compose ([#19331](https://github.com/netdata/netdata/issues/19331))
1550 +- Regenerate integrations docs ([#19344](https://github.com/netdata/netdata/issues/19344))
1551 +- Assorted systemd detection fixes ([#19345](https://github.com/netdata/netdata/issues/19345))
1552 +- Use sqlite3_status64() ([#19347](https://github.com/netdata/netdata/issues/19347))
1553 +- Log a summary of metadata ignored contexts ([#19348](https://github.com/netdata/netdata/issues/19348))
1554 +- PGC wanted size ([#19349](https://github.com/netdata/netdata/issues/19349))
1555 +- Lower compression level to lower cpu resources on parents ([#19350](https://github.com/netdata/netdata/issues/19350))
1556 +- RRDCONTEXTS: loading report ([#19351](https://github.com/netdata/netdata/issues/19351))
1557 +- Annotate logs with stack trace when libunwind is available ([#19334](https://github.com/netdata/netdata/issues/19334))
1558 +- Minor fixes ([#19353](https://github.com/netdata/netdata/issues/19353))
1559 +- Fix compilation on windows ([#19354](https://github.com/netdata/netdata/issues/19354))
1560 +- Stream receiver/sender compress BEGIN-SET-END performance ([#19352](https://github.com/netdata/netdata/issues/19352))
1561 +- Stream Compression Fix ([#19355](https://github.com/netdata/netdata/issues/19355))
1562 +- Fix coverity issues ([#19317](https://github.com/netdata/netdata/issues/19317))
1563 +- Allow compiling with FSANITIZE_ADDRESS ([#19357](https://github.com/netdata/netdata/issues/19357))
1564 +- Fix flood protection ([#19358](https://github.com/netdata/netdata/issues/19358))
1565 +- Fix os_system_memory() for concurrent use and call it from pulse ([#19359](https://github.com/netdata/netdata/issues/19359))
1566 +- Respect flood protection configuration for daemon ([#19360](https://github.com/netdata/netdata/issues/19360))
1567 +- Avoid checking replication status all the time ([#19361](https://github.com/netdata/netdata/issues/19361))
1568 +- Metrics-cardinality function ([#19362](https://github.com/netdata/netdata/issues/19362))
1569 +- Prevent memory corruption in dbengine ([#19363](https://github.com/netdata/netdata/issues/19363))
1570 +- Revert "prevent memory corruption in dbengine" ([#19364](https://github.com/netdata/netdata/issues/19364))
1571 +- Prevent memory corruption in dbengine ([#19365](https://github.com/netdata/netdata/issues/19365))
1572 +- Improve context load time during startup ([#19321](https://github.com/netdata/netdata/issues/19321))
1573 +- Metrics cardinality improvements ([#19366](https://github.com/netdata/netdata/issues/19366))
1574 +- Stream-thread fix memory corruption ([#19367](https://github.com/netdata/netdata/issues/19367))
1575 +- Metrics cardinality - more statistics and groupings ([#19368](https://github.com/netdata/netdata/issues/19368))
1576 +- Fix for PGC wanted_cache_size getting to zero ([#19370](https://github.com/netdata/netdata/issues/19370))
1577 +- Disable libunwind on forked children ([#19374](https://github.com/netdata/netdata/issues/19374))
1578 +- Fix alert entry traversal when doing cleanup ([#19373](https://github.com/netdata/netdata/issues/19373))
1579 +- Build(deps): bump go.mongodb.org/mongo-driver from 1.17.1 to 1.17.2 in /src/go ([#19377](https://github.com/netdata/netdata/issues/19377))
1580 +- Build(deps): bump github.com/axiomhq/hyperloglog from 0.2.2 to 0.2.3 in /src/go ([#19378](https://github.com/netdata/netdata/issues/19378))
1581 +- Pulse extended memory statistics, now report glibc allocations ([#19379](https://github.com/netdata/netdata/issues/19379))
1582 +- ARAL: fast path to quickly allocate elements on a new page ([#19376](https://github.com/netdata/netdata/issues/19376))
1583 +- Limit the glibc unused memory ([#19380](https://github.com/netdata/netdata/issues/19380))
1584 +- Fix mallinfo2 ([#19381](https://github.com/netdata/netdata/issues/19381))
1585 +- Used_arena should exclude unused memory ([#19382](https://github.com/netdata/netdata/issues/19382))
1586 +- Added mmap count charts ([#19384](https://github.com/netdata/netdata/issues/19384))
1587 +- Reduce glibc memory fragmentation ([#19385](https://github.com/netdata/netdata/issues/19385))
1588 +- Build(deps): bump actions/upload-artifact from 4.5.0 to 4.6.0 ([#19387](https://github.com/netdata/netdata/issues/19387))
1589 +- Build(deps): bump azure/trusted-signing-action from 0.5.0 to 0.5.1 ([#19388](https://github.com/netdata/netdata/issues/19388))
1590 +- Fix issues with $PATH and netdatacli detection. ([#19371](https://github.com/netdata/netdata/issues/19371))
1591 +- Reduce glibc fragmentation Part 2 ([#19390](https://github.com/netdata/netdata/issues/19390))
1592 +- Feat(go.d.plugin): add YugabyteDB collector ([#19325](https://github.com/netdata/netdata/issues/19325))
1593 +- Regenerate integrations docs ([#19394](https://github.com/netdata/netdata/issues/19394))
1594 +- Build(go.d): switch to gohugoio/hashstructure ([#19395](https://github.com/netdata/netdata/issues/19395))
1595 +- Make libunwind opt-in at build time instead of auto-enabled. ([#19393](https://github.com/netdata/netdata/issues/19393))
1596 +- UUIDMap ([#19307](https://github.com/netdata/netdata/issues/19307))
1597 +- Remove openSUSE 15.5 from CI and package builds. ([#19392](https://github.com/netdata/netdata/issues/19392))
1598 +- Update kickstart script to use new repository host. ([#18962](https://github.com/netdata/netdata/issues/18962))
1599 +- Unified memory API ([#19396](https://github.com/netdata/netdata/issues/19396))
1600 +- Check cluster centers size in copy constructor of inlined kmeans ([#19356](https://github.com/netdata/netdata/issues/19356))
1601 +- Verify and cleanup deleted contexts ([#19389](https://github.com/netdata/netdata/issues/19389))
1602 +- Fix nodes staying in initializing status ([#19398](https://github.com/netdata/netdata/issues/19398))
1603 +- Use worker when dispatching alert transitions to the cloud ([#19397](https://github.com/netdata/netdata/issues/19397))
1604 +- Revert "Update kickstart script to use new repository host." ([#19400](https://github.com/netdata/netdata/issues/19400))
1605 +- Do not process contexts before they are loaded ([#19401](https://github.com/netdata/netdata/issues/19401))
1606 +- Split rrdhost/rrdset/rrddim and rrd.h ([#19399](https://github.com/netdata/netdata/issues/19399))
1607 +- System memory calculation for cgroups v1 fix ([#19402](https://github.com/netdata/netdata/issues/19402))
1608 +- Delay context cleanup checks after startup ([#19403](https://github.com/netdata/netdata/issues/19403))
1609 +- Fix loading contexts ([#19404](https://github.com/netdata/netdata/issues/19404))
1610 +- RRD files split, renames, cleanup Part 2 ([#19405](https://github.com/netdata/netdata/issues/19405))
1611 +- Fixed http clients accounting ([#19406](https://github.com/netdata/netdata/issues/19406))
1612 +- Build(deps): bump github.com/docker/docker from 27.4.1+incompatible to 27.5.0+incompatible in /src/go ([#19408](https://github.com/netdata/netdata/issues/19408))
1613 +- Build(deps): bump github.com/bmatcuk/doublestar/v4 from 4.7.1 to 4.8.0 in /src/go ([#19407](https://github.com/netdata/netdata/issues/19407))
1614 +- Alert prototypes: use r/w spinlock instead of spinlock ([#19410](https://github.com/netdata/netdata/issues/19410))
1615 +- REFCOUNT: use only compare-and-exchange ([#19411](https://github.com/netdata/netdata/issues/19411))
1616 +- Query systemd for unit file paths on install/uninstall. ([#19346](https://github.com/netdata/netdata/issues/19346))
1617 +- Packaging(windows): use local copy of GPL-3 ([#19414](https://github.com/netdata/netdata/issues/19414))
1618 +- Add "netdata-" prefix to streaming and metrics-cardinality functions ([#19413](https://github.com/netdata/netdata/issues/19413))
1619 +- Hostnames: convert to utf8 and santitize ([#19418](https://github.com/netdata/netdata/issues/19418))
1620 +- Cleanup contexts during loading ([#19416](https://github.com/netdata/netdata/issues/19416))
1621 +- PULSE: network traffic ([#19419](https://github.com/netdata/netdata/issues/19419))
1622 +- Fix mmaps accounting ([#19420](https://github.com/netdata/netdata/issues/19420))
1623 +- Log stream_info payload when it cannot be parsed ([#19424](https://github.com/netdata/netdata/issues/19424))
1624 +- Add 'type' to GH report forms ([#19421](https://github.com/netdata/netdata/issues/19421))
1625 +- Fix coverity issues ([#19422](https://github.com/netdata/netdata/issues/19422))
1626 +- ACLK timeout ([#19425](https://github.com/netdata/netdata/issues/19425))
1627 +- Feat(go.d/ethtool): collect module ddm info using ethtool ([#19426](https://github.com/netdata/netdata/issues/19426))
1628 +- Fix(go.d/ethtool): use ndsudo for module info ([#19429](https://github.com/netdata/netdata/issues/19429))
1629 +- Docs: fix go.d/ethtool meta ([#19430](https://github.com/netdata/netdata/issues/19430))
1630 +- Drop Fedora 39 from CI and package builds. ([#19431](https://github.com/netdata/netdata/issues/19431))
1631 +- Regenerate integrations docs ([#19432](https://github.com/netdata/netdata/issues/19432))
1632 +- Cleanup context check list on startup ([#19433](https://github.com/netdata/netdata/issues/19433))
1633 +- Fix go.d/ethtool config schema ([#19434](https://github.com/netdata/netdata/issues/19434))
1634 +- Add 'ethtool -m' to ndsudo ([#19428](https://github.com/netdata/netdata/issues/19428))
1635 +- Add more aclk worker jobs ([#19435](https://github.com/netdata/netdata/issues/19435))
1636 +- Build(deps): bump k8s.io/client-go from 0.32.0 to 0.32.1 in /src/go ([#19437](https://github.com/netdata/netdata/issues/19437))
1637 +- Build(deps): bump github.com/prometheus/common from 0.61.0 to 0.62.0 in /src/go ([#19439](https://github.com/netdata/netdata/issues/19439))
1638 +- Build(deps): bump github.com/sijms/go-ora/v2 from 2.8.22 to 2.8.23 in /src/go ([#19438](https://github.com/netdata/netdata/issues/19438))
1639 +- Move dbengine-retention chart to pulse ([#19444](https://github.com/netdata/netdata/issues/19444))
1640 +- Handle incoming ACLK traffic asynchronously ([#19436](https://github.com/netdata/netdata/issues/19436))
1641 +- Fix Child web remote access Config in Parent-Child Deployment Examples ([#19443](https://github.com/netdata/netdata/issues/19443))
1642 +- Build(deps): update go toolchain to v1.23.5 ([#19442](https://github.com/netdata/netdata/issues/19442))
1643 +- Make sure ACLK synchronization event loop runs frequently ([#19446](https://github.com/netdata/netdata/issues/19446))
1644 +- Cleanup metadata event loop ([#19447](https://github.com/netdata/netdata/issues/19447))
1645 +- Do not run queries synchronously in the event loop ([#19448](https://github.com/netdata/netdata/issues/19448))
1646 +- Add missing information in rule based membership document ([#19423](https://github.com/netdata/netdata/issues/19423))
1647 +- Enable libunwind in Docker images. ([#19409](https://github.com/netdata/netdata/issues/19409))
1648 +- Enable libunwind in DEB native packages. ([#19417](https://github.com/netdata/netdata/issues/19417))
1649 +- Revert libunwind being enabled in Docker and DEB builds. ([#19450](https://github.com/netdata/netdata/issues/19450))
1650 +- Simplify the rrdhost_ingestion_status call ([#19456](https://github.com/netdata/netdata/issues/19456))
1651 +- Fix(go.d/upsd): remove UPS load charts if UPS load not found ([#19457](https://github.com/netdata/netdata/issues/19457))
1652 +- Control stream-info requests rate ([#19458](https://github.com/netdata/netdata/issues/19458))
1653 +- Fix up handling of libunwind in CMake. ([#19451](https://github.com/netdata/netdata/issues/19451))
1654 +
1655 +## [2.1.0] - 2024-12-19
1656 +
1657 +### Merged Pull Requests:
1658 +
1659 +- Update Windows Documentation ([#18928](https://github.com/netdata/netdata/issues/18928))
1660 +- Regenerate integrations.js ([#18966](https://github.com/netdata/netdata/issues/18966))
1661 +- Bump github.com/Wing924/ltsv from 0.3.1 to 0.4.0 in /src/go ([#18636](https://github.com/netdata/netdata/issues/18636))
1662 +- Go mod tidy ([#18967](https://github.com/netdata/netdata/issues/18967))
1663 +- Build(deps): bump golang.org/x/text from 0.19.0 to 0.20.0 in /src/go ([#18968](https://github.com/netdata/netdata/issues/18968))
1664 +- Fix(go.d/snmp): don't return error if no sysName ([#18970](https://github.com/netdata/netdata/issues/18970))
1665 +- Feat(go.d/rabbitmq): add cluster support ([#18965](https://github.com/netdata/netdata/issues/18965))
1666 +- Regenerate integrations.js ([#18971](https://github.com/netdata/netdata/issues/18971))
1667 +- Add rabbitmq alerts ([#18972](https://github.com/netdata/netdata/issues/18972))
1668 +- Regenerate integrations.js ([#18973](https://github.com/netdata/netdata/issues/18973))
1669 +- Improvement(go.d/rabbitmq): add queue status and net partitions ([#18976](https://github.com/netdata/netdata/issues/18976))
1670 +- Ci: fix win jobs ([#18979](https://github.com/netdata/netdata/issues/18979))
1671 +- Regenerate integrations.js ([#18977](https://github.com/netdata/netdata/issues/18977))
1672 +- Added /api/v3/stream_path ([#18943](https://github.com/netdata/netdata/issues/18943))
1673 +- Improvement(go.d.plugin): add data collection status chart ([#18981](https://github.com/netdata/netdata/issues/18981))
1674 +- Build(deps): bump golang.org/x/net from 0.30.0 to 0.31.0 in /src/go ([#18986](https://github.com/netdata/netdata/issues/18986))
1675 +- Chore(go.d.plugin): fix duplicate boolToInt ([#18987](https://github.com/netdata/netdata/issues/18987))
1676 +- Update GH bug report ([#18988](https://github.com/netdata/netdata/issues/18988))
1677 +- Health: enable go.d data collection job status alert ([#18989](https://github.com/netdata/netdata/issues/18989))
1678 +- Update plugin_data_collection_status alert summary/info ([#18990](https://github.com/netdata/netdata/issues/18990))
1679 +- Do not intentionally abort on non-0 exit code. ([#18991](https://github.com/netdata/netdata/issues/18991))
1680 +- Docs: single line win deploy ([#18994](https://github.com/netdata/netdata/issues/18994))
1681 +- Docs: win deploy remove `./` ([#18996](https://github.com/netdata/netdata/issues/18996))
1682 +- Regenerate integrations.js ([#18997](https://github.com/netdata/netdata/issues/18997))
1683 +- Fix: exclude volumes w/o drive letter from disk_space_usage_alert ([#19000](https://github.com/netdata/netdata/issues/19000))
1684 +- Improvement(go.d/x509check): support checking full chain expiry time ([#19001](https://github.com/netdata/netdata/issues/19001))
1685 +- Regenerate integrations.js ([#19002](https://github.com/netdata/netdata/issues/19002))
1686 +- Fix(go.d/dyncfg): remove additionalProperties check ([#19003](https://github.com/netdata/netdata/issues/19003))
1687 +- Improve Installer (Part II) ([#18983](https://github.com/netdata/netdata/issues/18983))
1688 +- Fix(go.d/x509check): correct check revocation code ([#19004](https://github.com/netdata/netdata/issues/19004))
1689 +- Fix(go.d/dyncfg): remove additionalProperties ([#19006](https://github.com/netdata/netdata/issues/19006))
1690 +- Set expires header when serving files ([#19005](https://github.com/netdata/netdata/issues/19005))
1691 +- Docs(go.d/windows): add deprecation notice ([#19009](https://github.com/netdata/netdata/issues/19009))
1692 +- Regenerate integrations.js ([#19010](https://github.com/netdata/netdata/issues/19010))
1693 +- Backport of fixes from balance-parents ([#19012](https://github.com/netdata/netdata/issues/19012))
1694 +- Add missing spinlock unlocks on containers ([#19011](https://github.com/netdata/netdata/issues/19011))
1695 +- Fix has_receiver condition in rrdhost_status() ([#19014](https://github.com/netdata/netdata/issues/19014))
1696 +- Remove MSI test ([#19015](https://github.com/netdata/netdata/issues/19015))
1697 +- Fix(go.d/ping): fix "interface" option ([#19016](https://github.com/netdata/netdata/issues/19016))
1698 +- Regenerate integrations.js ([#19018](https://github.com/netdata/netdata/issues/19018))
1699 +- IIS Metadata ([#18765](https://github.com/netdata/netdata/issues/18765))
1700 +- Docs: just iis ([#19021](https://github.com/netdata/netdata/issues/19021))
1701 +- Add SQL Express Metrics ([#18992](https://github.com/netdata/netdata/issues/18992))
1702 +- Regenerate integrations.js ([#19022](https://github.com/netdata/netdata/issues/19022))
1703 +- Chore(windows.plugin): format win collectors code ([#19019](https://github.com/netdata/netdata/issues/19019))
1704 +- Docs(go.d/windows): remove references to old MSI ([#19024](https://github.com/netdata/netdata/issues/19024))
1705 +- Improvement(go.d.plugin): automatically set GOMAXPROCS ([#19023](https://github.com/netdata/netdata/issues/19023))
1706 +- Regenerate integrations.js ([#19025](https://github.com/netdata/netdata/issues/19025))
1707 +- Chore(go.d.plugin): set nooplogger for automaxprocs ([#19026](https://github.com/netdata/netdata/issues/19026))
1708 +- Fix(windows/iis): dont sanitize site name for labels ([#19027](https://github.com/netdata/netdata/issues/19027))
1709 +- Improvement(windows/iis): add requests by type chart ([#19028](https://github.com/netdata/netdata/issues/19028))
1710 +- Regenerate integrations.js ([#19029](https://github.com/netdata/netdata/issues/19029))
1711 +- Build(deps): bump github.com/vmware/govmomi from 0.46.0 to 0.46.1 in /src/go ([#19030](https://github.com/netdata/netdata/issues/19030))
1712 +- Update ram-requirements.md
1713 +- Build(deps): bump github.com/gorcon/rcon from 1.3.5 to 1.4.0 in /src/go ([#19031](https://github.com/netdata/netdata/issues/19031))
1714 +- Fix: ensure correct startup order for Netdata service on FreeBSD ([#19032](https://github.com/netdata/netdata/issues/19032))
1715 +- Add `shutdown` keyword to ensure graceful service termination on FreeBSD ([#19033](https://github.com/netdata/netdata/issues/19033))
1716 +- --dev option to installer ([#19034](https://github.com/netdata/netdata/issues/19034))
1717 +- Fix(windows/netframework): dont sanitize proc name for labels ([#19036](https://github.com/netdata/netdata/issues/19036))
1718 +- Improvement(go.d.plugin): terminate on QUIT command ([#19038](https://github.com/netdata/netdata/issues/19038))
1719 +- Tidy up CI to improve overall run times. ([#18957](https://github.com/netdata/netdata/issues/18957))
1720 +- Fix(go.d/nvidia_smi): disable loop mode by default on Win ([#19039](https://github.com/netdata/netdata/issues/19039))
1721 +- Fix(go.d/nvidia_smi): disable loop mode on Win ([#19040](https://github.com/netdata/netdata/issues/19040))
1722 +- Add Custom Actions (Installer) ([#19041](https://github.com/netdata/netdata/issues/19041))
1723 +- Add a special version number to bypass alert snapshots ([#19042](https://github.com/netdata/netdata/issues/19042))
1724 +- Capitalize the word "cloud" ([#19043](https://github.com/netdata/netdata/issues/19043))
1725 +- Capitalize the word "Agent" ([#19044](https://github.com/netdata/netdata/issues/19044))
1726 +- Regenerate integrations.js ([#19045](https://github.com/netdata/netdata/issues/19045))
1727 +- Feat(go.d/pkg/web): add "force_http2" option ([#19047](https://github.com/netdata/netdata/issues/19047))
1728 +- Regenerate integrations.js ([#19048](https://github.com/netdata/netdata/issues/19048))
1729 +- Fix MSSQL algorithm (Windows.plugin) ([#19035](https://github.com/netdata/netdata/issues/19035))
1730 +- Fix(go.d/pkg/web): correct close idle connections ([#19052](https://github.com/netdata/netdata/issues/19052))
1731 +- Update documentation about our native package repos. ([#19049](https://github.com/netdata/netdata/issues/19049))
1732 +- Windows doc updates ([#19054](https://github.com/netdata/netdata/issues/19054))
1733 +- Securing Agents section docs cleanup ([#19053](https://github.com/netdata/netdata/issues/19053))
1734 +- Build(deps): bump k8s.io/client-go from 0.31.2 to 0.31.3 in /src/go ([#19059](https://github.com/netdata/netdata/issues/19059))
1735 +- Build(deps): bump github.com/vmware/govmomi from 0.46.1 to 0.46.2 in /src/go ([#19058](https://github.com/netdata/netdata/issues/19058))
1736 +- Add links to mssql perflib object docs ([#19062](https://github.com/netdata/netdata/issues/19062))
1737 +- Register service to delay start ([#19063](https://github.com/netdata/netdata/issues/19063))
1738 +- Claim -> connect in docs ([#19060](https://github.com/netdata/netdata/issues/19060))
1739 +- Regenerate integrations.js ([#19065](https://github.com/netdata/netdata/issues/19065))
1740 +- Docs(systemd-journal.plugin): correct "Full-text search" ([#19066](https://github.com/netdata/netdata/issues/19066))
1741 +- Update gorilla comp internal charts family ([#19068](https://github.com/netdata/netdata/issues/19068))
1742 +- Build(deps): bump github.com/prometheus-community/pro-bing from 0.4.2-0.20241106090159-5a5f1d731cf5 to 0.5.0 in /src/go ([#19070](https://github.com/netdata/netdata/issues/19070))
1743 +- Build(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0 in /src/go ([#19069](https://github.com/netdata/netdata/issues/19069))
1744 +- Create a terminology dictionary for Netdata ([#19071](https://github.com/netdata/netdata/issues/19071))
1745 +- Collector configuration page edits ([#19072](https://github.com/netdata/netdata/issues/19072))
1746 +- RAM and CPU resource util pages ([#19074](https://github.com/netdata/netdata/issues/19074))
1747 +- Database docs edits ([#19075](https://github.com/netdata/netdata/issues/19075))
1748 +- Remove Go windows integration ([#19078](https://github.com/netdata/netdata/issues/19078))
1749 +- Regenerate integrations.js ([#19079](https://github.com/netdata/netdata/issues/19079))
1750 +- Split database overview and configuration reference ([#19077](https://github.com/netdata/netdata/issues/19077))
1751 +- Chore(go.d.plugin): renames ([#19081](https://github.com/netdata/netdata/issues/19081))
1752 +- Update integrations gen script ([#19085](https://github.com/netdata/netdata/issues/19085))
1753 +- Regenerate integrations.js ([#19086](https://github.com/netdata/netdata/issues/19086))
1754 +- Fix(go.d/hpssa): handle HPE Smart Array line ([#19084](https://github.com/netdata/netdata/issues/19084))
1755 +- Docs: fix go.d modules rename leftovers ([#19087](https://github.com/netdata/netdata/issues/19087))
1756 +- Regenerate integrations.js ([#19088](https://github.com/netdata/netdata/issues/19088))
1757 +- Docs(systemd-journal.plugin): correct full-text search ([#19093](https://github.com/netdata/netdata/issues/19093))
1758 +- Chore(go.d.plugin): renames part 2 ([#19090](https://github.com/netdata/netdata/issues/19090))
1759 +- Collected and available metrics, instances and contexts ([#19094](https://github.com/netdata/netdata/issues/19094))
1760 +- Remove stale docs, and update links and optimization documentation ([#19089](https://github.com/netdata/netdata/issues/19089))
1761 +- Update Registry docs ([#19095](https://github.com/netdata/netdata/issues/19095))
1762 +- Reset parameter when generating an alert snapshot ([#19097](https://github.com/netdata/netdata/issues/19097))
1763 +- Use mimalloc ([#19080](https://github.com/netdata/netdata/issues/19080))
1764 +- Daemon docs edits ([#19091](https://github.com/netdata/netdata/issues/19091))
1765 +- Claiming proxy defaults and additonal log info ([#19098](https://github.com/netdata/netdata/issues/19098))
1766 +- Edit the organize doc ([#19101](https://github.com/netdata/netdata/issues/19101))
1767 +- Update connecting documentation ([#19100](https://github.com/netdata/netdata/issues/19100))
1768 +- Docs: fix img tag ([#19102](https://github.com/netdata/netdata/issues/19102))
1769 +- Chore(go.d/pkg/socket): add err to callback return values ([#19103](https://github.com/netdata/netdata/issues/19103))
1770 +- Docs edits on Cloud versions and On Prem ([#19104](https://github.com/netdata/netdata/issues/19104))
1771 +- On-prem docs edits 2 ([#19105](https://github.com/netdata/netdata/issues/19105))
1772 +- Docs: update On-Prem System Requirements ([#19107](https://github.com/netdata/netdata/issues/19107))
1773 +- Feat(proc.plugin): add Reboot Required collector ([#19109](https://github.com/netdata/netdata/issues/19109))
1774 +- Fix(proc/reboot_required): disable on non Debian-based systems ([#19110](https://github.com/netdata/netdata/issues/19110))
1775 +- Docs: format, typos, and some simplifications in `docs/` ([#19112](https://github.com/netdata/netdata/issues/19112))
1776 +- Change dim order because of colours in reboot_required ([#19111](https://github.com/netdata/netdata/issues/19111))
1777 +- Disable python.d/example ([#19114](https://github.com/netdata/netdata/issues/19114))
1778 +- Fix undefined behaviour. ([#19116](https://github.com/netdata/netdata/issues/19116))
1779 +- Disable mimalloc by default / enable explicitly if needed ([#19118](https://github.com/netdata/netdata/issues/19118))
1780 +- Change default nice level to 0 ([#19120](https://github.com/netdata/netdata/issues/19120))
1781 +- Move eBPF code from linetdata to src/collector ([#19121](https://github.com/netdata/netdata/issues/19121))
1782 +- Integrations gha, remove .js and .json files after the process ([#19125](https://github.com/netdata/netdata/issues/19125))
1783 +- Regenerate integrations docs ([#19126](https://github.com/netdata/netdata/issues/19126))
1784 +- Address installer minor issues (Windows) ([#19122](https://github.com/netdata/netdata/issues/19122))
1785 +- Reduce EBPF memory usage ([#19117](https://github.com/netdata/netdata/issues/19117))
1786 +- Avoid scanning charts for replication status ([#19124](https://github.com/netdata/netdata/issues/19124))
1787 +- Fix(system-info): change id_like and name mac -> macOS ([#19128](https://github.com/netdata/netdata/issues/19128))
1788 +- Fix(packaging): correct go linux 386 checksum ([#19127](https://github.com/netdata/netdata/issues/19127))
1789 +- Docs(windows/hyperv): add Hyper-V metadata ([#19129](https://github.com/netdata/netdata/issues/19129))
1790 +- Regenerate integrations docs ([#19131](https://github.com/netdata/netdata/issues/19131))
1791 +- Chore(windows/hyperv): small Hyper-V fixes ([#19130](https://github.com/netdata/netdata/issues/19130))
1792 +- Balance streaming parents ([#18945](https://github.com/netdata/netdata/issues/18945))
1793 +- Ci: fix build/Prepare Artifacts ([#19133](https://github.com/netdata/netdata/issues/19133))
1794 +- Docs: restructure readme intro for better readability ([#19134](https://github.com/netdata/netdata/issues/19134))
1795 +- Minor beatification of log messages ([#19135](https://github.com/netdata/netdata/issues/19135))
1796 +- Fixed bug in streaming sender read ([#19136](https://github.com/netdata/netdata/issues/19136))
1797 +- Docs: Edits in the main Netdata Cloud readme ([#19139](https://github.com/netdata/netdata/issues/19139))
1798 +- Ci: fix build/create release ([#19138](https://github.com/netdata/netdata/issues/19138))
1799 +- Docs: Plans and ACLK docs edits ([#19140](https://github.com/netdata/netdata/issues/19140))
1800 +- Docs: fix a typo in aclk readme ([#19141](https://github.com/netdata/netdata/issues/19141))
1801 +- Chore(go.d.plugin): improve function parser ([#19143](https://github.com/netdata/netdata/issues/19143))
1802 +- Modify Claim Screen (Windows Installer) ([#19132](https://github.com/netdata/netdata/issues/19132))
1803 +- Chore(go.d.plugin): simplify netdataapi pkg ([#19145](https://github.com/netdata/netdata/issues/19145))
1804 +- Chore(go.d.plugin): simplify main ([#19146](https://github.com/netdata/netdata/issues/19146))
1805 +- Build(deps): bump github.com/axiomhq/hyperloglog from 0.2.0 to 0.2.1 in /src/go ([#19151](https://github.com/netdata/netdata/issues/19151))
1806 +- Build(deps): bump golang.org/x/net from 0.31.0 to 0.32.0 in /src/go ([#19149](https://github.com/netdata/netdata/issues/19149))
1807 +- MSSQL Metadatas (windows.plugin) ([#19147](https://github.com/netdata/netdata/issues/19147))
1808 +- Regenerate integrations docs ([#19152](https://github.com/netdata/netdata/issues/19152))
1809 +- Build(deps): bump github.com/prometheus/common from 0.60.1 to 0.61.0 in /src/go ([#19148](https://github.com/netdata/netdata/issues/19148))
1810 +- Fix(go.d): unlock job files on quit/restart ([#19153](https://github.com/netdata/netdata/issues/19153))
1811 +- Fix(go.d): correct unlockall impl ([#19154](https://github.com/netdata/netdata/issues/19154))
1812 +- Fix(go.d): correct sd dir ([#19155](https://github.com/netdata/netdata/issues/19155))
1813 +- Fix(build): fix building go.d on 32bit ([#19156](https://github.com/netdata/netdata/issues/19156))
1814 +- Streaming improvements #1 ([#19137](https://github.com/netdata/netdata/issues/19137))
1815 +- NET Framework metadata (Windows.plugin Part 1) ([#19158](https://github.com/netdata/netdata/issues/19158))
1816 +- Regenerate integrations docs ([#19161](https://github.com/netdata/netdata/issues/19161))
1817 +- Docs: edit Authentication and Authorization section ([#19160](https://github.com/netdata/netdata/issues/19160))
1818 +- Docs: leftover links + changes on api-tokens.md ([#19162](https://github.com/netdata/netdata/issues/19162))
1819 +- Regenerate integrations docs ([#19164](https://github.com/netdata/netdata/issues/19164))
1820 +- Streaming improvements No 2 ([#19167](https://github.com/netdata/netdata/issues/19167))
1821 +- Add units per context to /api/v3/contexts ([#19165](https://github.com/netdata/netdata/issues/19165))
1822 +- Send quit to plugins ([#19166](https://github.com/netdata/netdata/issues/19166))
1823 +- Remove Option from Installer (Windows) ([#19159](https://github.com/netdata/netdata/issues/19159))
1824 +- Update cloud virtual host name ([#19163](https://github.com/netdata/netdata/issues/19163))
1825 +- Build(deps): bump github.com/docker/docker from 27.3.1+incompatible to 27.4.0+incompatible in /src/go ([#19172](https://github.com/netdata/netdata/issues/19172))
1826 +- Processor Metadata (Windows Plugin) ([#19171](https://github.com/netdata/netdata/issues/19171))
1827 +- Regenerate integrations docs ([#19173](https://github.com/netdata/netdata/issues/19173))
1828 +- Docs: reorder silent mode and add full pipeline command example ([#19176](https://github.com/netdata/netdata/issues/19176))
1829 +- Add Objects metadata (Windows Plugin) ([#19175](https://github.com/netdata/netdata/issues/19175))
1830 +- Regenerate integrations docs ([#19177](https://github.com/netdata/netdata/issues/19177))
1831 +- Bump repository config fetched by kickstart to latest version ([#19181](https://github.com/netdata/netdata/issues/19181))
1832 +- Chore(go.d): pass context to init/check/collect/cleanup ([#19180](https://github.com/netdata/netdata/issues/19180))
1833 +- Fixup URLs in package repo documentation to use index files. ([#19174](https://github.com/netdata/netdata/issues/19174))
1834 +- Disks Metadata (Windows plugin) ([#19182](https://github.com/netdata/netdata/issues/19182))
1835 +- Regenerate integrations docs ([#19184](https://github.com/netdata/netdata/issues/19184))
1836 +- Fix(kickstart): netdata_avail_check on Ubuntu ([#19183](https://github.com/netdata/netdata/issues/19183))
1837 +- Move dependency handling for integrations to script. ([#19185](https://github.com/netdata/netdata/issues/19185))
1838 +- Add GitHub workflow ([#18128](https://github.com/netdata/netdata/issues/18128))
1839 +- Streaming improvements No 3 ([#19168](https://github.com/netdata/netdata/issues/19168))
1840 +- Ci: fix update-website workflow ([#19187](https://github.com/netdata/netdata/issues/19187))
1841 +- Build(deps): bump golang.org/x/crypto from 0.30.0 to 0.31.0 in /src/go ([#19189](https://github.com/netdata/netdata/issues/19189))
1842 +- Docs: remove a duplicated row ([#19190](https://github.com/netdata/netdata/issues/19190))
1843 +- Rw_spinlocks: allow recursive readers, even when writers are waiting ([#19191](https://github.com/netdata/netdata/issues/19191))
1844 +- Network Metadata (Windows plugin) ([#19188](https://github.com/netdata/netdata/issues/19188))
1845 +- Regenerate integrations docs ([#19192](https://github.com/netdata/netdata/issues/19192))
1846 +- Streaming improvements No 4 ([#19186](https://github.com/netdata/netdata/issues/19186))
1847 +- Add cross-architecture build tests for Go code. ([#19195](https://github.com/netdata/netdata/issues/19195))
1848 +- Streaming Improvements No 5 ([#19193](https://github.com/netdata/netdata/issues/19193))
1849 +- Remove July arrays ([#19194](https://github.com/netdata/netdata/issues/19194))
1850 +- Streaming improvements No 6 ([#19196](https://github.com/netdata/netdata/issues/19196))
1851 +- Streaming improvements No 7 ([#19204](https://github.com/netdata/netdata/issues/19204))
1852 +- Feat(go.d.plugin): add dyncfg vnodes ([#19205](https://github.com/netdata/netdata/issues/19205))
1853 +- Dyncfg vnodes improvements ([#19207](https://github.com/netdata/netdata/issues/19207))
1854 +- Build(deps): bump k8s.io/client-go from 0.31.3 to 0.32.0 in /src/go ([#19210](https://github.com/netdata/netdata/issues/19210))
1855 +- Build(deps): bump github.com/vmware/govmomi from 0.46.2 to 0.46.3 ([#19213](https://github.com/netdata/netdata/issues/19213))
1856 +- Add dyncfg vnode option to collectors ([#19214](https://github.com/netdata/netdata/issues/19214))
1857 +- Fix: use setuid as a fallback for static builds when setcap fails for plugins ([#19215](https://github.com/netdata/netdata/issues/19215))
1858 +- Streaming improvements No 8 ([#19206](https://github.com/netdata/netdata/issues/19206))
1859 +- Remove ENABLE_H2O=1 from installer ([#19216](https://github.com/netdata/netdata/issues/19216))
1860 +- Add pcre2 dev to install-requires-packages.sh ([#19217](https://github.com/netdata/netdata/issues/19217))
1861 +- Disable h20 ([#19218](https://github.com/netdata/netdata/issues/19218))
1862 +- Removing IP address information. Bumping traefik version ([#19222](https://github.com/netdata/netdata/issues/19222))
1863 +- Add dynamic rooms docs ([#19199](https://github.com/netdata/netdata/issues/19199))
1864 +- Fix compiler warnings ([#19221](https://github.com/netdata/netdata/issues/19221))
1865 +- Fix(ml): remove logging for earch not acquired dimension ([#19226](https://github.com/netdata/netdata/issues/19226))
1866 +- Add MegaCli64 to ndsudo ([#19223](https://github.com/netdata/netdata/issues/19223))
1867 +- Ci: replace exit 1 with conditional skip in website update workflow ([#19227](https://github.com/netdata/netdata/issues/19227))
1868 +- Build(deps): bump github.com/lmittmann/tint from 1.0.5 to 1.0.6 in /src/go ([#19229](https://github.com/netdata/netdata/issues/19229))
1869 +- Fix: fix heap use after free in health ([#19228](https://github.com/netdata/netdata/issues/19228))
1870 +- Docs: split redistributed and add judy and dlib ([#19230](https://github.com/netdata/netdata/issues/19230))
1871 +- Docs: update ui 3rd party link ([#19231](https://github.com/netdata/netdata/issues/19231))
1872 +- Fix(go.d/mongodb): add missing disconnect in initClient ([#19232](https://github.com/netdata/netdata/issues/19232))
1873 +- Docs: fix win deploy command for nightly ([#19236](https://github.com/netdata/netdata/issues/19236))
1874 +- Fix memory leak ([#19233](https://github.com/netdata/netdata/issues/19233))
1875 +- Allow more threads to load contexts during startup ([#19234](https://github.com/netdata/netdata/issues/19234))
1876 +- RRDHOST system-info isolation ([#19235](https://github.com/netdata/netdata/issues/19235))
1877 +- Feat(go.d.plugin): enable dyncfg vnodes ([#19238](https://github.com/netdata/netdata/issues/19238))
1878 +- Update netdata internal metrics ctx ([#19239](https://github.com/netdata/netdata/issues/19239))
1879 +- Fix the renamed function under windows ([#19240](https://github.com/netdata/netdata/issues/19240))
1880 +- Do not call finalize on shutdown ([#19241](https://github.com/netdata/netdata/issues/19241))
1881 +- Avoid blocking waiting for an event during shutdown ([#19244](https://github.com/netdata/netdata/issues/19244))
1882 +- Chore(go.d): simplify cli is help ([#19246](https://github.com/netdata/netdata/issues/19246))
1883 +- Chore(aclk/mqtt): remove client_id len check ([#19247](https://github.com/netdata/netdata/issues/19247))
1884 +- Health transition saving optimization ([#19245](https://github.com/netdata/netdata/issues/19245))
1885 +- Use inactive memory when calculating cgroups total memory ([#19249](https://github.com/netdata/netdata/issues/19249))
1886 +- Fix static builds to ensure usability on intended baseline hardware. ([#19224](https://github.com/netdata/netdata/issues/19224))
1887 +
1888 +## [2.0.0] - 2024-11-07
1889 +
1890 +### Merged Pull Requests:
1891 +
1892 +- Remove python.d/boinc ([#18397](https://github.com/netdata/netdata/issues/18397))
1893 +- Go.d boinc ([#18398](https://github.com/netdata/netdata/issues/18398))
1894 +- Regenerate integrations.js ([#18400](https://github.com/netdata/netdata/issues/18400))
1895 +- Fix warnings in Dockerfile ([#18395](https://github.com/netdata/netdata/issues/18395))
1896 +- Go.d dnsmasqdhcp: simplify parseDHCPRangeValue ([#18401](https://github.com/netdata/netdata/issues/18401))
1897 +- Remove python.d/anomalies ([#18402](https://github.com/netdata/netdata/issues/18402))
1898 +- Remove pyyaml2 ([#18404](https://github.com/netdata/netdata/issues/18404))
1899 +- Imporve netdatacli help usage readability ([#18403](https://github.com/netdata/netdata/issues/18403))
1900 +- Fix coverity issues ([#18405](https://github.com/netdata/netdata/issues/18405))
1901 +- Kickstart: fix write_claim_config when executed as a regular user ([#18406](https://github.com/netdata/netdata/issues/18406))
1902 +- Bump google-github-actions/upload-cloud-storage from 2.1.2 to 2.1.3 ([#18407](https://github.com/netdata/netdata/issues/18407))
1903 +- Bump tj-actions/changed-files from 44 to 45 ([#18408](https://github.com/netdata/netdata/issues/18408))
1904 +- SPAWN-SERVER: re-evaluate signals even 500ms ([#18411](https://github.com/netdata/netdata/issues/18411))
1905 +- Use existing ACLK event loop for cloud queries ([#18218](https://github.com/netdata/netdata/issues/18218))
1906 +- Add "smbstatus -P" to ndsudo ([#18414](https://github.com/netdata/netdata/issues/18414))
1907 +- Remove python.d/sambsa ([#18413](https://github.com/netdata/netdata/issues/18413))
1908 +- Restore /api/v1/badge.svg ([#18416](https://github.com/netdata/netdata/issues/18416))
1909 +- Update README.md
1910 +- Add go.d samba ([#18418](https://github.com/netdata/netdata/issues/18418))
1911 +- Fix hyperlink in go.d samba meta ([#18420](https://github.com/netdata/netdata/issues/18420))
1912 +- Regenerate integrations.js ([#18421](https://github.com/netdata/netdata/issues/18421))
1913 +- Remove checks.plugin dir ([#18424](https://github.com/netdata/netdata/issues/18424))
1914 +- Reset last connected when removing stale nodes with netdatacli ([#18425](https://github.com/netdata/netdata/issues/18425))
1915 +- Vendor https://github.com/mdlayher/lmsensors ([#18427](https://github.com/netdata/netdata/issues/18427))
1916 +- Go.d lmsensors improve performance ([#18429](https://github.com/netdata/netdata/issues/18429))
1917 +- Ci fix InvalidDefaultArgInFrom warn ([#18428](https://github.com/netdata/netdata/issues/18428))
1918 +- ACLK code cleanup ([#18417](https://github.com/netdata/netdata/issues/18417))
1919 +- Go.d/sensors: add sysfs scan method to collect metrics ([#18431](https://github.com/netdata/netdata/issues/18431))
1920 +- Remove charts.d/sensors ([#18426](https://github.com/netdata/netdata/issues/18426))
1921 +- Regenerate integrations.js ([#18432](https://github.com/netdata/netdata/issues/18432))
1922 +- Go.d remove duplicates in testing ([#18435](https://github.com/netdata/netdata/issues/18435))
1923 +- Stream paths propagated to children and parents ([#18430](https://github.com/netdata/netdata/issues/18430))
1924 +- Improve agent shutdown time ([#18434](https://github.com/netdata/netdata/issues/18434))
1925 +- Remove deadlock from sender ([#18438](https://github.com/netdata/netdata/issues/18438))
1926 +- Fix charts.d/sensors leftovers ([#18439](https://github.com/netdata/netdata/issues/18439))
1927 +- Fix receiver deadlock ([#18440](https://github.com/netdata/netdata/issues/18440))
1928 +- Do not free the sender when the sender thread exits ([#18441](https://github.com/netdata/netdata/issues/18441))
1929 +- Claim on Windows ([#18410](https://github.com/netdata/netdata/issues/18410))
1930 +- Proper precedence when calculating time_to_evict ([#18444](https://github.com/netdata/netdata/issues/18444))
1931 +- Go.d add support for symlinked vnode config files ([#18445](https://github.com/netdata/netdata/issues/18445))
1932 +- Go.d remove vnode disable ([#18446](https://github.com/netdata/netdata/issues/18446))
1933 +- Exit slabinfo.plugin on EPIPE ([#18448](https://github.com/netdata/netdata/issues/18448))
1934 +- Go.d sensors add parsing intrusion to exec method ([#18449](https://github.com/netdata/netdata/issues/18449))
1935 +- Regenerate integrations.js ([#18450](https://github.com/netdata/netdata/issues/18450))
1936 +- Bump github.com/Masterminds/sprig/v3 from 3.2.3 to 3.3.0 in /src/go ([#18453](https://github.com/netdata/netdata/issues/18453))
1937 +- Bump github.com/prometheus/common from 0.55.0 to 0.57.0 in /src/go ([#18452](https://github.com/netdata/netdata/issues/18452))
1938 +- Bump github.com/docker/docker from 27.1.2+incompatible to 27.2.0+incompatible in /src/go ([#18451](https://github.com/netdata/netdata/issues/18451))
1939 +- Ilert Integration ([#18447](https://github.com/netdata/netdata/issues/18447))
1940 +- Regenerate integrations.js ([#18454](https://github.com/netdata/netdata/issues/18454))
1941 +- Bump github.com/likexian/whois from 1.15.4 to 1.15.5 in /src/go ([#18457](https://github.com/netdata/netdata/issues/18457))
1942 +- Bump github.com/likexian/whois-parser from 1.24.19 to 1.24.20 in /src/go ([#18456](https://github.com/netdata/netdata/issues/18456))
1943 +- Bump google-github-actions/upload-cloud-storage from 2.1.3 to 2.2.0 ([#18458](https://github.com/netdata/netdata/issues/18458))
1944 +- Netdata-claim.sh: fix parsing url arg ([#18460](https://github.com/netdata/netdata/issues/18460))
1945 +- Windows Permissions ([#18443](https://github.com/netdata/netdata/issues/18443))
1946 +- Go.d storcli: fix unmarshal driveInfo ([#18466](https://github.com/netdata/netdata/issues/18466))
1947 +- Cleanup, rename and packaging fix (Windows Codes) ([#18455](https://github.com/netdata/netdata/issues/18455))
1948 +- Fix node index in alerts ([#18469](https://github.com/netdata/netdata/issues/18469))
1949 +- Improve processing of pending alerts ([#18470](https://github.com/netdata/netdata/issues/18470))
1950 +- W1sensor collector Go implementation ([#18464](https://github.com/netdata/netdata/issues/18464))
1951 +- Check correct number of bits for LZC of XOR value. ([#18463](https://github.com/netdata/netdata/issues/18463))
1952 +- Remove w1sensor in favor of Go implementation ([#18471](https://github.com/netdata/netdata/issues/18471))
1953 +- Added version to systemd-journal info response ([#18474](https://github.com/netdata/netdata/issues/18474))
1954 +- Regenerate integrations.js ([#18473](https://github.com/netdata/netdata/issues/18473))
1955 +- Config parsers ([#17238](https://github.com/netdata/netdata/issues/17238))
1956 +- Prevent sigsegv in config-parsers ([#18476](https://github.com/netdata/netdata/issues/18476))
1957 +- Add Access-Control-Allow-Headers: x-netdata-auth ([#18477](https://github.com/netdata/netdata/issues/18477))
1958 +- Add Access-Control-Allow-Headers: x-transaction-id ([#18478](https://github.com/netdata/netdata/issues/18478))
1959 +- Added missing comma in Access-Control-Allow-Headers ([#18479](https://github.com/netdata/netdata/issues/18479))
1960 +- Regenerate integrations.js ([#18475](https://github.com/netdata/netdata/issues/18475))
1961 +- Fix win sysinfo installed ram calculation ([#18482](https://github.com/netdata/netdata/issues/18482))
1962 +- Update LIbbpf ([#18480](https://github.com/netdata/netdata/issues/18480))
1963 +- Bump golang.org/x/text from 0.17.0 to 0.18.0 in /src/go ([#18486](https://github.com/netdata/netdata/issues/18486))
1964 +- Bump github.com/prometheus/common from 0.57.0 to 0.58.0 in /src/go ([#18487](https://github.com/netdata/netdata/issues/18487))
1965 +- Remove Warnings (ebpf) ([#18484](https://github.com/netdata/netdata/issues/18484))
1966 +- Improve processing on removed alerts after agent restart ([#18488](https://github.com/netdata/netdata/issues/18488))
1967 +- Remove charts.d/apcupsd ([#18481](https://github.com/netdata/netdata/issues/18481))
1968 +- Add go.d/apcupsd ([#18489](https://github.com/netdata/netdata/issues/18489))
1969 +- Regenerate integrations.js ([#18493](https://github.com/netdata/netdata/issues/18493))
1970 +- Bump github.com/jackc/pgx/v5 from 5.6.0 to 5.7.0 in /src/go ([#18498](https://github.com/netdata/netdata/issues/18498))
1971 +- Bump github.com/prometheus/common from 0.58.0 to 0.59.1 in /src/go ([#18497](https://github.com/netdata/netdata/issues/18497))
1972 +- Bump golang.org/x/net from 0.28.0 to 0.29.0 in /src/go ([#18496](https://github.com/netdata/netdata/issues/18496))
1973 +- Bump peter-evans/create-pull-request from 6 to 7 ([#18495](https://github.com/netdata/netdata/issues/18495))
1974 +- Bump github.com/docker/docker from 27.2.0+incompatible to 27.2.1+incompatible in /src/go ([#18502](https://github.com/netdata/netdata/issues/18502))
1975 +- Add varnishstat and varnishadm to ndsudo ([#18503](https://github.com/netdata/netdata/issues/18503))
1976 +- Remove python.d/varnish ([#18499](https://github.com/netdata/netdata/issues/18499))
1977 +- Server dashboard v3 static files, when available ([#18507](https://github.com/netdata/netdata/issues/18507))
1978 +- Varnish collector Go implementation ([#18491](https://github.com/netdata/netdata/issues/18491))
1979 +- Regenerate integrations.js ([#18508](https://github.com/netdata/netdata/issues/18508))
1980 +- Go.d add function to execute a command inside a Docker container ([#18509](https://github.com/netdata/netdata/issues/18509))
1981 +- Go.d/varnish: add docker support ([#18512](https://github.com/netdata/netdata/issues/18512))
1982 +- Go.d/varnish update meta ([#18516](https://github.com/netdata/netdata/issues/18516))
1983 +- Go.d update redis lib to v9 ([#18513](https://github.com/netdata/netdata/issues/18513))
1984 +- Bump github.com/jackc/pgx/v5 from 5.7.0 to 5.7.1 in /src/go ([#18515](https://github.com/netdata/netdata/issues/18515))
1985 +- Regenerate integrations.js ([#18517](https://github.com/netdata/netdata/issues/18517))
1986 +- [WIP] Windows-Events Logs Explorer ([#18483](https://github.com/netdata/netdata/issues/18483))
1987 +- Improve netdatacli docs ([#18518](https://github.com/netdata/netdata/issues/18518))
1988 +- Remove save-database from netdatacli usage ([#18519](https://github.com/netdata/netdata/issues/18519))
1989 +- Go.d/snmp: add an option to automatically create vnode ([#18520](https://github.com/netdata/netdata/issues/18520))
1990 +- Regenerate integrations.js ([#18522](https://github.com/netdata/netdata/issues/18522))
1991 +- Windows Events: recalculate the length of unicode strings returned every time ([#18525](https://github.com/netdata/netdata/issues/18525))
1992 +- Go.d snmp add private enterprise numbers mapping ([#18523](https://github.com/netdata/netdata/issues/18523))
1993 +- Go.d snmp: add sys descr, contact and loc as host labels for vnode ([#18527](https://github.com/netdata/netdata/issues/18527))
1994 +- Go.d/snmp: add "organization" label (vnode) ([#18529](https://github.com/netdata/netdata/issues/18529))
1995 +- Go.d snmp handle multiline sysDescr ([#18530](https://github.com/netdata/netdata/issues/18530))
1996 +- Go.d add vnode guid validation ([#18531](https://github.com/netdata/netdata/issues/18531))
1997 +- Bump github.com/vmware/govmomi from 0.42.0 to 0.43.0 in /src/go ([#18532](https://github.com/netdata/netdata/issues/18532))
1998 +- Go.d snmp fix vnode host labels ([#18534](https://github.com/netdata/netdata/issues/18534))
1999 +- Go.d snmp change label name organization->vendor ([#18535](https://github.com/netdata/netdata/issues/18535))
2000 +- Windows Plugin Metrics (Thermal and Memory) ([#18494](https://github.com/netdata/netdata/issues/18494))
2001 +- Add typesense to apps_groups.conf ([#18537](https://github.com/netdata/netdata/issues/18537))
2002 +- Go.d add typesense collector ([#18538](https://github.com/netdata/netdata/issues/18538))
2003 +- Go.d typesense: fix name in meta ([#18542](https://github.com/netdata/netdata/issues/18542))
2004 +- Regenerate integrations.js ([#18543](https://github.com/netdata/netdata/issues/18543))
2005 +- Go.d fix duplicate closeBody func ([#18544](https://github.com/netdata/netdata/issues/18544))
2006 +- Go.d pkg web renames ([#18545](https://github.com/netdata/netdata/issues/18545))
2007 +- Bump k8s.io/client-go from 0.31.0 to 0.31.1 in /src/go ([#18549](https://github.com/netdata/netdata/issues/18549))
2008 +- Go.d move doing http req logic to web ([#18546](https://github.com/netdata/netdata/issues/18546))
2009 +- Go.d fix Goland code inspection warnings ([#18552](https://github.com/netdata/netdata/issues/18552))
2010 +- Fix some docs issues ([#18553](https://github.com/netdata/netdata/issues/18553))
2011 +- Add go.d/nginxunit ([#18554](https://github.com/netdata/netdata/issues/18554))
2012 +- Go.d fix typesense/nginxunit meta ([#18556](https://github.com/netdata/netdata/issues/18556))
2013 +- Regenerate integrations.js ([#18558](https://github.com/netdata/netdata/issues/18558))
2014 +- Add nginx unit to apps_groups.conf ([#18557](https://github.com/netdata/netdata/issues/18557))
2015 +- Go.d/prometheus: add label_prefix config option ([#18559](https://github.com/netdata/netdata/issues/18559))
2016 +- Regenerate integrations.js ([#18560](https://github.com/netdata/netdata/issues/18560))
2017 +- Misc code cleanup ([#18540](https://github.com/netdata/netdata/issues/18540))
2018 +- Go.d rename example => testrandom ([#18561](https://github.com/netdata/netdata/issues/18561))
2019 +- Fetch metadata by hash for DEB repos. ([#18536](https://github.com/netdata/netdata/issues/18536))
2020 +- Assorted build cleanup for external data collection plugins. ([#18501](https://github.com/netdata/netdata/issues/18501))
2021 +- Add charts for TCPv4/TCPV6/ICMP errors in windows ([#18526](https://github.com/netdata/netdata/issues/18526))
2022 +- Windows Events Improvements 1 ([#18528](https://github.com/netdata/netdata/issues/18528))
2023 +- Add cpu model to host labels ([#18562](https://github.com/netdata/netdata/issues/18562))
2024 +- Windows Events Improvements 2 ([#18563](https://github.com/netdata/netdata/issues/18563))
2025 +- Windows Events Log Explorer improvements 3 ([#18564](https://github.com/netdata/netdata/issues/18564))
2026 +- Go.d sd docker: remove unnecessary info message ([#18570](https://github.com/netdata/netdata/issues/18570))
2027 +- Go.d/portcheck: add UDP support ([#18569](https://github.com/netdata/netdata/issues/18569))
2028 +- Windows Events Log improvements 4 ([#18567](https://github.com/netdata/netdata/issues/18567))
2029 +- Regenerate integrations.js ([#18571](https://github.com/netdata/netdata/issues/18571))
2030 +- Go.d portcheck update meta ([#18573](https://github.com/netdata/netdata/issues/18573))
2031 +- Regenerate integrations.js ([#18574](https://github.com/netdata/netdata/issues/18574))
2032 +- Go.d/portcheck schema add tabs ([#18575](https://github.com/netdata/netdata/issues/18575))
2033 +- Regenerate integrations.js ([#18576](https://github.com/netdata/netdata/issues/18576))
2034 +- Go.d/portcheck: update status duration calculation ([#18577](https://github.com/netdata/netdata/issues/18577))
2035 +- WEIGHTS: use node_id when available, otherwise host_id ([#18579](https://github.com/netdata/netdata/issues/18579))
2036 +- Reduce connection timeout and fallback to IPV4 for ACLK connections ([#18568](https://github.com/netdata/netdata/issues/18568))
2037 +- Go.d move packages ([#18580](https://github.com/netdata/netdata/issues/18580))
2038 +- Bump go.mongodb.org/mongo-driver from 1.16.1 to 1.17.0 in /src/go ([#18589](https://github.com/netdata/netdata/issues/18589))
2039 +- Bump github.com/docker/docker from 27.2.1+incompatible to 27.3.0+incompatible in /src/go ([#18588](https://github.com/netdata/netdata/issues/18588))
2040 +- Update kickstart.sh ([#18587](https://github.com/netdata/netdata/issues/18587))
2041 +- Go.d/sensors refactor ([#18581](https://github.com/netdata/netdata/issues/18581))
2042 +- Regenerate integrations.js ([#18592](https://github.com/netdata/netdata/issues/18592))
2043 +- Go.d/sensors update meta ([#18595](https://github.com/netdata/netdata/issues/18595))
2044 +- Go.d/sensors fix meta ([#18597](https://github.com/netdata/netdata/issues/18597))
2045 +- Regenerate integrations.js ([#18598](https://github.com/netdata/netdata/issues/18598))
2046 +- Bump github.com/docker/docker from 27.3.0+incompatible to 27.3.1+incompatible in /src/go ([#18600](https://github.com/netdata/netdata/issues/18600))
2047 +- Add DLLs to CmakeLists.txt ([#18590](https://github.com/netdata/netdata/issues/18590))
2048 +- Publish Windows installers on nightly builds. ([#18603](https://github.com/netdata/netdata/issues/18603))
2049 +- Add ceph commands to ndsudo ([#18583](https://github.com/netdata/netdata/issues/18583))
2050 +- WEB SERVER: retry sending data when errno is EAGAIN ([#18607](https://github.com/netdata/netdata/issues/18607))
2051 +- Correctly include Windows installer in release creation. ([#18609](https://github.com/netdata/netdata/issues/18609))
2052 +- POST Functions ([#18611](https://github.com/netdata/netdata/issues/18611))
2053 +- Feat: HW req for onprem installation. ([#18608](https://github.com/netdata/netdata/issues/18608))
2054 +- Go.d/uwsgi: don't write just connect and read ([#18618](https://github.com/netdata/netdata/issues/18618))
2055 +- Go.d/hddtemp: connect and read ([#18619](https://github.com/netdata/netdata/issues/18619))
2056 +- Revert "Add ceph commands to ndsudo" ([#18620](https://github.com/netdata/netdata/issues/18620))
2057 +- Remove python ceph collector implementation ([#18584](https://github.com/netdata/netdata/issues/18584))
2058 +- Port Ceph collector to Go ([#18582](https://github.com/netdata/netdata/issues/18582))
2059 +- Regenerate integrations.js ([#18627](https://github.com/netdata/netdata/issues/18627))
2060 +- Go.d/ceph: fix leftovers after #18582 ([#18628](https://github.com/netdata/netdata/issues/18628))
2061 +- Go.d/postgres: fix checkpoints query for postgres 17 ([#18629](https://github.com/netdata/netdata/issues/18629))
2062 +- Regenerate integrations.js ([#18630](https://github.com/netdata/netdata/issues/18630))
2063 +- Go.d pkg/socket: keep only one timeout option ([#18633](https://github.com/netdata/netdata/issues/18633))
2064 +- Go.d/smartctl: fix exit status check in scan ([#18635](https://github.com/netdata/netdata/issues/18635))
2065 +- Change default pages per extent ([#18623](https://github.com/netdata/netdata/issues/18623))
2066 +- Misc mqtt related code cleanup ([#18622](https://github.com/netdata/netdata/issues/18622))
2067 +- Remove Python OpenLDAP implementation ([#18626](https://github.com/netdata/netdata/issues/18626))
2068 +- Update file names. ([#18638](https://github.com/netdata/netdata/issues/18638))
2069 +- Move plugins.d directory outside of collectors ([#18637](https://github.com/netdata/netdata/issues/18637))
2070 +- Apps.plugin for windows ([#18594](https://github.com/netdata/netdata/issues/18594))
2071 +- Port the OpenLDAP collector from Python to Go ([#18625](https://github.com/netdata/netdata/issues/18625))
2072 +- Regenerate integrations.js ([#18647](https://github.com/netdata/netdata/issues/18647))
2073 +- Fixed freebsd cpu calculation ([#18648](https://github.com/netdata/netdata/issues/18648))
2074 +- Go.d remove duplicate chart check in tests ([#18650](https://github.com/netdata/netdata/issues/18650))
2075 +- Use temporary file for commit date check. ([#18646](https://github.com/netdata/netdata/issues/18646))
2076 +- Log agent start / stop timing events ([#18632](https://github.com/netdata/netdata/issues/18632))
2077 +- Windows Installer (Silent mode) ([#18613](https://github.com/netdata/netdata/issues/18613))
2078 +- Go.d sd fix sprig funcmap ([#18658](https://github.com/netdata/netdata/issues/18658))
2079 +- New wording about edit-config script in docs ([#18639](https://github.com/netdata/netdata/issues/18639))
2080 +- Bump go toolchain v1.22.8 ([#18659](https://github.com/netdata/netdata/issues/18659))
2081 +- Apps.plugin improvements ([#18652](https://github.com/netdata/netdata/issues/18652))
2082 +- Handle mqtt ping timeouts ([#18653](https://github.com/netdata/netdata/issues/18653))
2083 +- Fix win apps uptime ([#18662](https://github.com/netdata/netdata/issues/18662))
2084 +- Docs directory lint documentation and fix issues ([#18660](https://github.com/netdata/netdata/issues/18660))
2085 +- Docs lint on `packaging/` dir ([#18665](https://github.com/netdata/netdata/issues/18665))
2086 +- Remove python implementation of oracledb ([#18651](https://github.com/netdata/netdata/issues/18651))
2087 +- Apps_groups.conf: add oracledb ([#18666](https://github.com/netdata/netdata/issues/18666))
2088 +- Regenerate integrations.js ([#18667](https://github.com/netdata/netdata/issues/18667))
2089 +- Remove section in python plugin readme ([#18669](https://github.com/netdata/netdata/issues/18669))
2090 +- Windows.plugin (IIS) ([#18566](https://github.com/netdata/netdata/issues/18566))
2091 +- Add go.d/oracle ([#18654](https://github.com/netdata/netdata/issues/18654))
2092 +- Regenerate integrations.js ([#18671](https://github.com/netdata/netdata/issues/18671))
2093 +- Add FAQ to SCIM integration doc ([#18664](https://github.com/netdata/netdata/issues/18664))
2094 +- Src dir docs pass ([#18670](https://github.com/netdata/netdata/issues/18670))
2095 +- Regenerate integrations.js ([#18672](https://github.com/netdata/netdata/issues/18672))
2096 +- Adjust content api/v1/info (Windows) ([#18656](https://github.com/netdata/netdata/issues/18656))
2097 +- Properly set start/shutdown times to parent/child ([#18668](https://github.com/netdata/netdata/issues/18668))
2098 +- Apps plugin improvements2 ([#18673](https://github.com/netdata/netdata/issues/18673))
2099 +- Go.d downgrade go-ora to v2.8.20 ([#18677](https://github.com/netdata/netdata/issues/18677))
2100 +- Bump github.com/tidwall/gjson from 1.17.3 to 1.18.0 in /src/go ([#18681](https://github.com/netdata/netdata/issues/18681))
2101 +- Bump github.com/prometheus/common from 0.59.1 to 0.60.0 in /src/go ([#18680](https://github.com/netdata/netdata/issues/18680))
2102 +- Docs fixes ([#18676](https://github.com/netdata/netdata/issues/18676))
2103 +- Bump go.mongodb.org/mongo-driver from 1.17.0 to 1.17.1 in /src/go ([#18679](https://github.com/netdata/netdata/issues/18679))
2104 +- Regenerate integrations.js ([#18682](https://github.com/netdata/netdata/issues/18682))
2105 +- Embed CPU architecture info in Windows installer filename. ([#18661](https://github.com/netdata/netdata/issues/18661))
2106 +- Go.d/chrony: collect serverstats using chronyc ([#18685](https://github.com/netdata/netdata/issues/18685))
2107 +- Regenerate integrations.js ([#18686](https://github.com/netdata/netdata/issues/18686))
2108 +- UTF8 support for chart ids, names and other metadata ([#18684](https://github.com/netdata/netdata/issues/18684))
2109 +- Fix sanitization issues ([#18687](https://github.com/netdata/netdata/issues/18687))
2110 +- Add MSSQL metrics (Part I). ([#18591](https://github.com/netdata/netdata/issues/18591))
2111 +- Send node info update after ACLK connection timeout ([#18683](https://github.com/netdata/netdata/issues/18683))
2112 +- Fix(cgroups.plugin): handle containers no env vars ([#18691](https://github.com/netdata/netdata/issues/18691))
2113 +- Go.d/nvidia_smi: use configured "timeout" in loop mode ([#18692](https://github.com/netdata/netdata/issues/18692))
2114 +- Regenerate integrations.js ([#18693](https://github.com/netdata/netdata/issues/18693))
2115 +- Cgroups.plugin: call `setresuid` before spawn server init ([#18694](https://github.com/netdata/netdata/issues/18694))
2116 +- Fix ram usage calculation in LXC ([#18695](https://github.com/netdata/netdata/issues/18695))
2117 +- Fix system-info disk space in LXC ([#18696](https://github.com/netdata/netdata/issues/18696))
2118 +- Bump golang.org/x/net from 0.29.0 to 0.30.0 in /src/go ([#18701](https://github.com/netdata/netdata/issues/18701))
2119 +- Improve apps.plugin readme ([#18705](https://github.com/netdata/netdata/issues/18705))
2120 +- Update windows documentation ([#18703](https://github.com/netdata/netdata/issues/18703))
2121 +- Feat(go.d/sensors): add a config option to update/add sensor label value ([#18707](https://github.com/netdata/netdata/issues/18707))
2122 +- Detect when swap is disabled when agent is running ([#18702](https://github.com/netdata/netdata/issues/18702))
2123 +- Fix wrong config file name in go.d/oracledb meta ([#18709](https://github.com/netdata/netdata/issues/18709))
2124 +- Regenerate integrations.js ([#18708](https://github.com/netdata/netdata/issues/18708))
2125 +- Add link to meta section on integrations template ([#18713](https://github.com/netdata/netdata/issues/18713))
2126 +- Regenerate integrations.js ([#18714](https://github.com/netdata/netdata/issues/18714))
2127 +- Add instructions to configure SCIM integration in Okta ([#18710](https://github.com/netdata/netdata/issues/18710))
2128 +- Regenerate integrations.js ([#18715](https://github.com/netdata/netdata/issues/18715))
2129 +- Go.d: use lib function to check if stderr connected to journal ([#18718](https://github.com/netdata/netdata/issues/18718))
2130 +- Add check for 64bit builtin atomics ([#18565](https://github.com/netdata/netdata/issues/18565))
2131 +- Windows Plugin metadata ([#18599](https://github.com/netdata/netdata/issues/18599))
2132 +- Fix(go.d/portcheck): stop checking UDP ports on ICMP listen error ([#18721](https://github.com/netdata/netdata/issues/18721))
2133 +- Fix logs POST query payload parsing ([#18722](https://github.com/netdata/netdata/issues/18722))
2134 +- Reset the log sources to apply user selection ([#18725](https://github.com/netdata/netdata/issues/18725))
2135 +- Apps.plugin: print also the original comm ([#18727](https://github.com/netdata/netdata/issues/18727))
2136 +- Systemd-cat-native negative timeout ([#18729](https://github.com/netdata/netdata/issues/18729))
2137 +- Pass correct GOOS and GOARCH on to package builders in CI. ([#18717](https://github.com/netdata/netdata/issues/18717))
2138 +- Windows installer (Change descriptions add helping) ([#18711](https://github.com/netdata/netdata/issues/18711))
2139 +- Fix handling of workflow artifacts. ([#18726](https://github.com/netdata/netdata/issues/18726))
2140 +- Improve windows installer ([#18649](https://github.com/netdata/netdata/issues/18649))
2141 +- Fix(perf.plugin): disable if all events disabled during init ([#18728](https://github.com/netdata/netdata/issues/18728))
2142 +- [storcli] Support for controller ROC temperature. ([#18732](https://github.com/netdata/netdata/issues/18732))
2143 +- Static install: bump openssl and curl to latest stable versions ([#18719](https://github.com/netdata/netdata/issues/18719))
2144 +- Apps.plugin; allow parents to identify the children ([#18734](https://github.com/netdata/netdata/issues/18734))
2145 +- MSSQL Metrics (Part II). ([#18689](https://github.com/netdata/netdata/issues/18689))
2146 +- Fix(go.d/sensors): fix parsing power accuracy ([#18735](https://github.com/netdata/netdata/issues/18735))
2147 +- Delay child disconnect update ([#18712](https://github.com/netdata/netdata/issues/18712))
2148 +- Windows deploy metadata ([#18733](https://github.com/netdata/netdata/issues/18733))
2149 +- Sanitizers should not remove trailing underscores ([#18738](https://github.com/netdata/netdata/issues/18738))
2150 +- Add `ilert` cloud notification integration ([#18736](https://github.com/netdata/netdata/issues/18736))
2151 +- Docs(apps.plugin): fix prefix/suffix pattern example ([#18742](https://github.com/netdata/netdata/issues/18742))
2152 +- Feat(go.d/nvme): add model_number label ([#18741](https://github.com/netdata/netdata/issues/18741))
2153 +- Regenerate integrations.js ([#18720](https://github.com/netdata/netdata/issues/18720))
2154 +- Fix(apps.plugin): fix debug msg spam on macOS/freeBSD ([#18743](https://github.com/netdata/netdata/issues/18743))
2155 +- Fix crash on agent initialization ([#18746](https://github.com/netdata/netdata/issues/18746))
2156 +- Fix issues with Cloud Notification Integrations metadata ([#18745](https://github.com/netdata/netdata/issues/18745))
2157 +- Simplify sentence on cloud notification integrations ([#18750](https://github.com/netdata/netdata/issues/18750))
2158 +- Fix(freebsd.plugin): fix sysctl arcstats.p fails on FreeBSD 14 ([#18748](https://github.com/netdata/netdata/issues/18748))
2159 +- Fix(python.d.plugin): fix plugin exit if no python found ([#18747](https://github.com/netdata/netdata/issues/18747))
2160 +- Regenerate integrations.js ([#18749](https://github.com/netdata/netdata/issues/18749))
2161 +- Remove CR (windows.plugin) ([#18737](https://github.com/netdata/netdata/issues/18737))
2162 +- Update metadata.yaml ([#18755](https://github.com/netdata/netdata/issues/18755))
2163 +- Regenerate integrations.js ([#18756](https://github.com/netdata/netdata/issues/18756))
2164 +- Add Ubuntu 24.10 and Fedora 41 to CI. ([#18753](https://github.com/netdata/netdata/issues/18753))
2165 +- Fix(go.d/sd/net_listeners): exit if local-listeners constantly times out ([#18757](https://github.com/netdata/netdata/issues/18757))
2166 +- Local-listeners without libmnl ([#18759](https://github.com/netdata/netdata/issues/18759))
2167 +- SPAWN SERVER: close all open fds on callback ([#18764](https://github.com/netdata/netdata/issues/18764))
2168 +- Fix(proc.plugin/zfs): fix arcstats.pm ([#18758](https://github.com/netdata/netdata/issues/18758))
2169 +- Adjust option (Windows claim) ([#18763](https://github.com/netdata/netdata/issues/18763))
2170 +- Bump github.com/sijms/go-ora/v2 from 2.8.20 to 2.8.22 in /src/go ([#18767](https://github.com/netdata/netdata/issues/18767))
2171 +- Bump github.com/bmatcuk/doublestar/v4 from 4.6.1 to 4.7.1 in /src/go ([#18768](https://github.com/netdata/netdata/issues/18768))
2172 +- Bump github.com/vmware/govmomi from 0.43.0 to 0.44.1 in /src/go ([#18766](https://github.com/netdata/netdata/issues/18766))
2173 +- Remove the overview section from cloud notif. integrations ([#18754](https://github.com/netdata/netdata/issues/18754))
2174 +- Regenerate integrations.js ([#18771](https://github.com/netdata/netdata/issues/18771))
2175 +- NetFramework (Part I) ([#18762](https://github.com/netdata/netdata/issues/18762))
2176 +- Fix(go.d/sd/netlisteners): fix exec deadline exceeded check ([#18774](https://github.com/netdata/netdata/issues/18774))
2177 +- Fix storing of repeat field ([#18760](https://github.com/netdata/netdata/issues/18760))
2178 +- Fix(go.d/apcupsd): fix ups_load value divided by 100 ([#18780](https://github.com/netdata/netdata/issues/18780))
2179 +- Log to windows ([#18688](https://github.com/netdata/netdata/issues/18688))
2180 +- Sqlite upgrade to version 3.46.1 ([#18772](https://github.com/netdata/netdata/issues/18772))
2181 +- Expand ml enabled option ([#18761](https://github.com/netdata/netdata/issues/18761))
2182 +- Load chart labels on demand ([#18699](https://github.com/netdata/netdata/issues/18699))
2183 +- Update README.md, fix a typo ([#18781](https://github.com/netdata/netdata/issues/18781))
2184 +- Document ML enabled `auto` ([#18784](https://github.com/netdata/netdata/issues/18784))
2185 +- Bump github.com/redis/go-redis/v9 from 9.6.1 to 9.6.2 in /src/go ([#18783](https://github.com/netdata/netdata/issues/18783))
2186 +- Fix(netdata-updater.sh): ensure `--non-interactive` flag is passed during self-update ([#18786](https://github.com/netdata/netdata/issues/18786))
2187 +- Windows Alerts Improvements ([#18785](https://github.com/netdata/netdata/issues/18785))
2188 +- Fix broken claiming via kickstart on some systems. ([#18789](https://github.com/netdata/netdata/issues/18789))
2189 +- Systemd-journal; support querying archived files ([#18792](https://github.com/netdata/netdata/issues/18792))
2190 +- Add ref to dyncfg ([#18793](https://github.com/netdata/netdata/issues/18793))
2191 +- Ιmplementation to add logs integrations ([#18791](https://github.com/netdata/netdata/issues/18791))
2192 +- Regenerate integrations.js ([#18794](https://github.com/netdata/netdata/issues/18794))
2193 +- Unify claiming response json ([#18777](https://github.com/netdata/netdata/issues/18777))
2194 +- Windows fixes (chart labels and warnings) ([#18796](https://github.com/netdata/netdata/issues/18796))
2195 +- Fix atomic builtins test that currently fails for llvm+compiler_rt when gcc is not present ([#18788](https://github.com/netdata/netdata/issues/18788))
2196 +- Schedule a node state update after context load ([#18795](https://github.com/netdata/netdata/issues/18795))
2197 +- Docs: fix grammar in readme ([#18799](https://github.com/netdata/netdata/issues/18799))
2198 +- Bugfix for logs integrations ([#18800](https://github.com/netdata/netdata/issues/18800))
2199 +- Regenerate integrations.js ([#18801](https://github.com/netdata/netdata/issues/18801))
2200 +- Feat(apps.plugin): add vernemq to apps_groups.conf ([#18802](https://github.com/netdata/netdata/issues/18802))
2201 +- Remove macOS 12 from CI, and add macOS 15. ([#18797](https://github.com/netdata/netdata/issues/18797))
2202 +- Local-listeners improvements ([#18798](https://github.com/netdata/netdata/issues/18798))
2203 +- Cgroup-network now uses its own spawn server ([#18674](https://github.com/netdata/netdata/issues/18674))
2204 +- Fix(go.d/sensors): ignore 'unknown' values ([#18806](https://github.com/netdata/netdata/issues/18806))
2205 +- Allow local-listeners to associate container sockets with pids ([#18807](https://github.com/netdata/netdata/issues/18807))
2206 +- Aesthetic changes in the code ([#18808](https://github.com/netdata/netdata/issues/18808))
2207 +- Calculate currently collected metrics ([#18803](https://github.com/netdata/netdata/issues/18803))
2208 +- Fix(proc/proc_net_dev): delay collecting all virtual interfaces ([#18812](https://github.com/netdata/netdata/issues/18812))
2209 +- Fix variable scope to prevent invalid memory access ([#18813](https://github.com/netdata/netdata/issues/18813))
2210 +- Comment out dictionary with hashtable code for now ([#18814](https://github.com/netdata/netdata/issues/18814))
2211 +- Claiming should wait for node id and status ONLINE only ([#18816](https://github.com/netdata/netdata/issues/18816))
2212 +- Revert "Fix atomic builtins test that currently fails for llvm+compiler_rt when gcc is not present" ([#18811](https://github.com/netdata/netdata/issues/18811))
2213 +- Optimizations for servers with vast amounts of sockets ([#18820](https://github.com/netdata/netdata/issues/18820))
2214 +- Windows storage metrics ([#18810](https://github.com/netdata/netdata/issues/18810))
2215 +- Fixes last PR merge ([#18821](https://github.com/netdata/netdata/issues/18821))
2216 +- Numa basic meminfo ([#18822](https://github.com/netdata/netdata/issues/18822))
2217 +- Fix compilation on windows ([#18823](https://github.com/netdata/netdata/issues/18823))
2218 +- More windows metrics ([#18824](https://github.com/netdata/netdata/issues/18824))
2219 +- Fix(go.d/vernemq)!: support prometheus namespace added in v2.0 ([#18815](https://github.com/netdata/netdata/issues/18815))
2220 +- Regenerate integrations.js ([#18826](https://github.com/netdata/netdata/issues/18826))
2221 +- Common O/S Caching Layer for users and groups ([#18825](https://github.com/netdata/netdata/issues/18825))
2222 +- Build(deps): bump github.com/redis/go-redis/v9 from 9.6.2 to 9.7.0 in /src/go ([#18828](https://github.com/netdata/netdata/issues/18828))
2223 +- Remove old obsolete check for excess data in request ([#18830](https://github.com/netdata/netdata/issues/18830))
2224 +- Add the Windows event logs integration to the meta ([#18829](https://github.com/netdata/netdata/issues/18829))
2225 +- Feat(go.d/nvidia_smi): add "index" label to GPU charts ([#18833](https://github.com/netdata/netdata/issues/18833))
2226 +- Chore(go.d/vernemq): remove unused file ([#18835](https://github.com/netdata/netdata/issues/18835))
2227 +- Regenerate integrations.js ([#18834](https://github.com/netdata/netdata/issues/18834))
2228 +- Remove RRDSET_FLAG_DETAIL. ([#18837](https://github.com/netdata/netdata/issues/18837))
2229 +- Spawn-server-nofork: invalid magic ([#18831](https://github.com/netdata/netdata/issues/18831))
2230 +- Update enterprise SSO docs ([#18836](https://github.com/netdata/netdata/issues/18836))
2231 +- Feat(go.d/vernemq): add "Queued PUBLISH Messages" chart ([#18838](https://github.com/netdata/netdata/issues/18838))
2232 +- Regenerate integrations.js ([#18839](https://github.com/netdata/netdata/issues/18839))
2233 +- Un-vendor proprietary dashboard code. ([#18437](https://github.com/netdata/netdata/issues/18437))
2234 +- Docs(web/gui): remove legacy dashboard description ([#18841](https://github.com/netdata/netdata/issues/18841))
2235 +- Silence up-to-date installation targets. ([#18842](https://github.com/netdata/netdata/issues/18842))
2236 +- Fix(packaging): fix installing libcurl_dev on FreeBSD ([#18845](https://github.com/netdata/netdata/issues/18845))
2237 +- Feat(go.d/sd/nl): make timeout and interval configurable ([#18847](https://github.com/netdata/netdata/issues/18847))
2238 +- Fix(packaging): check for sys/capability.h only on Linux ([#18849](https://github.com/netdata/netdata/issues/18849))
2239 +- Reorganize top-level headers in libnetdata. ([#18643](https://github.com/netdata/netdata/issues/18643))
2240 +- Make integration links absolute ([#18851](https://github.com/netdata/netdata/issues/18851))
2241 +- Regenerate integrations.js ([#18852](https://github.com/netdata/netdata/issues/18852))
2242 +- Do not load/save context data in RAM mode ([#18790](https://github.com/netdata/netdata/issues/18790))
2243 +- Chore(ci): print versions in check_successful_update ([#18853](https://github.com/netdata/netdata/issues/18853))
2244 +- Build(deps): bump github.com/vmware/govmomi from 0.44.1 to 0.45.0 in /src/go ([#18854](https://github.com/netdata/netdata/issues/18854))
2245 +- Feat(proc/numa): add numa node mem activity ([#18855](https://github.com/netdata/netdata/issues/18855))
2246 +- Fix(apps.plugin): add tini to Linux managers ([#18856](https://github.com/netdata/netdata/issues/18856))
2247 +- Feat(go.d.plugin): add MaxScale collector ([#18859](https://github.com/netdata/netdata/issues/18859))
2248 +- Regenerate integrations.js ([#18860](https://github.com/netdata/netdata/issues/18860))
2249 +- Do not build H2O by default. ([#18861](https://github.com/netdata/netdata/issues/18861))
2250 +- Prevent memory corruption during ACLK OTP decode ([#18863](https://github.com/netdata/netdata/issues/18863))
2251 +- Docs(go.d/ping): clarify permissions ([#18868](https://github.com/netdata/netdata/issues/18868))
2252 +- Regenerate integrations.js ([#18869](https://github.com/netdata/netdata/issues/18869))
2253 +- Fix: correct health schema typo preventing Action alert rendering. ([#18871](https://github.com/netdata/netdata/issues/18871))
2254 +- Fix corruption in expression value replacement ([#18865](https://github.com/netdata/netdata/issues/18865))
2255 +- Build(deps): bump k8s.io/client-go from 0.31.1 to 0.31.2 in /src/go ([#18873](https://github.com/netdata/netdata/issues/18873))
2256 +- Build(deps): bump github.com/prometheus/common from 0.60.0 to 0.60.1 in /src/go ([#18874](https://github.com/netdata/netdata/issues/18874))
2257 +- Build(deps): bump github.com/vmware/govmomi from 0.45.0 to 0.45.1 in /src/go ([#18872](https://github.com/netdata/netdata/issues/18872))
2258 +- Fix: correct go.d.plugin permission for source builds ([#18876](https://github.com/netdata/netdata/issues/18876))
2259 +- Include windows.h globally in libnetdata ([#18878](https://github.com/netdata/netdata/issues/18878))
2260 +- Adjust text_sanitizer to accept the default value ([#18870](https://github.com/netdata/netdata/issues/18870))
2261 +- Windows storage fixes ([#18880](https://github.com/netdata/netdata/issues/18880))
2262 +- Build(deps): bump azure/trusted-signing-action from 0.4.0 to 0.5.0 ([#18883](https://github.com/netdata/netdata/issues/18883))
2263 +- Properly sanitize prometheus names and values ([#18884](https://github.com/netdata/netdata/issues/18884))
2264 +- Fix(go.d/k8sstate): use static list of warning/terminated reasons ([#18885](https://github.com/netdata/netdata/issues/18885))
2265 +- Improvement(go.d/k8sstate): collect pod status reason ([#18887](https://github.com/netdata/netdata/issues/18887))
2266 +- Regenerate integrations.js ([#18886](https://github.com/netdata/netdata/issues/18886))
2267 +- Remove python.d/spigotmc ([#18889](https://github.com/netdata/netdata/issues/18889))
2268 +- Feat(go.d.plugin): add spigotmc collector ([#18890](https://github.com/netdata/netdata/issues/18890))
2269 +- Regenerate integrations.js ([#18891](https://github.com/netdata/netdata/issues/18891))
2270 +- Log2journal: fix config parsing memory leaks ([#18893](https://github.com/netdata/netdata/issues/18893))
2271 +- Fix coverity issues ([#18892](https://github.com/netdata/netdata/issues/18892))
2272 +- Start-stop-restart for windows, plus move info to its own file ([#18894](https://github.com/netdata/netdata/issues/18894))
2273 +- Docs edit ([#18895](https://github.com/netdata/netdata/issues/18895))
2274 +- Remove python.d/zscores ([#18897](https://github.com/netdata/netdata/issues/18897))
2275 +- Regenerate integrations.js ([#18899](https://github.com/netdata/netdata/issues/18899))
2276 +- Coverity fixes ([#18896](https://github.com/netdata/netdata/issues/18896))
2277 +- Add basis for MSI installer. ([#18787](https://github.com/netdata/netdata/issues/18787))
2278 +- Chore(go.d.plugin): add build tags to modules ([#18900](https://github.com/netdata/netdata/issues/18900))
2279 +- Regenerate integrations.js ([#18901](https://github.com/netdata/netdata/issues/18901))
2280 +- Updating Netdata docs ([#18898](https://github.com/netdata/netdata/issues/18898))
2281 +- Versioning for functions ([#18902](https://github.com/netdata/netdata/issues/18902))
2282 +- Update uninstallation docs and remove reinstallation page ([#18907](https://github.com/netdata/netdata/issues/18907))
2283 +- Uninstall docs edits ([#18908](https://github.com/netdata/netdata/issues/18908))
2284 +- Fix(debugfs/extfrag): add zone label ([#18910](https://github.com/netdata/netdata/issues/18910))
2285 +- Proc.plugin: log as info if a dir not exists ([#18909](https://github.com/netdata/netdata/issues/18909))
2286 +- Fix potential wait forever in mqtt loop ([#18913](https://github.com/netdata/netdata/issues/18913))
2287 +- Fix a potential invalid double free memory ([#18905](https://github.com/netdata/netdata/issues/18905))
2288 +- Docs: fix broken links in metadata ([#18915](https://github.com/netdata/netdata/issues/18915))
2289 +- Regenerate integrations.js ([#18917](https://github.com/netdata/netdata/issues/18917))
2290 +- Build(deps): bump github.com/fsnotify/fsnotify from 1.7.0 to 1.8.0 in /src/go ([#18920](https://github.com/netdata/netdata/issues/18920))
2291 +- Docs: fix ui license link ([#18918](https://github.com/netdata/netdata/issues/18918))
2292 +- Log2journal now uses libnetdata ([#18919](https://github.com/netdata/netdata/issues/18919))
2293 +- Go.d/portcheck: separate tabs for tcp/upd ports ([#18922](https://github.com/netdata/netdata/issues/18922))
2294 +- Add `dagster` to apps_groups.conf ([#18912](https://github.com/netdata/netdata/issues/18912))
2295 +- Docs: small fixes and pass on sizing Agents ([#18923](https://github.com/netdata/netdata/issues/18923))
2296 +- Chore(go.d/nvidia_smi): remove use_csv_format (deprecated) from config ([#18924](https://github.com/netdata/netdata/issues/18924))
2297 +- Update CI to generate MSI installer for Windows using WiX. ([#18914](https://github.com/netdata/netdata/issues/18914))
2298 +- Update Libbpf ([#18921](https://github.com/netdata/netdata/issues/18921))
2299 +- Fix release generation in build workflow.
2300 +- Add randomness per thread to heartbeat ([#18929](https://github.com/netdata/netdata/issues/18929))
2301 +- Docs: Changes to title and CPU requirements ([#18925](https://github.com/netdata/netdata/issues/18925))
2302 +- Installation section simplification ([#18911](https://github.com/netdata/netdata/issues/18911))
2303 +- Improve the documentation on removing stale nodes ([#18927](https://github.com/netdata/netdata/issues/18927))
2304 +- Regenerate integrations.js ([#18932](https://github.com/netdata/netdata/issues/18932))
2305 +- Better randomness for heartbeat ([#18930](https://github.com/netdata/netdata/issues/18930))
2306 +- Add hyper-v metrics ([#18697](https://github.com/netdata/netdata/issues/18697))
2307 +- Fix(go.d/prometheus): correct unsupported protocol scheme "file" error ([#18938](https://github.com/netdata/netdata/issues/18938))
2308 +- Improve ACLK sync CPU usage ([#18935](https://github.com/netdata/netdata/issues/18935))
2309 +- Random numbers improvements ([#18939](https://github.com/netdata/netdata/issues/18939))
2310 +- Random numbers No 3 ([#18940](https://github.com/netdata/netdata/issues/18940))
2311 +- Docs: grammar/format fixes to `docs/netdata-agent/` ([#18942](https://github.com/netdata/netdata/issues/18942))
2312 +- Streaming re-organization ([#18941](https://github.com/netdata/netdata/issues/18941))
2313 +- Switch DEB/RPM repositories to new subdomain. ([#18916](https://github.com/netdata/netdata/issues/18916))
2314 +- Hyper collector fixes ([#18934](https://github.com/netdata/netdata/issues/18934))
2315 +- Docs: fix Caddy docker compose example ([#18944](https://github.com/netdata/netdata/issues/18944))
2316 +- Fix memory leak when using libcurl ([#18947](https://github.com/netdata/netdata/issues/18947))
2317 +- Docs: add "Plugin Privileges" section ([#18946](https://github.com/netdata/netdata/issues/18946))
2318 +- Docs: simplify go.d.plugin readme ([#18949](https://github.com/netdata/netdata/issues/18949))
2319 +- Fix br elements ([#18952](https://github.com/netdata/netdata/issues/18952))
2320 +- Update README.md ([#18954](https://github.com/netdata/netdata/issues/18954))
2321 +- Chore(go.d.plugin): remove duplicate logging in init/check ([#18955](https://github.com/netdata/netdata/issues/18955))
2322 +- Build(deps): bump github.com/vmware/govmomi from 0.45.1 to 0.46.0 in /src/go ([#18959](https://github.com/netdata/netdata/issues/18959))
2323 +- Adjust max possible extent size ([#18960](https://github.com/netdata/netdata/issues/18960))
2324 +- Build(deps): update go toolchain to v1.23.3 ([#18961](https://github.com/netdata/netdata/issues/18961))
2325 +- MSI Improvements ([#18903](https://github.com/netdata/netdata/issues/18903))
2326 +- Precompile Python code on Windows. ([#18951](https://github.com/netdata/netdata/issues/18951))
2327 +- Adjust API version ([#18906](https://github.com/netdata/netdata/issues/18906))
2328 +- Include Windows artifacts for all builds, not just nightlies.
2329 +- Properly create release branch for major releases.
2330 +
2331 +## [1.99.0] - 2024-08-23
2332 +
2333 +### Merged Pull Requests:
2334 +
2335 +- WIP - Netdata v2 ([#18125](https://github.com/netdata/netdata/issues/18125))
2336 +- Bump version to v1.99.0 for v2.0 prerelease nightlies.
2337
3 -## [**Next release**](https://github.com/netdata/netdata/tree/HEAD)
4 -
5 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.7.3...HEAD)
6 -
7 -**Merged pull requests:**
8 -
9 -- Regenerate integrations docs [\#21234](https://github.com/netdata/netdata/pull/21234) ([netdatabot](https://github.com/netdatabot))
10 -- docs: improve COLLECTORS.md generation [\#21233](https://github.com/netdata/netdata/pull/21233) ([ilyam8](https://github.com/ilyam8))
11 -- build\(deps\): bump github.com/prometheus/common from 0.67.1 to 0.67.2 in /src/go [\#21232](https://github.com/netdata/netdata/pull/21232) ([dependabot[bot]](https://github.com/apps/dependabot))
12 -- build\(deps\): bump go.mongodb.org/mongo-driver from 1.17.4 to 1.17.6 in /src/go [\#21231](https://github.com/netdata/netdata/pull/21231) ([dependabot[bot]](https://github.com/apps/dependabot))
13 -- Update MCP Registry publishing workflow and migrate server.json to latest schema [\#21230](https://github.com/netdata/netdata/pull/21230) ([ilyam8](https://github.com/ilyam8))
14 -- Regenerate integrations docs [\#21229](https://github.com/netdata/netdata/pull/21229) ([netdatabot](https://github.com/netdatabot))
15 -- docs: fix COLLECTORS.md generation [\#21228](https://github.com/netdata/netdata/pull/21228) ([ilyam8](https://github.com/ilyam8))
16 -- doc: improve COLLECTORS.md generation [\#21225](https://github.com/netdata/netdata/pull/21225) ([ilyam8](https://github.com/ilyam8))
17 -- docs: improve snmp profile format documentation [\#21223](https://github.com/netdata/netdata/pull/21223) ([ilyam8](https://github.com/ilyam8))
18 -- Systemd-journal [\#21222](https://github.com/netdata/netdata/pull/21222) ([kanelatechnical](https://github.com/kanelatechnical))
19 -- active\_journal\_centralization\_guide\_no\_encryption.md [\#21221](https://github.com/netdata/netdata/pull/21221) ([kanelatechnical](https://github.com/kanelatechnical))
20 -- passive-journal-centralization-without-encryption.md [\#21220](https://github.com/netdata/netdata/pull/21220) ([kanelatechnical](https://github.com/kanelatechnical))
21 -- Charts [\#21219](https://github.com/netdata/netdata/pull/21219) ([kanelatechnical](https://github.com/kanelatechnical))
22 -- Monitor Anything [\#21217](https://github.com/netdata/netdata/pull/21217) ([kanelatechnical](https://github.com/kanelatechnical))
23 -- Dashboards and Charts [\#21216](https://github.com/netdata/netdata/pull/21216) ([kanelatechnical](https://github.com/kanelatechnical))
24 -- Events Feed [\#21215](https://github.com/netdata/netdata/pull/21215) ([kanelatechnical](https://github.com/kanelatechnical))
25 -- Add Expanded Chart Analysis doc and update map.csv [\#21213](https://github.com/netdata/netdata/pull/21213) ([kanelatechnical](https://github.com/kanelatechnical))
26 -- Regenerate integrations docs [\#21211](https://github.com/netdata/netdata/pull/21211) ([netdatabot](https://github.com/netdatabot))
27 -- docs: add snmp profile format to snmp collector doc [\#21210](https://github.com/netdata/netdata/pull/21210) ([ilyam8](https://github.com/ilyam8))
28 -- build\(deps\): bump github.com/redis/go-redis/v9 from 9.14.1 to 9.16.0 in /src/go [\#21208](https://github.com/netdata/netdata/pull/21208) ([dependabot[bot]](https://github.com/apps/dependabot))
29 -- Regenerate integrations docs [\#21205](https://github.com/netdata/netdata/pull/21205) ([netdatabot](https://github.com/netdatabot))
30 -- ibm.d: various fixes [\#21204](https://github.com/netdata/netdata/pull/21204) ([ktsaou](https://github.com/ktsaou))
31 -- Fix handling of auto updater and data files during native package removal. [\#21203](https://github.com/netdata/netdata/pull/21203) ([Ferroin](https://github.com/Ferroin))
32 -- Regenerate integrations docs [\#21202](https://github.com/netdata/netdata/pull/21202) ([netdatabot](https://github.com/netdatabot))
33 -- docs: add SNMP profile format doc [\#21201](https://github.com/netdata/netdata/pull/21201) ([ilyam8](https://github.com/ilyam8))
34 -- Acquire and release metric as needed during journal v2 migration [\#21200](https://github.com/netdata/netdata/pull/21200) ([stelfrag](https://github.com/stelfrag))
35 -- fix\(packagin/otel-plugin\): remove cap\_net\_bind\_service [\#21198](https://github.com/netdata/netdata/pull/21198) ([ilyam8](https://github.com/ilyam8))
36 -- MSSQL Small fixes \(windows.plugin\) [\#21197](https://github.com/netdata/netdata/pull/21197) ([thiagoftsm](https://github.com/thiagoftsm))
37 -- Make OpenTelemetry plugin a required dependency for native DEB/RPM packages. [\#21194](https://github.com/netdata/netdata/pull/21194) ([Ferroin](https://github.com/Ferroin))
38 -- Netdata API [\#21193](https://github.com/netdata/netdata/pull/21193) ([kanelatechnical](https://github.com/kanelatechnical))
39 -- Alerts api summary option [\#21192](https://github.com/netdata/netdata/pull/21192) ([stelfrag](https://github.com/stelfrag))
40 -- ci: remove update-website.yml workflow [\#21191](https://github.com/netdata/netdata/pull/21191) ([ilyam8](https://github.com/ilyam8))
41 -- Initialize cli earlier during agent startup [\#21188](https://github.com/netdata/netdata/pull/21188) ([stelfrag](https://github.com/stelfrag))
42 -- Prometheus - exporting metrics [\#21187](https://github.com/netdata/netdata/pull/21187) ([kanelatechnical](https://github.com/kanelatechnical))
43 -- Regenerate integrations docs [\#21185](https://github.com/netdata/netdata/pull/21185) ([netdatabot](https://github.com/netdatabot))
44 -- Calculate weights for multiple nodes in parallel [\#21184](https://github.com/netdata/netdata/pull/21184) ([stelfrag](https://github.com/stelfrag))
45 -- Fix ML concurrent dimension training [\#21183](https://github.com/netdata/netdata/pull/21183) ([stelfrag](https://github.com/stelfrag))
46 -- SQL Server Jobs \(windows.plugin\) [\#21182](https://github.com/netdata/netdata/pull/21182) ([thiagoftsm](https://github.com/thiagoftsm))
47 -- fix\(health/dyncfg\): add mising "repeat" in userconfig response [\#21181](https://github.com/netdata/netdata/pull/21181) ([ilyam8](https://github.com/ilyam8))
48 -- chore\(go.d/snmp\): refactor static\_tags to structured key/value format [\#21180](https://github.com/netdata/netdata/pull/21180) ([ilyam8](https://github.com/ilyam8))
49 -- Regenerate integrations docs [\#21179](https://github.com/netdata/netdata/pull/21179) ([netdatabot](https://github.com/netdatabot))
50 -- docs: remove ``` from cloud-notifications meta [\#21178](https://github.com/netdata/netdata/pull/21178) ([ilyam8](https://github.com/ilyam8))
51 -- Update swagger json from yaml [\#21176](https://github.com/netdata/netdata/pull/21176) ([stelfrag](https://github.com/stelfrag))
52 -- Periodic sync data on windows [\#21175](https://github.com/netdata/netdata/pull/21175) ([stelfrag](https://github.com/stelfrag))
53 -- build\(deps\): bump github.com/redis/go-redis/v9 from 9.14.0 to 9.14.1 in /src/go [\#21174](https://github.com/netdata/netdata/pull/21174) ([dependabot[bot]](https://github.com/apps/dependabot))
54 -- Fix /api/v3 data update\_every after filtering [\#21170](https://github.com/netdata/netdata/pull/21170) ([ktsaou](https://github.com/ktsaou))
55 -- docs: fix map.csv for win [\#21168](https://github.com/netdata/netdata/pull/21168) ([ilyam8](https://github.com/ilyam8))
56 -- build\(deps\): bump github.com/ibmdb/go\_ibm\_db from 0.5.3 to 0.5.4 in /src/go [\#21167](https://github.com/netdata/netdata/pull/21167) ([dependabot[bot]](https://github.com/apps/dependabot))
57 -- build\(deps\): bump github.com/ibm-messaging/mq-golang/v5 from 5.6.4 to 5.6.5 in /src/go [\#21166](https://github.com/netdata/netdata/pull/21166) ([dependabot[bot]](https://github.com/apps/dependabot))
58 -- stacktrace-common: define USE\_NOTRACE if no HAVE\_BACKTRACE [\#21165](https://github.com/netdata/netdata/pull/21165) ([clan](https://github.com/clan))
59 -- As400 part3: performance optimizations [\#21164](https://github.com/netdata/netdata/pull/21164) ([ktsaou](https://github.com/ktsaou))
60 -- Libunwind [\#21163](https://github.com/netdata/netdata/pull/21163) ([clan](https://github.com/clan))
61 -- Enable Rust-based systemd journal handling code in Docker builds. [\#21161](https://github.com/netdata/netdata/pull/21161) ([Ferroin](https://github.com/Ferroin))
62 -- Regenerate integrations docs [\#21160](https://github.com/netdata/netdata/pull/21160) ([netdatabot](https://github.com/netdatabot))
63 -- docs: update Notifications description in cloud-notifications meta [\#21159](https://github.com/netdata/netdata/pull/21159) ([ilyam8](https://github.com/ilyam8))
64 -- as400 improvements [\#21158](https://github.com/netdata/netdata/pull/21158) ([ktsaou](https://github.com/ktsaou))
65 -- Type 2 attestation added [\#21157](https://github.com/netdata/netdata/pull/21157) ([kanelatechnical](https://github.com/kanelatechnical))
66 -- Regenerate integrations docs [\#21156](https://github.com/netdata/netdata/pull/21156) ([netdatabot](https://github.com/netdatabot))
67 -- Fix feature size calculation and add error handling for KMeans training [\#21155](https://github.com/netdata/netdata/pull/21155) ([stelfrag](https://github.com/stelfrag))
68 -- Add `ServiceNow` integration [\#21154](https://github.com/netdata/netdata/pull/21154) ([car12o](https://github.com/car12o))
69 -- improvement\(go.d/mysql\): Measure redo log occupancy [\#21153](https://github.com/netdata/netdata/pull/21153) ([arkamar](https://github.com/arkamar))
70 -- Customize node name addition [\#21151](https://github.com/netdata/netdata/pull/21151) ([kanelatechnical](https://github.com/kanelatechnical))
71 -- Skip adding Sentry breadcrumb during shutdown timeout [\#21150](https://github.com/netdata/netdata/pull/21150) ([stelfrag](https://github.com/stelfrag))
72 -- Fix NaN check in anomaly score calculation [\#21149](https://github.com/netdata/netdata/pull/21149) ([stelfrag](https://github.com/stelfrag))
73 -- Additional checks during cgroup discovery [\#21148](https://github.com/netdata/netdata/pull/21148) ([stelfrag](https://github.com/stelfrag))
74 -- Fix AS400 metrics [\#21147](https://github.com/netdata/netdata/pull/21147) ([ktsaou](https://github.com/ktsaou))
75 -- Add Fedora 43 to CI and package builds. [\#21142](https://github.com/netdata/netdata/pull/21142) ([Ferroin](https://github.com/Ferroin))
76 -- chore\(go.d\): update dyncfg path [\#21141](https://github.com/netdata/netdata/pull/21141) ([ilyam8](https://github.com/ilyam8))
77 -- Skip status file on windows on crash [\#21140](https://github.com/netdata/netdata/pull/21140) ([stelfrag](https://github.com/stelfrag))
78 -- improve\(go.d/snmp\): automatically disable SNMP bulkwalk when not supported [\#21139](https://github.com/netdata/netdata/pull/21139) ([ilyam8](https://github.com/ilyam8))
79 -- build\(deps\): bump github.com/gohugoio/hashstructure from 0.5.0 to 0.6.0 in /src/go [\#21138](https://github.com/netdata/netdata/pull/21138) ([dependabot[bot]](https://github.com/apps/dependabot))
80 -- build\(deps\): bump golang.org/x/net from 0.44.0 to 0.46.0 in /src/go [\#21137](https://github.com/netdata/netdata/pull/21137) ([dependabot[bot]](https://github.com/apps/dependabot))
81 -- build\(deps\): bump github.com/docker/docker from 28.5.0+incompatible to 28.5.1+incompatible in /src/go [\#21135](https://github.com/netdata/netdata/pull/21135) ([dependabot[bot]](https://github.com/apps/dependabot))
82 -- build\(deps\): bump github.com/gofrs/flock from 0.12.1 to 0.13.0 in /src/go [\#21134](https://github.com/netdata/netdata/pull/21134) ([dependabot[bot]](https://github.com/apps/dependabot))
83 -- chore: move go.d/ibm.d shared pkgs out of go.d [\#21132](https://github.com/netdata/netdata/pull/21132) ([ilyam8](https://github.com/ilyam8))
84 -- Switch to using a relative RUNPATH for IBM plugin library lookup. [\#21131](https://github.com/netdata/netdata/pull/21131) ([Ferroin](https://github.com/Ferroin))
85 -- build: update go otel deps [\#21129](https://github.com/netdata/netdata/pull/21129) ([ilyam8](https://github.com/ilyam8))
86 -- chore: go.d/ibm.d various fixes [\#21128](https://github.com/netdata/netdata/pull/21128) ([ilyam8](https://github.com/ilyam8))
87 -- Improve agent startup on windows [\#21125](https://github.com/netdata/netdata/pull/21125) ([stelfrag](https://github.com/stelfrag))
88 -- fix\(ibm.d/mq\): change default ExponentialBackoff attempts to 2 [\#21124](https://github.com/netdata/netdata/pull/21124) ([ilyam8](https://github.com/ilyam8))
89 -- fix\(ibm.d\): various fixes [\#21123](https://github.com/netdata/netdata/pull/21123) ([ilyam8](https://github.com/ilyam8))
90 -- Update IBM plugin documentation. [\#21122](https://github.com/netdata/netdata/pull/21122) ([Ferroin](https://github.com/Ferroin))
91 -- Improve free disk space calculation for Windows [\#21121](https://github.com/netdata/netdata/pull/21121) ([stelfrag](https://github.com/stelfrag))
92 -- Fix issues with IBM libs plugin. [\#21120](https://github.com/netdata/netdata/pull/21120) ([Ferroin](https://github.com/Ferroin))
93 -- Add Windows install types and release channels doc + update map.csv [\#21119](https://github.com/netdata/netdata/pull/21119) ([kanelatechnical](https://github.com/kanelatechnical))
94 -- Make native package dependencies consistent between DEB/RPM packages. [\#21118](https://github.com/netdata/netdata/pull/21118) ([Ferroin](https://github.com/Ferroin))
95 -- Properly include client compoents for IBM MQ libraries. [\#21117](https://github.com/netdata/netdata/pull/21117) ([Ferroin](https://github.com/Ferroin))
96 -- Properly check for ODBC for IBM plugin at configuration time. [\#21116](https://github.com/netdata/netdata/pull/21116) ([Ferroin](https://github.com/Ferroin))
97 -- Fix windows build [\#21113](https://github.com/netdata/netdata/pull/21113) ([stelfrag](https://github.com/stelfrag))
98 -- Address NULL access \(windows.plugin\) [\#21112](https://github.com/netdata/netdata/pull/21112) ([thiagoftsm](https://github.com/thiagoftsm))
99 -- build\(deps\): bump github.com/prometheus/common from 0.66.1 to 0.67.1 in /src/go [\#21111](https://github.com/netdata/netdata/pull/21111) ([dependabot[bot]](https://github.com/apps/dependabot))
100 -- build\(deps\): bump github.com/ibmdb/go\_ibm\_db from 0.4.5 to 0.5.3 in /src/go [\#21110](https://github.com/netdata/netdata/pull/21110) ([dependabot[bot]](https://github.com/apps/dependabot))
101 -- Fix freeipmi crash [\#21109](https://github.com/netdata/netdata/pull/21109) ([stelfrag](https://github.com/stelfrag))
102 -- Fix invalid map.csv [\#21108](https://github.com/netdata/netdata/pull/21108) ([Ancairon](https://github.com/Ancairon))
103 -- Regenerate integrations docs [\#21106](https://github.com/netdata/netdata/pull/21106) ([netdatabot](https://github.com/netdatabot))
104 -- Update `cloud-notifications` documentation [\#21105](https://github.com/netdata/netdata/pull/21105) ([car12o](https://github.com/car12o))
105 -- improve\(go.d/snmp\): Add APC PowerNet-MIB sysObjectID mappings and categories [\#21104](https://github.com/netdata/netdata/pull/21104) ([ilyam8](https://github.com/ilyam8))
106 -- Update building-native-packages-locally.md [\#21101](https://github.com/netdata/netdata/pull/21101) ([Ferroin](https://github.com/Ferroin))
107 -- Add openSUSE Leap 16.0 and Ubuntu 25.10 to CI and package builds. [\#21100](https://github.com/netdata/netdata/pull/21100) ([Ferroin](https://github.com/Ferroin))
108 -- Improve logging and packet handling for unknown packet IDs [\#21099](https://github.com/netdata/netdata/pull/21099) ([stelfrag](https://github.com/stelfrag))
109 -- Use datafile block pos [\#21098](https://github.com/netdata/netdata/pull/21098) ([stelfrag](https://github.com/stelfrag))
110 -- fix\(packaging/docker\): add missing nd-run [\#21097](https://github.com/netdata/netdata/pull/21097) ([ilyam8](https://github.com/ilyam8))
111 -- Update installer documentation [\#21096](https://github.com/netdata/netdata/pull/21096) ([thiagoftsm](https://github.com/thiagoftsm))
112 -- build\(deps\): bump github.com/docker/docker from 28.4.0+incompatible to 28.5.0+incompatible in /src/go [\#21095](https://github.com/netdata/netdata/pull/21095) ([dependabot[bot]](https://github.com/apps/dependabot))
113 -- build\(deps\): bump github.com/go-ldap/ldap/v3 from 3.4.11 to 3.4.12 in /src/go [\#21094](https://github.com/netdata/netdata/pull/21094) ([dependabot[bot]](https://github.com/apps/dependabot))
114 -- Hide mem\_private\_usage on Windows. [\#21093](https://github.com/netdata/netdata/pull/21093) ([thiagoftsm](https://github.com/thiagoftsm))
115 -- Event loop cleanup [\#21091](https://github.com/netdata/netdata/pull/21091) ([stelfrag](https://github.com/stelfrag))
116 -- Improve installer \(Windows\) [\#21090](https://github.com/netdata/netdata/pull/21090) ([thiagoftsm](https://github.com/thiagoftsm))
117 -- Correctly split MCP registry update to it’s own workflow. [\#21089](https://github.com/netdata/netdata/pull/21089) ([Ferroin](https://github.com/Ferroin))
118 -- Register Netdata to MCP Registry [\#21088](https://github.com/netdata/netdata/pull/21088) ([ktsaou](https://github.com/ktsaou))
119 -- MCP docs and log spamming fix [\#21087](https://github.com/netdata/netdata/pull/21087) ([ktsaou](https://github.com/ktsaou))
120 -- swagger docs [\#21086](https://github.com/netdata/netdata/pull/21086) ([ktsaou](https://github.com/ktsaou))
121 -- Fix app.mem\_usage \(Windows\) [\#21085](https://github.com/netdata/netdata/pull/21085) ([thiagoftsm](https://github.com/thiagoftsm))
122 -- Fix duplicate header leak in ACLK HTTPS client [\#21084](https://github.com/netdata/netdata/pull/21084) ([ktsaou](https://github.com/ktsaou))
123 -- Adjust Disk Size \(Windows.plugin\) [\#21081](https://github.com/netdata/netdata/pull/21081) ([thiagoftsm](https://github.com/thiagoftsm))
124 -- Fix cgroup-network spawn server cleanup on fatal exit [\#21080](https://github.com/netdata/netdata/pull/21080) ([ktsaou](https://github.com/ktsaou))
125 -- Regenerate integrations docs [\#21079](https://github.com/netdata/netdata/pull/21079) ([netdatabot](https://github.com/netdatabot))
126 -- docs: update SNMP collector metadata to reflect profile-based collection [\#21078](https://github.com/netdata/netdata/pull/21078) ([ilyam8](https://github.com/ilyam8))
127 -- build\(go\): add config dirs [\#21077](https://github.com/netdata/netdata/pull/21077) ([ilyam8](https://github.com/ilyam8))
128 -- Make `nd-run` silent unless exiting with an error [\#21076](https://github.com/netdata/netdata/pull/21076) ([ilyam8](https://github.com/ilyam8))
129 -- docs: add note about using ``--init` when not running with `pid: host` [\#21075](https://github.com/netdata/netdata/pull/21075) ([ilyam8](https://github.com/ilyam8))
130 -- build\(deps\): bump openssl version in static build [\#21074](https://github.com/netdata/netdata/pull/21074) ([ilyam8](https://github.com/ilyam8))
131 -- Updated child node behaviour change [\#21073](https://github.com/netdata/netdata/pull/21073) ([kanelatechnical](https://github.com/kanelatechnical))
132 -- Declare flatten-serde-json at the workspace. [\#21072](https://github.com/netdata/netdata/pull/21072) ([vkalintiris](https://github.com/vkalintiris))
133 -- Add missing extension go.d \(Windows\) [\#21070](https://github.com/netdata/netdata/pull/21070) ([thiagoftsm](https://github.com/thiagoftsm))
134 -- Win plugin files with .plugin extension [\#21068](https://github.com/netdata/netdata/pull/21068) ([stelfrag](https://github.com/stelfrag))
135 -- Convert go collectors to use ndexec module for external command invocation [\#21067](https://github.com/netdata/netdata/pull/21067) ([Ferroin](https://github.com/Ferroin))
136 -- ibm.d.plugin: i, db2, mq, websphere [\#21066](https://github.com/netdata/netdata/pull/21066) ([ktsaou](https://github.com/ktsaou))
137 -- Regenerate integrations docs [\#21065](https://github.com/netdata/netdata/pull/21065) ([netdatabot](https://github.com/netdatabot))
138 -- feat\(go.d/snmp\): add `ping_only` option [\#21064](https://github.com/netdata/netdata/pull/21064) ([ilyam8](https://github.com/ilyam8))
139 -- chore\(go.d/ddsmp\): profile definition cleanup [\#21062](https://github.com/netdata/netdata/pull/21062) ([ilyam8](https://github.com/ilyam8))
140 -- Regenerate integrations docs [\#21058](https://github.com/netdata/netdata/pull/21058) ([netdatabot](https://github.com/netdatabot))
141 -- chore\(go.d/snmp\): remove legacy custom oid collection [\#21056](https://github.com/netdata/netdata/pull/21056) ([ilyam8](https://github.com/ilyam8))
142 -- Regenerate integrations docs [\#21055](https://github.com/netdata/netdata/pull/21055) ([netdatabot](https://github.com/netdatabot))
143 -- feat\(go.d/snmp\): enable ping by default [\#21054](https://github.com/netdata/netdata/pull/21054) ([ilyam8](https://github.com/ilyam8))
144 -- Regenerate integrations docs [\#21053](https://github.com/netdata/netdata/pull/21053) ([netdatabot](https://github.com/netdatabot))
145 -- feat\(go.d/snmp\): add optional ICMP ping metrics [\#21052](https://github.com/netdata/netdata/pull/21052) ([ilyam8](https://github.com/ilyam8))
146 -- Fix libbpf.a build path [\#21051](https://github.com/netdata/netdata/pull/21051) ([hack3ric](https://github.com/hack3ric))
147 -- improve\(go.d/rabbitmq\): add support for old RabbitMQ whoami tags format [\#21049](https://github.com/netdata/netdata/pull/21049) ([ilyam8](https://github.com/ilyam8))
148 -- ml: implement fixed time-based training windows - corrected [\#21046](https://github.com/netdata/netdata/pull/21046) ([ktsaou](https://github.com/ktsaou))
149 -- Add documentation and fallback to /host/ for getting the machine id [\#21044](https://github.com/netdata/netdata/pull/21044) ([vkalintiris](https://github.com/vkalintiris))
150 -- ai-docs [\#21043](https://github.com/netdata/netdata/pull/21043) ([shyamvalsan](https://github.com/shyamvalsan))
151 -- Remote MCP support \(streamable http and sse\) [\#21036](https://github.com/netdata/netdata/pull/21036) ([ktsaou](https://github.com/ktsaou))
152 -- CPU Temperature \(windows.plugin\) [\#20992](https://github.com/netdata/netdata/pull/20992) ([thiagoftsm](https://github.com/thiagoftsm))
153 -- Add helper to run external commands without additional privileges. [\#20990](https://github.com/netdata/netdata/pull/20990) ([Ferroin](https://github.com/Ferroin))
154 -- Windows Sensors \(Part II\) [\#20988](https://github.com/netdata/netdata/pull/20988) ([thiagoftsm](https://github.com/thiagoftsm))
155 -- Clean up handling of compiler flags in our build code. [\#20821](https://github.com/netdata/netdata/pull/20821) ([Ferroin](https://github.com/Ferroin))
156 -- Use parallelization for LTO processing to reduce build times. [\#20809](https://github.com/netdata/netdata/pull/20809) ([Ferroin](https://github.com/Ferroin))
157 -- Rework maintenance thread [\#20694](https://github.com/netdata/netdata/pull/20694) ([stelfrag](https://github.com/stelfrag))
158 -
159 -## [v2.7.3](https://github.com/netdata/netdata/tree/v2.7.3) (2025-10-28)
160 -
161 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.7.2...v2.7.3)
162 -
163 -## [v2.7.2](https://github.com/netdata/netdata/tree/v2.7.2) (2025-10-15)
164 -
165 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.7.1...v2.7.2)
166 -
167 -## [v2.7.1](https://github.com/netdata/netdata/tree/v2.7.1) (2025-09-29)
168 -
169 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.7.0...v2.7.1)
170 -
171 -## [v2.7.0](https://github.com/netdata/netdata/tree/v2.7.0) (2025-09-25)
172 -
173 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.6.3...v2.7.0)
174 -
175 -**Merged pull requests:**
176 -
177 -- Revert "ml: implement fixed time-based training windows \(\#20638\)" [\#21045](https://github.com/netdata/netdata/pull/21045) ([vkalintiris](https://github.com/vkalintiris))
178 -- chore\(go.d/ddsnmp\): Improve profile sorting by match specificity [\#21042](https://github.com/netdata/netdata/pull/21042) ([ilyam8](https://github.com/ilyam8))
179 -- Add documentation on using custom CA certificates to Learn [\#21041](https://github.com/netdata/netdata/pull/21041) ([ralphm](https://github.com/ralphm))
180 -- Context loading priority to vnodes [\#21040](https://github.com/netdata/netdata/pull/21040) ([stelfrag](https://github.com/stelfrag))
181 -- improve\(go.d/ddsnmp\): switch profile matching to `selector` [\#21039](https://github.com/netdata/netdata/pull/21039) ([ilyam8](https://github.com/ilyam8))
182 -- fix\(docs\): update mermaid diagrams leftovers plus syntax issues [\#21034](https://github.com/netdata/netdata/pull/21034) ([kanelatechnical](https://github.com/kanelatechnical))
183 -- docs: fix mdx parsing scalability.md [\#21032](https://github.com/netdata/netdata/pull/21032) ([ilyam8](https://github.com/ilyam8))
184 -- Revert "chore\(docs\): rename REST API sidebar to Netdata APIs" [\#21031](https://github.com/netdata/netdata/pull/21031) ([ilyam8](https://github.com/ilyam8))
185 -- Update scalability.md [\#21030](https://github.com/netdata/netdata/pull/21030) ([kanelatechnical](https://github.com/kanelatechnical))
186 -- chore\(docs\): rename REST API sidebar to Netdata APIs [\#21029](https://github.com/netdata/netdata/pull/21029) ([kanelatechnical](https://github.com/kanelatechnical))
187 -- Regenerate integrations docs [\#21028](https://github.com/netdata/netdata/pull/21028) ([netdatabot](https://github.com/netdatabot))
188 -- Update README.md [\#21027](https://github.com/netdata/netdata/pull/21027) ([kanelatechnical](https://github.com/kanelatechnical))
189 -- chore\(go.d/snmp\): remove/disable legacy components [\#21026](https://github.com/netdata/netdata/pull/21026) ([ilyam8](https://github.com/ilyam8))
190 -- build\(deps\): update go toolchain to v1.25.1 [\#21025](https://github.com/netdata/netdata/pull/21025) ([ilyam8](https://github.com/ilyam8))
191 -- build\(deps\): bump openssl and curl version in static build [\#21024](https://github.com/netdata/netdata/pull/21024) ([ilyam8](https://github.com/ilyam8))
192 -- improve\(go.d/snmp\): add `manual_profiles` option [\#21023](https://github.com/netdata/netdata/pull/21023) ([ilyam8](https://github.com/ilyam8))
193 -- chore\(go.d/ddsnmp\): update vmBuildGroupKey in per-row mode without group\_by [\#21022](https://github.com/netdata/netdata/pull/21022) ([ilyam8](https://github.com/ilyam8))
194 -- Fix duplicate ToC entries for Top Consumers [\#21021](https://github.com/netdata/netdata/pull/21021) ([ktsaou](https://github.com/ktsaou))
195 -- docs: Remove parentheses from Top Consumers title to fix URL issues [\#21020](https://github.com/netdata/netdata/pull/21020) ([ktsaou](https://github.com/ktsaou))
196 -- docs: Rename 'Top Monitoring' to 'Top Consumers' in Functions documentation [\#21019](https://github.com/netdata/netdata/pull/21019) ([ktsaou](https://github.com/ktsaou))
197 -- docs: Add comprehensive scalability architecture documentation [\#21018](https://github.com/netdata/netdata/pull/21018) ([ktsaou](https://github.com/ktsaou))
198 -- improve\(go.d/ddsnmp\): refactor IF-MIB profile with unified virtual metrics and 64-bit preference [\#21017](https://github.com/netdata/netdata/pull/21017) ([ilyam8](https://github.com/ilyam8))
199 -- Fix MDX parsing errors in realtime-monitoring.md [\#21016](https://github.com/netdata/netdata/pull/21016) ([ktsaou](https://github.com/ktsaou))
200 -- Fix MDX compilation errors in realtime-monitoring.md [\#21015](https://github.com/netdata/netdata/pull/21015) ([ktsaou](https://github.com/ktsaou))
201 -- chore\(go.d\): don’t log "no such file or directory" for user SNMP profiles [\#21014](https://github.com/netdata/netdata/pull/21014) ([ilyam8](https://github.com/ilyam8))
202 -- improve\(go.d/ddsnmp\): add alternatives support for virtual metrics [\#21013](https://github.com/netdata/netdata/pull/21013) ([ilyam8](https://github.com/ilyam8))
203 -- docs: Update ToC - add realtime-monitoring and reorganize functions [\#21012](https://github.com/netdata/netdata/pull/21012) ([ktsaou](https://github.com/ktsaou))
204 -- Fix Mermaid diagrams across multiple files [\#21011](https://github.com/netdata/netdata/pull/21011) ([kanelatechnical](https://github.com/kanelatechnical))
205 -- chore\(go.d/snmp\): remove recreating client on "packet is not authentic" [\#21010](https://github.com/netdata/netdata/pull/21010) ([ilyam8](https://github.com/ilyam8))
206 -- chore\(go.d\): use forked gosnmp to fix SNMPv3 REPORT handling for UniFi APs [\#21009](https://github.com/netdata/netdata/pull/21009) ([ilyam8](https://github.com/ilyam8))
207 -- fix\(go.d\): correct buf truncate in processMetrics [\#21008](https://github.com/netdata/netdata/pull/21008) ([ilyam8](https://github.com/ilyam8))
208 -- Regenerate integrations docs [\#21007](https://github.com/netdata/netdata/pull/21007) ([netdatabot](https://github.com/netdatabot))
209 -- deps\(mcp/bridge/stdio-golang\): switch to github.com/coder/websocket [\#21006](https://github.com/netdata/netdata/pull/21006) ([ilyam8](https://github.com/ilyam8))
210 -- Rework dbengine async wakeup on windows [\#21003](https://github.com/netdata/netdata/pull/21003) ([stelfrag](https://github.com/stelfrag))
211 -- Regenerate integrations docs [\#21002](https://github.com/netdata/netdata/pull/21002) ([netdatabot](https://github.com/netdatabot))
212 -- docs: add "cpu idle state" procstat config option [\#21001](https://github.com/netdata/netdata/pull/21001) ([ilyam8](https://github.com/ilyam8))
213 -- Regenerate integrations docs [\#21000](https://github.com/netdata/netdata/pull/21000) ([netdatabot](https://github.com/netdatabot))
214 -- docs: Use fallback title "Config options" when folding title is empty [\#20999](https://github.com/netdata/netdata/pull/20999) ([ilyam8](https://github.com/ilyam8))
215 -- Regenerate integrations docs [\#20998](https://github.com/netdata/netdata/pull/20998) ([netdatabot](https://github.com/netdatabot))
216 -- docs: add "per cpu core utilization" option to proc/stat meta [\#20997](https://github.com/netdata/netdata/pull/20997) ([ilyam8](https://github.com/ilyam8))
217 -- chore\(go.d\): skip HOST for vnodes during Cleanup with stale label [\#20996](https://github.com/netdata/netdata/pull/20996) ([ilyam8](https://github.com/ilyam8))
218 -- fix\(go.d\): skip writing HOST line for vnodes with no collected metrics [\#20995](https://github.com/netdata/netdata/pull/20995) ([ilyam8](https://github.com/ilyam8))
219 -- fix\(macos.plugin\): drop SyncookiesFailed metric on macOS 16+ [\#20994](https://github.com/netdata/netdata/pull/20994) ([ilyam8](https://github.com/ilyam8))
220 -- ci: rm macos 13, add macos 26 [\#20993](https://github.com/netdata/netdata/pull/20993) ([ilyam8](https://github.com/ilyam8))
221 -- Document accuracy implications of sampling algorithm [\#20991](https://github.com/netdata/netdata/pull/20991) ([ktsaou](https://github.com/ktsaou))
222 -- docs: add grouped headers to config options [\#20987](https://github.com/netdata/netdata/pull/20987) ([ilyam8](https://github.com/ilyam8))
223 -- Update welcome-to-netdata.md [\#20986](https://github.com/netdata/netdata/pull/20986) ([kanelatechnical](https://github.com/kanelatechnical))
224 -- Update best-practices.md [\#20984](https://github.com/netdata/netdata/pull/20984) ([kanelatechnical](https://github.com/kanelatechnical))
225 -- chore: refactor get\_doc\_integrations.py to use main\(\) and improve structure [\#20983](https://github.com/netdata/netdata/pull/20983) ([ilyam8](https://github.com/ilyam8))
226 -- Regenerate integrations docs [\#20982](https://github.com/netdata/netdata/pull/20982) ([netdatabot](https://github.com/netdatabot))
227 -- chore: add `-c` option to gen docs for a single collector [\#20981](https://github.com/netdata/netdata/pull/20981) ([ilyam8](https://github.com/ilyam8))
228 -- docs: improve config options table with grouped section headers [\#20980](https://github.com/netdata/netdata/pull/20980) ([ilyam8](https://github.com/ilyam8))
229 -- perf\(go.d/ddsnmp\): cache group key per aggregator per metric [\#20979](https://github.com/netdata/netdata/pull/20979) ([ilyam8](https://github.com/ilyam8))
230 -- Regenerate integrations docs [\#20978](https://github.com/netdata/netdata/pull/20978) ([netdatabot](https://github.com/netdatabot))
231 -- docs: restructure Setup, update SNMP prerequisites, and fix SNMP options [\#20977](https://github.com/netdata/netdata/pull/20977) ([ilyam8](https://github.com/ilyam8))
232 -- Regenerate integrations docs [\#20976](https://github.com/netdata/netdata/pull/20976) ([netdatabot](https://github.com/netdatabot))
233 -- docs\(go.d\): add UI configuration instructions and restructure Configuration section [\#20975](https://github.com/netdata/netdata/pull/20975) ([ilyam8](https://github.com/ilyam8))
234 -- Regenerate integrations docs [\#20973](https://github.com/netdata/netdata/pull/20973) ([netdatabot](https://github.com/netdatabot))
235 -- docs\(go.d/snmp\): remove legacy "custom oid" cfg examples [\#20972](https://github.com/netdata/netdata/pull/20972) ([ilyam8](https://github.com/ilyam8))
236 -- improve\(go.d/ddsnmp\): add per\_row mode for virtual metrics [\#20971](https://github.com/netdata/netdata/pull/20971) ([ilyam8](https://github.com/ilyam8))
237 -- improve\(go.d/ddsnmp\): add group\_by for virtual metrics [\#20970](https://github.com/netdata/netdata/pull/20970) ([ilyam8](https://github.com/ilyam8))
238 -- build\(deps\): bump k8s.io/client-go from 0.34.0 to 0.34.1 in /src/go [\#20968](https://github.com/netdata/netdata/pull/20968) ([dependabot[bot]](https://github.com/apps/dependabot))
239 -- build\(deps\): bump github.com/redis/go-redis/v9 from 9.13.0 to 9.14.0 in /src/go [\#20966](https://github.com/netdata/netdata/pull/20966) ([dependabot[bot]](https://github.com/apps/dependabot))
240 -- improve\(go.d/ddsnmp\): add composite metrics for CPU & Load Average in std-ucd-mib [\#20964](https://github.com/netdata/netdata/pull/20964) ([ilyam8](https://github.com/ilyam8))
241 -- improve\(go.d/ddsnmp\): add composite virtual metrics [\#20962](https://github.com/netdata/netdata/pull/20962) ([ilyam8](https://github.com/ilyam8))
242 -- chore\(go.d/sd/snmp\): remove skipping servers in snmp discovery [\#20960](https://github.com/netdata/netdata/pull/20960) ([ilyam8](https://github.com/ilyam8))
243 -- improve\(go.d/snmp\): add net-snmp.yaml profile [\#20959](https://github.com/netdata/netdata/pull/20959) ([ilyam8](https://github.com/ilyam8))
244 -- chore\(go.d/snmp\): remove hrStorageTable from mikrotik-router.yaml [\#20958](https://github.com/netdata/netdata/pull/20958) ([ilyam8](https://github.com/ilyam8))
245 -- improve\(go.d/snmp\): add transform for Host-Resources-MIB storage metrics [\#20957](https://github.com/netdata/netdata/pull/20957) ([ilyam8](https://github.com/ilyam8))
246 -- Ensure memory ordering when updating partition list and the bitmap [\#20956](https://github.com/netdata/netdata/pull/20956) ([stelfrag](https://github.com/stelfrag))
247 -- Fix FreeBSD \(Part II\) [\#20955](https://github.com/netdata/netdata/pull/20955) ([thiagoftsm](https://github.com/thiagoftsm))
248 -- fix\(health/rocketchat\): add missing "Content-Type: application/json" header [\#20954](https://github.com/netdata/netdata/pull/20954) ([ilyam8](https://github.com/ilyam8))
249 -- Enhance README with publishing instructions for docs [\#20952](https://github.com/netdata/netdata/pull/20952) ([Ancairon](https://github.com/Ancairon))
250 -- move whole category and fix leftovers [\#20951](https://github.com/netdata/netdata/pull/20951) ([Ancairon](https://github.com/Ancairon))
251 -- build\(deps\): bump github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6 in /src/go [\#20950](https://github.com/netdata/netdata/pull/20950) ([dependabot[bot]](https://github.com/apps/dependabot))
252 -- build\(deps\): bump golang.org/x/net from 0.43.0 to 0.44.0 in /src/go [\#20949](https://github.com/netdata/netdata/pull/20949) ([dependabot[bot]](https://github.com/apps/dependabot))
253 -- Fix use after free in metric registry [\#20947](https://github.com/netdata/netdata/pull/20947) ([stelfrag](https://github.com/stelfrag))
254 -- Update account.md [\#20946](https://github.com/netdata/netdata/pull/20946) ([kanelatechnical](https://github.com/kanelatechnical))
255 -- Add map.csv to triggers for Docs ingest workflow [\#20945](https://github.com/netdata/netdata/pull/20945) ([Ancairon](https://github.com/Ancairon))
256 -- BSD Compilation [\#20944](https://github.com/netdata/netdata/pull/20944) ([thiagoftsm](https://github.com/thiagoftsm))
257 -- Migrate the map from Learn repo to netdata/netdata [\#20942](https://github.com/netdata/netdata/pull/20942) ([Ancairon](https://github.com/Ancairon))
258 -- Replace uv mutex and condition variables with netdata equivalents [\#20941](https://github.com/netdata/netdata/pull/20941) ([stelfrag](https://github.com/stelfrag))
259 -- Update account.md [\#20940](https://github.com/netdata/netdata/pull/20940) ([Ancairon](https://github.com/Ancairon))
260 -- Add Network Labels to Windows. [\#20938](https://github.com/netdata/netdata/pull/20938) ([thiagoftsm](https://github.com/thiagoftsm))
261 -- build\(deps\): bump golang.org/x/text from 0.28.0 to 0.29.0 in /src/go [\#20937](https://github.com/netdata/netdata/pull/20937) ([dependabot[bot]](https://github.com/apps/dependabot))
262 -- chore\(go.d/pkgs/logs\): validation fixes, resource safety, and cleanup [\#20931](https://github.com/netdata/netdata/pull/20931) ([ilyam8](https://github.com/ilyam8))
263 -- build\(deps\): bump github.com/prometheus/common from 0.65.0 to 0.66.1 in /src/go [\#20930](https://github.com/netdata/netdata/pull/20930) ([dependabot[bot]](https://github.com/apps/dependabot))
264 -- build\(deps\): bump github.com/docker/docker from 28.3.3+incompatible to 28.4.0+incompatible in /src/go [\#20929](https://github.com/netdata/netdata/pull/20929) ([dependabot[bot]](https://github.com/apps/dependabot))
265 -- build\(deps\): bump github.com/redis/go-redis/v9 from 9.12.1 to 9.13.0 in /src/go [\#20928](https://github.com/netdata/netdata/pull/20928) ([dependabot[bot]](https://github.com/apps/dependabot))
266 -- Add documentation for account deletion process [\#20927](https://github.com/netdata/netdata/pull/20927) ([kanelatechnical](https://github.com/kanelatechnical))
267 -- Regenerate integrations docs [\#20925](https://github.com/netdata/netdata/pull/20925) ([netdatabot](https://github.com/netdatabot))
268 -- docs\(go.d/nginx\): improve prerequisites for NGINX collector [\#20924](https://github.com/netdata/netdata/pull/20924) ([ilyam8](https://github.com/ilyam8))
269 -- fix\(go.d/weblog\): remove path pattern validation in dyncfg [\#20923](https://github.com/netdata/netdata/pull/20923) ([ilyam8](https://github.com/ilyam8))
270 -- chore\(go.d\): remove unused resolve hostname functionality [\#20922](https://github.com/netdata/netdata/pull/20922) ([ilyam8](https://github.com/ilyam8))
271 -- Regenerate integrations docs [\#20916](https://github.com/netdata/netdata/pull/20916) ([netdatabot](https://github.com/netdatabot))
272 -- fix\(netdata-updater\): resolve "run: command not found" error in offline install [\#20915](https://github.com/netdata/netdata/pull/20915) ([ilyam8](https://github.com/ilyam8))
273 -- chore\(go.d\): add build-time configuration directory paths [\#20913](https://github.com/netdata/netdata/pull/20913) ([ilyam8](https://github.com/ilyam8))
274 -- fix\(go.d\): try rel path before checking well-known path for user and stock dirs [\#20912](https://github.com/netdata/netdata/pull/20912) ([ilyam8](https://github.com/ilyam8))
275 -- SIGNL4 Alert Notification [\#20911](https://github.com/netdata/netdata/pull/20911) ([rons4](https://github.com/rons4))
276 -- Update view-plan-and-billing.md [\#20910](https://github.com/netdata/netdata/pull/20910) ([kanelatechnical](https://github.com/kanelatechnical))
277 -- Update link for opt-out section [\#20909](https://github.com/netdata/netdata/pull/20909) ([gatesry](https://github.com/gatesry))
278 -- build\(deps\): bump k8s.io/client-go from 0.33.4 to 0.34.0 in /src/go [\#20908](https://github.com/netdata/netdata/pull/20908) ([dependabot[bot]](https://github.com/apps/dependabot))
279 -- build\(deps\): bump github.com/stretchr/testify from 1.11.0 to 1.11.1 in /src/go [\#20906](https://github.com/netdata/netdata/pull/20906) ([dependabot[bot]](https://github.com/apps/dependabot))
280 -- Fix processes function: Add PPID grouping and fix WOps typo [\#20902](https://github.com/netdata/netdata/pull/20902) ([ktsaou](https://github.com/ktsaou))
281 -- Update demo link formatting in documentation [\#20899](https://github.com/netdata/netdata/pull/20899) ([andrewm4894](https://github.com/andrewm4894))
282 -- improve\(go.d/snmp\): make snmp v3 auth and priv keys hidden in UI [\#20898](https://github.com/netdata/netdata/pull/20898) ([ilyam8](https://github.com/ilyam8))
283 -- refactor\(go.d/snmp\): recreate client on SNMPv3 "packet is not authentic" errors [\#20897](https://github.com/netdata/netdata/pull/20897) ([ilyam8](https://github.com/ilyam8))
284 -- improve\(cgroups\): skip KubeVirt helper containers in virt-launcher pods [\#20896](https://github.com/netdata/netdata/pull/20896) ([ilyam8](https://github.com/ilyam8))
285 -- improve snmp ubiquiti unifi ap model [\#20895](https://github.com/netdata/netdata/pull/20895) ([ilyam8](https://github.com/ilyam8))
286 -- Move exporting integrations to their own folder [\#20894](https://github.com/netdata/netdata/pull/20894) ([Ancairon](https://github.com/Ancairon))
287 -- Fixing Supported Linux Platforms and Versions [\#20893](https://github.com/netdata/netdata/pull/20893) ([BenjaminFosters](https://github.com/BenjaminFosters))
288 -- Change MSSQL Cleanup and Queries \(windows.plugin\) [\#20892](https://github.com/netdata/netdata/pull/20892) ([thiagoftsm](https://github.com/thiagoftsm))
289 -- improved alerting docs [\#20891](https://github.com/netdata/netdata/pull/20891) ([ktsaou](https://github.com/ktsaou))
290 -- Improve exporting documentation clarity and structure [\#20890](https://github.com/netdata/netdata/pull/20890) ([kanelatechnical](https://github.com/kanelatechnical))
291 -- improve\(go.d/snmp\): update Allied Telesis meta [\#20889](https://github.com/netdata/netdata/pull/20889) ([ilyam8](https://github.com/ilyam8))
292 -- improve\(go.d/snmp\): update Fortinet meta [\#20888](https://github.com/netdata/netdata/pull/20888) ([ilyam8](https://github.com/ilyam8))
293 -- Windows: round sleep to clock resolution to prevent sub-ms early-wake logs [\#20887](https://github.com/netdata/netdata/pull/20887) ([ktsaou](https://github.com/ktsaou))
294 -- build\(deps\): bump github.com/stretchr/testify from 1.10.0 to 1.11.0 in /src/go [\#20886](https://github.com/netdata/netdata/pull/20886) ([dependabot[bot]](https://github.com/apps/dependabot))
295 -- improve\(go.d/snmp\): add mikrotik mtxrHlProcessorTemperature [\#20885](https://github.com/netdata/netdata/pull/20885) ([ilyam8](https://github.com/ilyam8))
296 -- fix\(go.d/snmp\): handle invalid SFP temperature readings for empty slots [\#20884](https://github.com/netdata/netdata/pull/20884) ([ilyam8](https://github.com/ilyam8))
297 -- improve\(go.d/snmp\): add MikroTik type and model detection [\#20883](https://github.com/netdata/netdata/pull/20883) ([ilyam8](https://github.com/ilyam8))
298 -- improve\(go.d/snmp\): update tplink snmp meta [\#20882](https://github.com/netdata/netdata/pull/20882) ([ilyam8](https://github.com/ilyam8))
299 -- fix\(go.d\): fix goroutine leak and panic risk in Docker exec [\#20881](https://github.com/netdata/netdata/pull/20881) ([ilyam8](https://github.com/ilyam8))
300 -- improve\(go.d/snmp\): add zyxel snmp meta file [\#20879](https://github.com/netdata/netdata/pull/20879) ([ilyam8](https://github.com/ilyam8))
301 -- chore\(go.d/ddsnmp\): use plugincofng for loading profiles [\#20878](https://github.com/netdata/netdata/pull/20878) ([ilyam8](https://github.com/ilyam8))
302 -- Update libbpf to 1.6.2 [\#20875](https://github.com/netdata/netdata/pull/20875) ([thiagoftsm](https://github.com/thiagoftsm))
303 -- build\(deps\): bump github.com/coreos/go-systemd/v22 from 22.5.0 to 22.6.0 in /src/go [\#20874](https://github.com/netdata/netdata/pull/20874) ([dependabot[bot]](https://github.com/apps/dependabot))
304 -- fix\(go.d\): create vnode internal data\_collection\_status charts in the main context [\#20872](https://github.com/netdata/netdata/pull/20872) ([ilyam8](https://github.com/ilyam8))
305 -- Fix Table field comparison in SNMP collector table tests [\#20871](https://github.com/netdata/netdata/pull/20871) ([Copilot](https://github.com/apps/copilot-swe-agent))
306 -- Rename default port for the OpenTelemetry Collector [\#20868](https://github.com/netdata/netdata/pull/20868) ([ralphm](https://github.com/ralphm))
307 -- improve\(go.d/snmp\): add more entries in juniper metadata file [\#20867](https://github.com/netdata/netdata/pull/20867) ([ilyam8](https://github.com/ilyam8))
308 -- Update documentation [\#20865](https://github.com/netdata/netdata/pull/20865) ([thiagoftsm](https://github.com/thiagoftsm))
309 -- Update documentation \(Windows.plugin\) [\#20864](https://github.com/netdata/netdata/pull/20864) ([thiagoftsm](https://github.com/thiagoftsm))
310 -- chore\(go.d/snmp\): more vendor-scoped meta yaml files [\#20863](https://github.com/netdata/netdata/pull/20863) ([ilyam8](https://github.com/ilyam8))
311 -- Properly integrate Rust code checks in CI. [\#20862](https://github.com/netdata/netdata/pull/20862) ([Ferroin](https://github.com/Ferroin))
312 -- improve\(go.d/snmp\): update snmp meta copilot [\#20861](https://github.com/netdata/netdata/pull/20861) ([ilyam8](https://github.com/ilyam8))
313 -- Handle virtual host disconnection [\#20860](https://github.com/netdata/netdata/pull/20860) ([stelfrag](https://github.com/stelfrag))
314 -- Add cargo lock file. [\#20855](https://github.com/netdata/netdata/pull/20855) ([vkalintiris](https://github.com/vkalintiris))
315 -- build\(deps\): bump github.com/vmware/govmomi from 0.51.0 to 0.52.0 in /src/go [\#20852](https://github.com/netdata/netdata/pull/20852) ([dependabot[bot]](https://github.com/apps/dependabot))
316 -- Add build-time check to reject known bad compiler flags. [\#20851](https://github.com/netdata/netdata/pull/20851) ([Ferroin](https://github.com/Ferroin))
317 -- ci: bump GoTestTools/gotestfmt-action version [\#20850](https://github.com/netdata/netdata/pull/20850) ([ilyam8](https://github.com/ilyam8))
318 -- Revert "Revert "Switch to a Debian 13 base for our Docker images."" [\#20848](https://github.com/netdata/netdata/pull/20848) ([ilyam8](https://github.com/ilyam8))
319 -- ci: fix docker-test.sh handling to fail on error [\#20847](https://github.com/netdata/netdata/pull/20847) ([ilyam8](https://github.com/ilyam8))
320 -- Do not set virtual host flag on agent restart [\#20845](https://github.com/netdata/netdata/pull/20845) ([stelfrag](https://github.com/stelfrag))
321 -- improve\(go.d/snmp\): update h3c categories in snmp meta [\#20844](https://github.com/netdata/netdata/pull/20844) ([ilyam8](https://github.com/ilyam8))
322 -- Revert "Switch to a Debian 13 base for our Docker images." [\#20842](https://github.com/netdata/netdata/pull/20842) ([stelfrag](https://github.com/stelfrag))
323 -- Store virtual host labels [\#20841](https://github.com/netdata/netdata/pull/20841) ([stelfrag](https://github.com/stelfrag))
324 -- Windows Plugin \(Sensors\) [\#20840](https://github.com/netdata/netdata/pull/20840) ([thiagoftsm](https://github.com/thiagoftsm))
325 -- improve\(go.d/snmp\): update netgear/dlink category in snmp meta [\#20839](https://github.com/netdata/netdata/pull/20839) ([ilyam8](https://github.com/ilyam8))
326 -- Improve ACLK message parsing [\#20838](https://github.com/netdata/netdata/pull/20838) ([stelfrag](https://github.com/stelfrag))
327 -- chore\(go.d/snmp\): load & merge per-vendor SNMP metadata overrides [\#20837](https://github.com/netdata/netdata/pull/20837) ([ilyam8](https://github.com/ilyam8))
328 -- Use atomics for mqtt statistics [\#20836](https://github.com/netdata/netdata/pull/20836) ([stelfrag](https://github.com/stelfrag))
329 -- chore\(go.d/snmp\): update category of h3c devices in meta\_overrides.yaml [\#20835](https://github.com/netdata/netdata/pull/20835) ([ilyam8](https://github.com/ilyam8))
330 -- Mqtt adjust buffer size [\#20834](https://github.com/netdata/netdata/pull/20834) ([stelfrag](https://github.com/stelfrag))
331 -- chore\(go.d/snmp\): merge sysObjectIDs.json into meta\_overrides.yaml [\#20831](https://github.com/netdata/netdata/pull/20831) ([ilyam8](https://github.com/ilyam8))
332 -- improve\(go.d/snmp\): add more models to meta\_overrides.yaml [\#20830](https://github.com/netdata/netdata/pull/20830) ([ilyam8](https://github.com/ilyam8))
333 -- updated logging documentation and added natural siem integration [\#20829](https://github.com/netdata/netdata/pull/20829) ([ktsaou](https://github.com/ktsaou))
334 -- feat\(go.d/snmp\): add YAML overrides for sysobjectids mapping [\#20828](https://github.com/netdata/netdata/pull/20828) ([ilyam8](https://github.com/ilyam8))
335 -- refactor\(go.d\): move nd directories to dedicated pluginconfig package [\#20827](https://github.com/netdata/netdata/pull/20827) ([ilyam8](https://github.com/ilyam8))
336 -- build\(deps\): bump k8s.io/client-go from 0.33.3 to 0.33.4 in /src/go [\#20826](https://github.com/netdata/netdata/pull/20826) ([dependabot[bot]](https://github.com/apps/dependabot))
337 -- Kickstarter Fix for DNF5 System [\#20823](https://github.com/netdata/netdata/pull/20823) ([BenjaminFosters](https://github.com/BenjaminFosters))
338 -- Add ACLK buffer usage metrics [\#20820](https://github.com/netdata/netdata/pull/20820) ([stelfrag](https://github.com/stelfrag))
339 -- fix\(go.d/ddsnmp\): correct profile matching, metadata precedence, and OID handling [\#20819](https://github.com/netdata/netdata/pull/20819) ([ilyam8](https://github.com/ilyam8))
340 -- Regenerate integrations docs [\#20818](https://github.com/netdata/netdata/pull/20818) ([netdatabot](https://github.com/netdatabot))
341 -- Switch to a Debian 13 base for our Docker images. [\#20816](https://github.com/netdata/netdata/pull/20816) ([Ferroin](https://github.com/Ferroin))
342 -- Fix Charts \(windows.plugin\) [\#20815](https://github.com/netdata/netdata/pull/20815) ([thiagoftsm](https://github.com/thiagoftsm))
343 -- fix\(go.d/ddsnmp\): fix match\_pattern regex behavior in metadata and metric collection [\#20814](https://github.com/netdata/netdata/pull/20814) ([ilyam8](https://github.com/ilyam8))
344 -- improve\(go.d/snmp\): optimize Check\(\) to avoid heavy collection [\#20813](https://github.com/netdata/netdata/pull/20813) ([ilyam8](https://github.com/ilyam8))
345 -- Render latency chart if ACLK online [\#20811](https://github.com/netdata/netdata/pull/20811) ([stelfrag](https://github.com/stelfrag))
346 -- Monitor memory reclamation and buffer compact [\#20810](https://github.com/netdata/netdata/pull/20810) ([stelfrag](https://github.com/stelfrag))
347 -- Clear packet id when processed from PUBACK [\#20808](https://github.com/netdata/netdata/pull/20808) ([stelfrag](https://github.com/stelfrag))
348 -- improve\(go.d/zfspool\): add Ubuntu zpool binary path to config [\#20806](https://github.com/netdata/netdata/pull/20806) ([ilyam8](https://github.com/ilyam8))
349 -- feat\(go.d/snmp\): add SNMP sysObjectID mappings for device identification [\#20805](https://github.com/netdata/netdata/pull/20805) ([ilyam8](https://github.com/ilyam8))
350 -- build\(deps\): bump github.com/redis/go-redis/v9 from 9.12.0 to 9.12.1 in /src/go [\#20804](https://github.com/netdata/netdata/pull/20804) ([dependabot[bot]](https://github.com/apps/dependabot))
351 -- feat\(go.d/ddsnmp\): sysobjectid-based metadata override support for SNMP profiles [\#20803](https://github.com/netdata/netdata/pull/20803) ([ilyam8](https://github.com/ilyam8))
352 -- feat\(aclk\): Add detailed pulse metrics for ACLK telemetry [\#20802](https://github.com/netdata/netdata/pull/20802) ([ktsaou](https://github.com/ktsaou))
353 -- fix pathvalidate non unix [\#20801](https://github.com/netdata/netdata/pull/20801) ([ilyam8](https://github.com/ilyam8))
354 -- Fix ping latency calculation [\#20800](https://github.com/netdata/netdata/pull/20800) ([stelfrag](https://github.com/stelfrag))
355 -- fix\(go.d\): resolve potential toctou vulnerability in binary path validation [\#20798](https://github.com/netdata/netdata/pull/20798) ([ilyam8](https://github.com/ilyam8))
356 -- build\(deps\): bump golang.org/x/net from 0.42.0 to 0.43.0 in /src/go [\#20796](https://github.com/netdata/netdata/pull/20796) ([dependabot[bot]](https://github.com/apps/dependabot))
357 -- build\(deps\): bump github.com/redis/go-redis/v9 from 9.11.0 to 9.12.0 in /src/go [\#20794](https://github.com/netdata/netdata/pull/20794) ([dependabot[bot]](https://github.com/apps/dependabot))
358 -- ci: handle boolean values in EOL API responses for newly released distros [\#20792](https://github.com/netdata/netdata/pull/20792) ([ilyam8](https://github.com/ilyam8))
359 -- Update sqlite to version 3.50.4 [\#20791](https://github.com/netdata/netdata/pull/20791) ([stelfrag](https://github.com/stelfrag))
360 -- Add more MSSQL metrics \(windows.plugin\) [\#20788](https://github.com/netdata/netdata/pull/20788) ([thiagoftsm](https://github.com/thiagoftsm))
361 -- feat\(go.d/ddsnmp\): add MultiValue for state metrics and aggregation [\#20787](https://github.com/netdata/netdata/pull/20787) ([ilyam8](https://github.com/ilyam8))
362 -- feat\(go.d/ddsnmp\): add metric aggregation support for SNMP profiles [\#20786](https://github.com/netdata/netdata/pull/20786) ([ilyam8](https://github.com/ilyam8))
363 -- fix\(go.d/ddsnmp\): respect metric tag order from profile definition [\#20784](https://github.com/netdata/netdata/pull/20784) ([ilyam8](https://github.com/ilyam8))
364 -- Regenerate integrations docs [\#20783](https://github.com/netdata/netdata/pull/20783) ([netdatabot](https://github.com/netdatabot))
365 -- docs\(go.d/mysql\): add MariaDB 10.5.9+ SLAVE MONITOR privilege [\#20782](https://github.com/netdata/netdata/pull/20782) ([ilyam8](https://github.com/ilyam8))
366 -- Regenerate integrations docs [\#20781](https://github.com/netdata/netdata/pull/20781) ([netdatabot](https://github.com/netdatabot))
367 -- docs\(go.d/memcached\): add UNIX socket access prerequisite [\#20780](https://github.com/netdata/netdata/pull/20780) ([ilyam8](https://github.com/ilyam8))
368 -- Virtual node version adjustment [\#20777](https://github.com/netdata/netdata/pull/20777) ([stelfrag](https://github.com/stelfrag))
369 -- Add Debian 13 to CI and package builds. [\#20776](https://github.com/netdata/netdata/pull/20776) ([Ferroin](https://github.com/Ferroin))
370 -- Aclk improvements [\#20775](https://github.com/netdata/netdata/pull/20775) ([stelfrag](https://github.com/stelfrag))
371 -- Fix MSSQL Charts [\#20774](https://github.com/netdata/netdata/pull/20774) ([thiagoftsm](https://github.com/thiagoftsm))
372 -- Update machine-learning-and-assisted-troubleshooting.md [\#20772](https://github.com/netdata/netdata/pull/20772) ([kanelatechnical](https://github.com/kanelatechnical))
373 -- Regenerate integrations docs [\#20771](https://github.com/netdata/netdata/pull/20771) ([netdatabot](https://github.com/netdatabot))
374 -- feat\(go.d/snmp\): add configurable device down threshold for vnodes [\#20770](https://github.com/netdata/netdata/pull/20770) ([ilyam8](https://github.com/ilyam8))
375 -- Add publish latency to the aclk-state command [\#20769](https://github.com/netdata/netdata/pull/20769) ([stelfrag](https://github.com/stelfrag))
376 -- chore\(go.d/snmp\): add \_net\_default\_iface\_ip host label [\#20768](https://github.com/netdata/netdata/pull/20768) ([ilyam8](https://github.com/ilyam8))
377 -- Add default iface info to host labels [\#20767](https://github.com/netdata/netdata/pull/20767) ([stelfrag](https://github.com/stelfrag))
378 -- Fix packet timeout handling [\#20766](https://github.com/netdata/netdata/pull/20766) ([stelfrag](https://github.com/stelfrag))
379 -- Add OpenTelemetry plugin implementation. [\#20765](https://github.com/netdata/netdata/pull/20765) ([vkalintiris](https://github.com/vkalintiris))
380 -- feat\(system-info\): add default network interface IP detection [\#20764](https://github.com/netdata/netdata/pull/20764) ([ilyam8](https://github.com/ilyam8))
381 -- chore\(go.d\): remove patternProperties from config\_schema.json [\#20763](https://github.com/netdata/netdata/pull/20763) ([ilyam8](https://github.com/ilyam8))
382 -- fix\(go.d/snmp-profile\): fix extends in cradlepoint.yaml [\#20762](https://github.com/netdata/netdata/pull/20762) ([ilyam8](https://github.com/ilyam8))
383 -- fix\(go.d\): validate custom binary path [\#20761](https://github.com/netdata/netdata/pull/20761) ([ilyam8](https://github.com/ilyam8))
384 -- Update welcome-to-netdata.md [\#20760](https://github.com/netdata/netdata/pull/20760) ([kanelatechnical](https://github.com/kanelatechnical))
385 -- Troubleshooting: add troubleshoot and custom investigations docs [\#20759](https://github.com/netdata/netdata/pull/20759) ([kanelatechnical](https://github.com/kanelatechnical))
386 -- chore\(go.d/snmp\): update org to vendor mapping [\#20757](https://github.com/netdata/netdata/pull/20757) ([ilyam8](https://github.com/ilyam8))
387 -- chore\(go.d/snmp\): update hostname to not include IP [\#20756](https://github.com/netdata/netdata/pull/20756) ([ilyam8](https://github.com/ilyam8))
388 -- chore\(go.d/snmp\): add \_clean\_hostname host label [\#20755](https://github.com/netdata/netdata/pull/20755) ([ilyam8](https://github.com/ilyam8))
389 -- chore\(go.d/snmp\): add \_vnode\_type host label and rm duplicates [\#20754](https://github.com/netdata/netdata/pull/20754) ([ilyam8](https://github.com/ilyam8))
390 -- build\(deps\): bump github.com/miekg/dns from 1.1.67 to 1.1.68 in /src/go [\#20753](https://github.com/netdata/netdata/pull/20753) ([dependabot[bot]](https://github.com/apps/dependabot))
391 -- Improve Disk Usage Measure \(Windows.plugin\) [\#20752](https://github.com/netdata/netdata/pull/20752) ([thiagoftsm](https://github.com/thiagoftsm))
392 -- chore\(go.d/snmp\): remove SNMP prefix from hostname [\#20751](https://github.com/netdata/netdata/pull/20751) ([ilyam8](https://github.com/ilyam8))
393 -- chore\(go.d/snmp\): add org to vendor map [\#20750](https://github.com/netdata/netdata/pull/20750) ([ilyam8](https://github.com/ilyam8))
394 -- Regenerate integrations docs [\#20749](https://github.com/netdata/netdata/pull/20749) ([netdatabot](https://github.com/netdatabot))
395 -- Update deployment-with-centralization-points.md [\#20748](https://github.com/netdata/netdata/pull/20748) ([kanelatechnical](https://github.com/kanelatechnical))
396 -- Record proxy information when establishing ACLK [\#20747](https://github.com/netdata/netdata/pull/20747) ([stelfrag](https://github.com/stelfrag))
397 -- Change remaining pthread\_ cases [\#20746](https://github.com/netdata/netdata/pull/20746) ([stelfrag](https://github.com/stelfrag))
398 -- chore\(go.d/snmp-profiles\): use same metric name for cpu usage [\#20745](https://github.com/netdata/netdata/pull/20745) ([ilyam8](https://github.com/ilyam8))
399 -- Remove redundant defines [\#20744](https://github.com/netdata/netdata/pull/20744) ([stelfrag](https://github.com/stelfrag))
400 -- streaming routing documentation [\#20743](https://github.com/netdata/netdata/pull/20743) ([ktsaou](https://github.com/ktsaou))
401 -- docs: remove customize.md [\#20742](https://github.com/netdata/netdata/pull/20742) ([ilyam8](https://github.com/ilyam8))
402 -- MCP WEB CHAT: add ollama, deepseek support [\#20741](https://github.com/netdata/netdata/pull/20741) ([ktsaou](https://github.com/ktsaou))
403 -- Fix SNDR thread startup [\#20740](https://github.com/netdata/netdata/pull/20740) ([stelfrag](https://github.com/stelfrag))
404 -- build\(deps\): bump github.com/docker/docker from 28.3.2+incompatible to 28.3.3+incompatible in /src/go [\#20739](https://github.com/netdata/netdata/pull/20739) ([dependabot[bot]](https://github.com/apps/dependabot))
405 -- Use netdata mutex cond and lock [\#20737](https://github.com/netdata/netdata/pull/20737) ([stelfrag](https://github.com/stelfrag))
406 -- build\(deps\): bump openssl and curl version in static build [\#20734](https://github.com/netdata/netdata/pull/20734) ([ilyam8](https://github.com/ilyam8))
407 -- Thread creation code cleanup [\#20732](https://github.com/netdata/netdata/pull/20732) ([stelfrag](https://github.com/stelfrag))
408 -- Add additional database checks during shutdown [\#20731](https://github.com/netdata/netdata/pull/20731) ([stelfrag](https://github.com/stelfrag))
409 -- build\(deps\): bump github.com/bmatcuk/doublestar/v4 from 4.9.0 to 4.9.1 in /src/go [\#20730](https://github.com/netdata/netdata/pull/20730) ([dependabot[bot]](https://github.com/apps/dependabot))
410 -- Revert "Revert "Deployment Guides: add and update documentation for deployment strate"" [\#20729](https://github.com/netdata/netdata/pull/20729) ([ilyam8](https://github.com/ilyam8))
411 -- Revert "Deployment Guides: add and update documentation for deployment strate" [\#20728](https://github.com/netdata/netdata/pull/20728) ([ilyam8](https://github.com/ilyam8))
412 -- Reset chart variable after release [\#20727](https://github.com/netdata/netdata/pull/20727) ([stelfrag](https://github.com/stelfrag))
413 -- Improve thread shutdown handling for MSSQL plugin [\#20725](https://github.com/netdata/netdata/pull/20725) ([stelfrag](https://github.com/stelfrag))
414 -- Update README.md [\#20724](https://github.com/netdata/netdata/pull/20724) ([kanelatechnical](https://github.com/kanelatechnical))
415 -- Update README.md [\#20723](https://github.com/netdata/netdata/pull/20723) ([kanelatechnical](https://github.com/kanelatechnical))
416 -- Avoid static initialization [\#20722](https://github.com/netdata/netdata/pull/20722) ([stelfrag](https://github.com/stelfrag))
417 -- docs: add Network-connections to the functions table [\#20721](https://github.com/netdata/netdata/pull/20721) ([ilyam8](https://github.com/ilyam8))
418 -- Enable services status \(windows.plugin\) [\#20720](https://github.com/netdata/netdata/pull/20720) ([thiagoftsm](https://github.com/thiagoftsm))
419 -- Mark the completion from the worker thread [\#20719](https://github.com/netdata/netdata/pull/20719) ([stelfrag](https://github.com/stelfrag))
420 -- improve\(go.d/snmp\): add profile device meta to vnode labels [\#20718](https://github.com/netdata/netdata/pull/20718) ([ilyam8](https://github.com/ilyam8))
421 -- Ignore timestamps recording in gzip metadata \(for reproducible builds\) [\#20714](https://github.com/netdata/netdata/pull/20714) ([Antiz96](https://github.com/Antiz96))
422 -- Remove H2O web server code from Netdata. [\#20713](https://github.com/netdata/netdata/pull/20713) ([Ferroin](https://github.com/Ferroin))
423 -- Deployment Guides: add and update documentation for deployment strate… [\#20712](https://github.com/netdata/netdata/pull/20712) ([kanelatechnical](https://github.com/kanelatechnical))
424 -- Detect missing ACLK MQTT packet acknowledgents [\#20711](https://github.com/netdata/netdata/pull/20711) ([stelfrag](https://github.com/stelfrag))
425 -- SNMP: make units ucum [\#20710](https://github.com/netdata/netdata/pull/20710) ([Ancairon](https://github.com/Ancairon))
426 -- build\(deps\): bump github.com/gosnmp/gosnmp from 1.42.0 to 1.42.1 in /src/go [\#20709](https://github.com/netdata/netdata/pull/20709) ([dependabot[bot]](https://github.com/apps/dependabot))
427 -- build\(deps\): bump github.com/gosnmp/gosnmp from 1.41.0 to 1.42.0 in /src/go [\#20707](https://github.com/netdata/netdata/pull/20707) ([dependabot[bot]](https://github.com/apps/dependabot))
428 -- build\(deps\): bump k8s.io/client-go from 0.33.2 to 0.33.3 in /src/go [\#20705](https://github.com/netdata/netdata/pull/20705) ([dependabot[bot]](https://github.com/apps/dependabot))
429 -- fix\(nvme\)!: query controller instead of namespace for SMART metrics [\#20704](https://github.com/netdata/netdata/pull/20704) ([ilyam8](https://github.com/ilyam8))
430 -- Update UPDATE.md [\#20701](https://github.com/netdata/netdata/pull/20701) ([kanelatechnical](https://github.com/kanelatechnical))
431 -- Ensure chat exists before handling message input [\#20700](https://github.com/netdata/netdata/pull/20700) ([emmanuel-ferdman](https://github.com/emmanuel-ferdman))
432 -- Escape \< character in plaintext [\#20699](https://github.com/netdata/netdata/pull/20699) ([Ancairon](https://github.com/Ancairon))
433 -- Replace legacy functions-table.md with comprehensive UI documentation [\#20697](https://github.com/netdata/netdata/pull/20697) ([ktsaou](https://github.com/ktsaou))
434 -- Update LIBBPF [\#20696](https://github.com/netdata/netdata/pull/20696) ([thiagoftsm](https://github.com/thiagoftsm))
435 -- Fix SSL certificate detection for Rocky Linux and static curl [\#20695](https://github.com/netdata/netdata/pull/20695) ([ktsaou](https://github.com/ktsaou))
436 -- update otel-collector components deps [\#20693](https://github.com/netdata/netdata/pull/20693) ([ilyam8](https://github.com/ilyam8))
437 -
438 -## [v2.6.3](https://github.com/netdata/netdata/tree/v2.6.3) (2025-08-22)
439 -
440 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.6.2...v2.6.3)
441 -
442 -## [v2.6.2](https://github.com/netdata/netdata/tree/v2.6.2) (2025-08-13)
443 -
444 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.6.1...v2.6.2)
445 -
446 -## [v2.6.1](https://github.com/netdata/netdata/tree/v2.6.1) (2025-07-25)
447 -
448 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.6.0...v2.6.1)
449 -
450 -## [v2.6.0](https://github.com/netdata/netdata/tree/v2.6.0) (2025-07-17)
451 -
452 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.5.4...v2.6.0)
453 -
454 -**Merged pull requests:**
455 -
456 -- docs: remove Profiles heading from collapsible section [\#20691](https://github.com/netdata/netdata/pull/20691) ([ilyam8](https://github.com/ilyam8))
457 -
458 -## [v2.5.4](https://github.com/netdata/netdata/tree/v2.5.4) (2025-06-24)
459 -
460 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.5.3...v2.5.4)
461 -
462 -## [v2.5.3](https://github.com/netdata/netdata/tree/v2.5.3) (2025-06-05)
463 -
464 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.5.2...v2.5.3)
465 -
466 -## [v2.5.2](https://github.com/netdata/netdata/tree/v2.5.2) (2025-05-22)
467 -
468 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.5.1...v2.5.2)
469 -
470 -## [v2.5.1](https://github.com/netdata/netdata/tree/v2.5.1) (2025-05-08)
471 -
472 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.5.0...v2.5.1)
473 -
474 -## [v2.5.0](https://github.com/netdata/netdata/tree/v2.5.0) (2025-05-05)
475 -
476 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.4.0...v2.5.0)
477 -
478 -## [v2.4.0](https://github.com/netdata/netdata/tree/v2.4.0) (2025-04-14)
479 -
480 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.3.2...v2.4.0)
481 -
482 -## [v2.3.2](https://github.com/netdata/netdata/tree/v2.3.2) (2025-04-02)
483 -
484 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.3.1...v2.3.2)
485 -
486 -## [v2.3.1](https://github.com/netdata/netdata/tree/v2.3.1) (2025-03-24)
487 -
488 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.3.0...v2.3.1)
489 -
490 -## [v2.3.0](https://github.com/netdata/netdata/tree/v2.3.0) (2025-03-19)
491 -
492 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.2.6...v2.3.0)
493 -
494 -## [v2.2.6](https://github.com/netdata/netdata/tree/v2.2.6) (2025-02-20)
495 -
496 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.2.5...v2.2.6)
497 -
498 -## [v2.2.5](https://github.com/netdata/netdata/tree/v2.2.5) (2025-02-12)
499 -
500 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.2.4...v2.2.5)
501 -
502 -## [v2.2.4](https://github.com/netdata/netdata/tree/v2.2.4) (2025-02-04)
503 -
504 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.2.3...v2.2.4)
505 -
506 -## [v2.2.3](https://github.com/netdata/netdata/tree/v2.2.3) (2025-01-31)
507 -
508 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.2.2...v2.2.3)
509 -
510 -## [v2.2.2](https://github.com/netdata/netdata/tree/v2.2.2) (2025-01-30)
511 -
512 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.2.1...v2.2.2)
513 -
514 -## [v2.2.1](https://github.com/netdata/netdata/tree/v2.2.1) (2025-01-27)
515 -
516 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.2.0...v2.2.1)
517 -
518 -## [v2.2.0](https://github.com/netdata/netdata/tree/v2.2.0) (2025-01-22)
519 -
520 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.1.1...v2.2.0)
521 -
522 -## [v2.1.1](https://github.com/netdata/netdata/tree/v2.1.1) (2025-01-07)
523 -
524 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.1.0...v2.1.1)
525 -
526 -## [v2.1.0](https://github.com/netdata/netdata/tree/v2.1.0) (2024-12-19)
527 -
528 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.0.3...v2.1.0)
529 -
530 -## [v2.0.3](https://github.com/netdata/netdata/tree/v2.0.3) (2024-11-22)
531 -
532 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.0.2...v2.0.3)
533 -
534 -## [v2.0.2](https://github.com/netdata/netdata/tree/v2.0.2) (2024-11-21)
535 -
536 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.0.1...v2.0.2)
537 -
538 -## [v2.0.1](https://github.com/netdata/netdata/tree/v2.0.1) (2024-11-14)
539 -
540 -[Full Changelog](https://github.com/netdata/netdata/compare/v2.0.0...v2.0.1)
541 -
542 -## [v2.0.0](https://github.com/netdata/netdata/tree/v2.0.0) (2024-11-07)
543 -
544 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.47.5...v2.0.0)
545 -
546 -## [v1.47.5](https://github.com/netdata/netdata/tree/v1.47.5) (2024-10-24)
547 -
548 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.47.4...v1.47.5)
549 -
550 -## [v1.47.4](https://github.com/netdata/netdata/tree/v1.47.4) (2024-10-09)
551 -
552 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.47.3...v1.47.4)
553 -
554 -## [v1.47.3](https://github.com/netdata/netdata/tree/v1.47.3) (2024-10-02)
555 -
556 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.47.2...v1.47.3)
557 -
558 -## [v1.47.2](https://github.com/netdata/netdata/tree/v1.47.2) (2024-09-24)
559 -
560 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.47.1...v1.47.2)
561 -
562 -## [v1.47.1](https://github.com/netdata/netdata/tree/v1.47.1) (2024-09-10)
563 -
564 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.99.0...v1.47.1)
565 -
566 -## [v1.99.0](https://github.com/netdata/netdata/tree/v1.99.0) (2024-08-23)
567 -
568 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.47.0...v1.99.0)
569 -
570 -## [v1.47.0](https://github.com/netdata/netdata/tree/v1.47.0) (2024-08-22)
571 -
572 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.46.3...v1.47.0)
573 -
574 -## [v1.46.3](https://github.com/netdata/netdata/tree/v1.46.3) (2024-07-23)
575 -
576 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.46.2...v1.46.3)
577 -
578 -## [v1.46.2](https://github.com/netdata/netdata/tree/v1.46.2) (2024-07-10)
579 -
580 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.46.1...v1.46.2)
581 -
582 -## [v1.46.1](https://github.com/netdata/netdata/tree/v1.46.1) (2024-06-21)
583 -
584 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.46.0...v1.46.1)
585 -
586 -## [v1.46.0](https://github.com/netdata/netdata/tree/v1.46.0) (2024-06-19)
587 -
588 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.45.6...v1.46.0)
589 -
590 -## [v1.45.6](https://github.com/netdata/netdata/tree/v1.45.6) (2024-06-05)
591 -
592 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.45.5...v1.45.6)
593 -
594 -## [v1.45.5](https://github.com/netdata/netdata/tree/v1.45.5) (2024-05-21)
595 -
596 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.45.4...v1.45.5)
597 -
598 -## [v1.45.4](https://github.com/netdata/netdata/tree/v1.45.4) (2024-05-08)
599 -
600 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.45.3...v1.45.4)
601 -
602 -## [v1.45.3](https://github.com/netdata/netdata/tree/v1.45.3) (2024-04-12)
603 -
604 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.45.2...v1.45.3)
605 -
606 -## [v1.45.2](https://github.com/netdata/netdata/tree/v1.45.2) (2024-04-01)
607 -
608 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.45.1...v1.45.2)
609 -
610 -## [v1.45.1](https://github.com/netdata/netdata/tree/v1.45.1) (2024-03-27)
611 -
612 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.45.0...v1.45.1)
613 -
614 -## [v1.45.0](https://github.com/netdata/netdata/tree/v1.45.0) (2024-03-21)
615 -
616 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.44.3...v1.45.0)
617 -
618 -## [v1.44.3](https://github.com/netdata/netdata/tree/v1.44.3) (2024-02-12)
619 -
620 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.44.2...v1.44.3)
621 -
622 -## [v1.44.2](https://github.com/netdata/netdata/tree/v1.44.2) (2024-02-06)
623 -
624 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.44.1...v1.44.2)
625 -
626 -## [v1.44.1](https://github.com/netdata/netdata/tree/v1.44.1) (2023-12-12)
627 -
628 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.44.0...v1.44.1)
629 -
630 -## [v1.44.0](https://github.com/netdata/netdata/tree/v1.44.0) (2023-12-06)
631 -
632 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.43.2...v1.44.0)
633 -
634 -## [v1.43.2](https://github.com/netdata/netdata/tree/v1.43.2) (2023-10-30)
635 -
636 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.43.1...v1.43.2)
637 -
638 -## [v1.43.1](https://github.com/netdata/netdata/tree/v1.43.1) (2023-10-26)
639 -
640 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.43.0...v1.43.1)
641 -
642 -## [v1.43.0](https://github.com/netdata/netdata/tree/v1.43.0) (2023-10-16)
643 -
644 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.42.4...v1.43.0)
645 -
646 -## [v1.42.4](https://github.com/netdata/netdata/tree/v1.42.4) (2023-09-18)
647 -
648 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.42.3...v1.42.4)
649 -
650 -## [v1.42.3](https://github.com/netdata/netdata/tree/v1.42.3) (2023-09-11)
651 -
652 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.42.2...v1.42.3)
653 -
654 -## [v1.42.2](https://github.com/netdata/netdata/tree/v1.42.2) (2023-08-28)
655 -
656 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.42.1...v1.42.2)
657 -
658 -## [v1.42.1](https://github.com/netdata/netdata/tree/v1.42.1) (2023-08-16)
659 -
660 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.42.0...v1.42.1)
661 -
662 -## [v1.42.0](https://github.com/netdata/netdata/tree/v1.42.0) (2023-08-09)
663 -
664 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.41.0...v1.42.0)
665 -
666 -## [v1.41.0](https://github.com/netdata/netdata/tree/v1.41.0) (2023-07-19)
667 -
668 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.40.1...v1.41.0)
669 -
670 -## [v1.40.1](https://github.com/netdata/netdata/tree/v1.40.1) (2023-06-27)
671 -
672 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.40.0...v1.40.1)
673 -
674 -## [v1.40.0](https://github.com/netdata/netdata/tree/v1.40.0) (2023-06-14)
675 -
676 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.39.1...v1.40.0)
677 -
678 -## [v1.39.1](https://github.com/netdata/netdata/tree/v1.39.1) (2023-05-18)
679 -
680 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.39.0...v1.39.1)
681 -
682 -## [v1.39.0](https://github.com/netdata/netdata/tree/v1.39.0) (2023-05-08)
683 -
684 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.38.1...v1.39.0)
685 -
686 -## [v1.38.1](https://github.com/netdata/netdata/tree/v1.38.1) (2023-02-13)
687 -
688 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.38.0...v1.38.1)
689 -
690 -## [v1.38.0](https://github.com/netdata/netdata/tree/v1.38.0) (2023-02-06)
691 -
692 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.37.1...v1.38.0)
693 -
694 -## [v1.37.1](https://github.com/netdata/netdata/tree/v1.37.1) (2022-12-05)
695 -
696 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.37.0...v1.37.1)
697 -
698 -## [v1.37.0](https://github.com/netdata/netdata/tree/v1.37.0) (2022-11-30)
699 -
700 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.36.1...v1.37.0)
701 -
702 -## [v1.36.1](https://github.com/netdata/netdata/tree/v1.36.1) (2022-08-15)
703 -
704 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.36.0...v1.36.1)
705 -
706 -## [v1.36.0](https://github.com/netdata/netdata/tree/v1.36.0) (2022-08-10)
707 -
708 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.35.1...v1.36.0)
709 -
710 -## [v1.35.1](https://github.com/netdata/netdata/tree/v1.35.1) (2022-06-10)
711 -
712 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.35.0...v1.35.1)
713 -
714 -## [v1.35.0](https://github.com/netdata/netdata/tree/v1.35.0) (2022-06-08)
715 -
716 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.34.1...v1.35.0)
717 -
718 -## [v1.34.1](https://github.com/netdata/netdata/tree/v1.34.1) (2022-04-15)
719 -
720 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.34.0...v1.34.1)
721 -
722 -## [v1.34.0](https://github.com/netdata/netdata/tree/v1.34.0) (2022-04-14)
723 -
724 -[Full Changelog](https://github.com/netdata/netdata/compare/1.34.0...v1.34.0)
725 -
726 -## [1.34.0](https://github.com/netdata/netdata/tree/1.34.0) (2022-04-14)
727 -
728 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.33.1...1.34.0)
729 -
730 -## [v1.33.1](https://github.com/netdata/netdata/tree/v1.33.1) (2022-02-14)
731 -
732 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.33.0...v1.33.1)
733 -
734 -## [v1.33.0](https://github.com/netdata/netdata/tree/v1.33.0) (2022-01-26)
735 -
736 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.32.1...v1.33.0)
737 -
738 -## [v1.32.1](https://github.com/netdata/netdata/tree/v1.32.1) (2021-12-14)
739 -
740 -[Full Changelog](https://github.com/netdata/netdata/compare/1.32.1...v1.32.1)
741 -
742 -## [1.32.1](https://github.com/netdata/netdata/tree/1.32.1) (2021-12-14)
743 -
744 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.32.0...1.32.1)
745 -
746 -## [v1.32.0](https://github.com/netdata/netdata/tree/v1.32.0) (2021-11-30)
747 -
748 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.31.0...v1.32.0)
749 -
750 -## [v1.31.0](https://github.com/netdata/netdata/tree/v1.31.0) (2021-05-19)
751 -
752 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.30.1...v1.31.0)
753 -
754 -## [v1.30.1](https://github.com/netdata/netdata/tree/v1.30.1) (2021-04-12)
755 -
756 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.30.0...v1.30.1)
757 -
758 -## [v1.30.0](https://github.com/netdata/netdata/tree/v1.30.0) (2021-03-31)
759 -
760 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.29.3...v1.30.0)
761 -
762 -## [v1.29.3](https://github.com/netdata/netdata/tree/v1.29.3) (2021-02-23)
763 -
764 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.29.2...v1.29.3)
765 -
766 -## [v1.29.2](https://github.com/netdata/netdata/tree/v1.29.2) (2021-02-18)
767 -
768 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.29.1...v1.29.2)
769 -
770 -## [v1.29.1](https://github.com/netdata/netdata/tree/v1.29.1) (2021-02-09)
771 -
772 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.29.0...v1.29.1)
773 -
774 -## [v1.29.0](https://github.com/netdata/netdata/tree/v1.29.0) (2021-02-03)
775 -
776 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.27.0_0104103941...v1.29.0)
777 -
778 -## [v1.27.0_0104103941](https://github.com/netdata/netdata/tree/v1.27.0_0104103941) (2021-01-04)
779 -
780 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.28.0...v1.27.0_0104103941)
781 -
782 -## [v1.28.0](https://github.com/netdata/netdata/tree/v1.28.0) (2020-12-18)
783 -
784 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.27.0...v1.28.0)
785 -
786 -## [v1.27.0](https://github.com/netdata/netdata/tree/v1.27.0) (2020-12-17)
787 -
788 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.26.0...v1.27.0)
789 -
790 -## [v1.26.0](https://github.com/netdata/netdata/tree/v1.26.0) (2020-10-14)
791 -
792 -[Full Changelog](https://github.com/netdata/netdata/compare/before_rebase...v1.26.0)
793 -
794 -## [before_rebase](https://github.com/netdata/netdata/tree/before_rebase) (2020-09-24)
795 -
796 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.25.0...before_rebase)
797 -
798 -## [v1.25.0](https://github.com/netdata/netdata/tree/v1.25.0) (2020-09-15)
799 -
800 -[Full Changelog](https://github.com/netdata/netdata/compare/poc2...v1.25.0)
801 -
802 -## [poc2](https://github.com/netdata/netdata/tree/poc2) (2020-08-25)
803 -
804 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.24.0...poc2)
805 -
806 -## [v1.24.0](https://github.com/netdata/netdata/tree/v1.24.0) (2020-08-10)
807 -
808 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.23.2...v1.24.0)
809 -
810 -## [v1.23.2](https://github.com/netdata/netdata/tree/v1.23.2) (2020-07-16)
811 -
812 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.23.1_infiniband...v1.23.2)
813 -
814 -## [v1.23.1_infiniband](https://github.com/netdata/netdata/tree/v1.23.1_infiniband) (2020-07-03)
815 -
816 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.23.1...v1.23.1_infiniband)
817 -
818 -## [v1.23.1](https://github.com/netdata/netdata/tree/v1.23.1) (2020-07-01)
819 -
820 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.23.0...v1.23.1)
821 -
822 -## [v1.23.0](https://github.com/netdata/netdata/tree/v1.23.0) (2020-06-25)
823 -
824 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.22.1...v1.23.0)
825 -
826 -## [v1.22.1](https://github.com/netdata/netdata/tree/v1.22.1) (2020-05-12)
827 -
828 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.22.0...v1.22.1)
829 -
830 -## [v1.22.0](https://github.com/netdata/netdata/tree/v1.22.0) (2020-05-11)
831 -
832 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.21.1...v1.22.0)
833 -
834 -## [v1.21.1](https://github.com/netdata/netdata/tree/v1.21.1) (2020-04-13)
835 -
836 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.21.0...v1.21.1)
837 -
838 -## [v1.21.0](https://github.com/netdata/netdata/tree/v1.21.0) (2020-04-06)
839 -
840 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.20.0...v1.21.0)
841 -
842 -## [v1.20.0](https://github.com/netdata/netdata/tree/v1.20.0) (2020-02-21)
843 -
844 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.19.0...v1.20.0)
845 -
846 -## [v1.19.0](https://github.com/netdata/netdata/tree/v1.19.0) (2019-11-27)
847 -
848 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.18.1...v1.19.0)
849 -
850 -## [v1.18.1](https://github.com/netdata/netdata/tree/v1.18.1) (2019-10-18)
851 -
852 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.18.0...v1.18.1)
853 -
854 -## [v1.18.0](https://github.com/netdata/netdata/tree/v1.18.0) (2019-10-10)
855 -
856 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.17.1...v1.18.0)
857 -
858 -## [v1.17.1](https://github.com/netdata/netdata/tree/v1.17.1) (2019-09-12)
859 -
860 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.17.0...v1.17.1)
861 -
862 -## [v1.17.0](https://github.com/netdata/netdata/tree/v1.17.0) (2019-09-03)
863 -
864 -[Full Changelog](https://github.com/netdata/netdata/compare/issue_4934...v1.17.0)
865 -
866 -## [issue_4934](https://github.com/netdata/netdata/tree/issue_4934) (2019-08-03)
867 -
868 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.16.1...issue_4934)
869 -
870 -## [v1.16.1](https://github.com/netdata/netdata/tree/v1.16.1) (2019-07-31)
871 -
872 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.16.0...v1.16.1)
873 -
874 -## [v1.16.0](https://github.com/netdata/netdata/tree/v1.16.0) (2019-07-08)
875 -
876 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.15.0...v1.16.0)
877 -
878 -## [v1.15.0](https://github.com/netdata/netdata/tree/v1.15.0) (2019-05-22)
879 -
880 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.14.0...v1.15.0)
881 -
882 -## [v1.14.0](https://github.com/netdata/netdata/tree/v1.14.0) (2019-04-18)
883 -
884 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.14.0-rc0...v1.14.0)
885 -
886 -## [v1.14.0-rc0](https://github.com/netdata/netdata/tree/v1.14.0-rc0) (2019-03-30)
887 -
888 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.13.0...v1.14.0-rc0)
889 -
890 -## [v1.13.0](https://github.com/netdata/netdata/tree/v1.13.0) (2019-03-14)
891 -
892 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.12.2...v1.13.0)
893 -
894 -## [v1.12.2](https://github.com/netdata/netdata/tree/v1.12.2) (2019-02-28)
895 -
896 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.12.1...v1.12.2)
897 -
898 -## [v1.12.1](https://github.com/netdata/netdata/tree/v1.12.1) (2019-02-21)
899 -
900 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.12.0...v1.12.1)
901 -
902 -## [v1.12.0](https://github.com/netdata/netdata/tree/v1.12.0) (2019-02-06)
903 -
904 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.12.0-rc3...v1.12.0)
905 -
906 -## [v1.12.0-rc3](https://github.com/netdata/netdata/tree/v1.12.0-rc3) (2019-01-17)
907 -
908 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.12.0-rc2...v1.12.0-rc3)
909 -
910 -## [v1.12.0-rc2](https://github.com/netdata/netdata/tree/v1.12.0-rc2) (2019-01-03)
911 -
912 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.12.0-rc1...v1.12.0-rc2)
913 -
914 -## [v1.12.0-rc1](https://github.com/netdata/netdata/tree/v1.12.0-rc1) (2018-12-19)
915 -
916 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.12.0-rc0...v1.12.0-rc1)
917 -
918 -## [v1.12.0-rc0](https://github.com/netdata/netdata/tree/v1.12.0-rc0) (2018-12-06)
919 -
920 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.11.1...v1.12.0-rc0)
921 -
922 -## [v1.11.1](https://github.com/netdata/netdata/tree/v1.11.1) (2018-11-22)
923 -
924 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.11.0...v1.11.1)
925 -
926 -## [v1.11.0](https://github.com/netdata/netdata/tree/v1.11.0) (2018-11-02)
927 -
928 -[Full Changelog](https://github.com/netdata/netdata/compare/v1.10.0...v1.11.0)
929 -
930 -
931 -
932 -\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
packaging/cliff.toml new
+89
@@ -0,0 +1,89 @@
1 +# git-cliff ~ configuration file
2 +# https://git-cliff.org/docs/configuration
3 +
4 +[changelog]
5 +# A Tera template to be rendered for each release in the changelog.
6 +# See https://keats.github.io/tera/docs/#introduction
7 +body = """
8 +{% if version %}\
9 + ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
10 +{% else %}\
11 + ## [unreleased]
12 +{% endif %}\
13 +{% for group, commits in commits | unique(attribute="message") | group_by(attribute="group") %}
14 + ### {{ group | striptags | trim | upper_first }}
15 + {% for commit in commits %}
16 + - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
17 + {% if commit.breaking %}[**breaking**] {% endif %}\
18 + {{ commit.message | upper_first | split(pat="\n") | first }}\
19 + {% endfor %}
20 +{% endfor %}
21 +
22 +"""
23 +# Remove leading and trailing whitespaces from the changelog's body.
24 +trim = true
25 +# Render body even when there are no releases to process.
26 +render_always = true
27 +# An array of regex based postprocessors to modify the changelog.
28 +postprocessors = [
29 + # Replace the placeholder <REPO> with a URL.
30 + { pattern = '<REPO>', replace = "https://github.com/netdata/netdata" },
31 +]
32 +# output file path
33 +#
34 +# This is intentionally set to a dummy path, as we need additional
35 +# options that can only be specified on the command line to generate
36 +# the file correctly, and it’s expected that anyone is using the
37 +# packaging/generate-changelog.sh script (or is smart enough to inspect
38 +# it and extrapolate how to run the command correctly).
39 +output = "test.md"
40 +
41 +[git]
42 +# Parse commits according to the conventional commits specification.
43 +# See https://www.conventionalcommits.org
44 +conventional_commits = false
45 +# Exclude commits that do not match the conventional commits specification.
46 +filter_unconventional = false
47 +# Require all commits to be conventional.
48 +# Takes precedence over filter_unconventional.
49 +require_conventional = false
50 +# Split commits on newlines, treating each line as an individual commit.
51 +split_commits = false
52 +# An array of regex based parsers to modify commit messages prior to further processing.
53 +commit_preprocessors = [
54 + # Replace issue numbers with link templates to be updated in `changelog.postprocessors`.
55 + { pattern = '(\w+\s)?#([0-9]+)', replace = "[#${2}](<REPO>/issues/${2})"},
56 + # Check spelling of the commit message using https://github.com/crate-ci/typos.
57 + # If the spelling is incorrect, it will be fixed automatically.
58 + #{ pattern = '.*', replace_command = 'typos --write-changes -' },
59 +]
60 +# Prevent commits that are breaking from being excluded by commit parsers.
61 +protect_breaking_commits = false
62 +# An array of regex based parsers for extracting data from the commit message.
63 +# Assigns commits to groups.
64 +# Optionally sets the commit's scope and can decide to exclude commits from further processing.
65 +#
66 +# Our workflow only generates PRs for actual changes, thus we don’t
67 +# need special grouping here.
68 +commit_parsers = [
69 + { message = "^(?i)\\[ci skip]", skip = true },
70 + { message = ".*", group = "Merged Pull Requests:" },
71 +]
72 +# Exclude commits that are not matched by any commit parser.
73 +filter_commits = false
74 +# An array of link parsers for extracting external references, and turning them into URLs, using regex.
75 +link_parsers = [
76 + { pattern = "#(\\d+)", href = "https://github.com/netdata/netdata/issues/$1"},
77 + { pattern = "RFC(\\d+)", text = "ietf-rfc$1", href = "https://datatracker.ietf.org/doc/html/rfc$1"},
78 +]
79 +# Include only the tags that belong to the current branch.
80 +use_branch_tags = true
81 +# Order releases topologically instead of chronologically.
82 +topo_order = false
83 +# Order releases topologically instead of chronologically.
84 +topo_order_commits = true
85 +# Order of commits in each group/release within the changelog.
86 +# Allowed values: newest, oldest
87 +sort_commits = "oldest"
88 +# Process submodules commits
89 +recurse_submodules = false
packaging/generate-changelog.sh new
+23
@@ -0,0 +1,23 @@
1 +#!/bin/sh
2 +
3 +set -e
4 +
5 +FIRST_TAG="v1.47.0" # Last release prior to v2.0.0
6 +
7 +SCRIPT_SOURCE="$(
8 + self=${0}
9 + while [ -L "${self}" ]
10 + do
11 + cd "${self%/*}" || exit 1
12 + self=$(readlink "${self}")
13 + done
14 + cd "${self%/*}" || exit 1
15 + echo "$(pwd -P)/${self##*/}"
16 +)"
17 +
18 +cd "$(dirname "${SCRIPT_SOURCE}")/.." || exit 1
19 +
20 +git-cliff --config "$(dirname "${SCRIPT_SOURCE}")/cliff.toml" \
21 + --output "$(dirname "${SCRIPT_SOURCE}")/../CHANGELOG.md" \
22 + --verbose \
23 + "${FIRST_TAG}..HEAD"