Netdata - v1.45.0


Table of Contents

Netdata Growth

  • 67.5k GitHub stars!
  • 626M Docker Hub pulls!

Thanks to your love ❀️, Netdata is leading the observability category in CNCF, having significantly more stars than Elasticsearch, Grafana, Prometheus and all other observability solutions listed in CNCF landscape.

We are committed to provide the most advanced and innovative observability solution, to help us minimize monitoring costs while providing AI-powered high-fidelity monitoring!

You like Netdata? Give Netdata a ⭐ too, on GitHub!

Release Summary

3 months have passed since the previous Netdata release. A lot has changed since then! Netdata now has a mobile app for alert notifications, new drag-and-drop custom dashboards, network connections monitoring, dynamic configuration for data collection jobs and alerts, and many more...

To see how Netdata stacks up against the most advanced commercial offerings available today, we did an analysis on how Dynatrace, Datadog, Instana, Grafana and Netdata commercial offerings compare.

It is nice to see that Netdata stands out for its:

  1. Excellent technology coverage

Netdata's monitoring coverage is significantly higher compared to others, in all areas!

  1. High-fidelity, real-time insights

Netdata is the only monitoring solution offering this kind of fidelity (per-second for all metrics), at this extend!

  1. Real AI and Machine-Learning.

Netdata is the only monitoring system that offers real machine learning, running at the edge.

  1. Lightweight

Netdata is among the lightest agents, despite the fact that it does a lot more than the others.

  1. Best cost efficiency

Netdata's cost efficiency is unbeatable, making Netdata the most cost-efficient monitoring solution available today!

Read the full blog here.

Release Highlights

Netdata Mobile App

You can now receive Netdata alerts directly on your mobile phone!

Choose your space and see all the available notifications since you last signed in!

Check the full demo here.

The Mobile App is available for Homelab and Business plan users.

Custom Dashboards

You can now create advanced custom dashboards with Netdata!

  • Drag-and-Drop

Easily move charts from Metrics or Single Node views straight to your dashboards. It's intuitive and fun.

  • New Chart Types

Discover your data in new ways with Bar, Circle, Gauge, Pie, Value, and Group boxes.

  • Quick Dashboard Creation

Hit the plus button, drag, and you've got a new dashboard. Simple as that.

  • Rename Charts

Customize your dashboard by renaming charts to whatever makes sense to you.

  • Refreshed Text Cards

We've upgraded text cards for better clarity and aesthetics.

On the Agent UI and the Community plan of Netdata Cloud 1 custom dashboard is allowed. The Homelab and Business plans of Netdata Cloud support an unlimited number of custom dashboards.

Network Viewer

Explore the network connections of your servers and processes!

302690196-5f71c102-9146-463e-acba-329094b136a5

Netdata got a network viewer (select network-connections from the Top tab inside the dashboard).

The tool reports all IPv4 and IPv6, TCP and UDP sockets a system and all its processes have. Also, it automatically and reliably classifies them as inbound, outbound, local (i.e. within the host itself), or listen (for daemons).

The visualization graph has 4 sides:

  • public (i.e. public IPs),
  • private (i.e. private and reserved IPs),
  • servers (i.e. listening and inbound sockets),
  • clients (i.e. sockets towards other servers).

The position of each application on the chart is determined by the classification of the sockets it has. To the top are clients, to the bottom are servers, to the right are internet facing applications, to the left is internal network applications.

The size of each application in the chart is determined by the number of sockets it has, and each application is a pie chart representing the percentage of each kind of sockets it has.

For servers with dozens of thousands of sockets, the tool provides an aggregated view, grouping similar sockets together and reporting the total. Users can switch to a detailed view from the UI.

User Settings

We've improved immensely the customization capabilities of Netdata with the introduction of User Settings.

Our first release on this front is focused on the customization of charts, either on the Metrics tab or the Single Node view tab. You can now create for any chart:
* Personal views
* Room specific views
* Space dedicated views

With this, you can define what is best for your team to visualise a given chart but still allow each teammate to define their own. Users will be presented with the view they should see, based on setting hierarchy, but they
can interchangeably select which of the select views they want.

chrome_UPtwnDlNyd

More areas of customization will come soon, Filters saved views, Dashboards Table of Content (TOC) ordering, etc.

Dynamic Configuration (beta)

Netdata agents are now deployed with the ability to dynamically accept configuration from the UI, for data collection jobs and alerts. The feature is released in beta.

Alerts Configuration Manager


The Alerts Configuration Manager is transforming the way users configure and manage alerts in their Netdata environment. This powerful tool integrates directly into the Netdata Dashboard, offering a streamlined and intuitive interface for both novice and experienced users.

Check the full demo here

Alerts Silencing Rules

g6oHMtz

πŸ”•Improvements done to make it easier to interact and see Alert Silencing Rules.
With this release, you will be able to:

  • See silencing rules status directly on entities like Alerts, Rooms, and Nodes
  • Immediately create a silencing rule for an Alert, a Room, or a Node

We hope this makes it easier for you to interact with the Alert Silencing Rule Manager.
Stay tuned for more improvements!

MacOS Processes Monitoring

Netdata's apps.plugin has been ported to macOS, allowing users to view processes information on Linux, FreeBSD and macOS!

Just install the latest Netdata on your macOS and enjoy full processes monitoring!

Homelab Plan

For non-professional use, get the whole and the latest of Netdata! For the cost of a beer per month, you can get access to all Business features of Netdata, for your home lab or personal project!

Our Homelab plan is available to technology enthusiasts and students, for non-professional user, offering the entire Netdata suite, for a small flat fee, under a fair usage policy.

  • Unlimited Access: Enjoy the freedom of unlimited usage, with no caps on nodes or custom dashboards.

  • Premium Features: Get your hands on business-level features, including enhanced alert integrations and access to our mobile app, all tailored for your personal projects.

  • Support Netdata: Support the open-source Netdata, to ensure it will be there for you, when you need it!

New Build Infrastructure

Starting with Netdata 1.45, we have completely removed our GNU Autotools based build system and replaced it with
CMake. The new CMake build system has a number of significant benefits for developers, package maintainers, and
those using local builds of Netdata.

See details - We now have proper support for out-of-tree builds, and this is now the preferred method for building Netdata. - Build configuration is now measurably faster than it was previously. - Netdata can now be built using Ninja instead of Make, further speeding up the build process. The installer and updater script will automatically use Ninja instead of Make when possible, and developers, package maintainers, and users who are building by hand are encouraged to explicitly use it themselves when building Netdata by specifying the `-G Ninja` option to CMake during the configuration process. - Overall maintenance of the build system will be significantly easier going forwards. This means we should be able to fix any issues involving it much more quickly, and contributions from external developers should be much easier. - A number of features we have wanted to add to our build infrastructure will be much easier to add now. Most users should not be directly affected by this change other than benefiting from the faster build times, only those who were building locally by hand (not using the `netdata-installer.sh` script or the kickstart script) will need to change things.

Go Plugin Moved to Main Repository

Alongside the new CMake build system, we have also moved the go.d.plugin
code from the netdata/go.d.plugin repository to the main netdata/netdata
repository.

See details We have made this change for three reasons: - It makes handling of bugs in the Go plugin much easier. Instead of possibly needing to track issues and PRs across two repositories, now everything should end up tracked coherently in one repository. - It lets us significantly simplify a number of parts of our CI and installation code, allowing for greater reliability and easier maintenance. - It provides a testbed for infrastructure for handling of Go in the main repo, which is significant as we have been internally looking at reimplementing some other components of the agent in Go. Users of native packages and static builds should see no difference at all from this change. Building the agent locally will now require a working Go toolchain supporting a particular minimum version of the Go language (currently 1.21) if the Go plugin needs to be built. The plugin itself can still be disabled to avoid this requirement, but this is not recommended. The installer code will attempt to ensure that a sufficiently up-to-date Go toolchain is installed when installing or updating the agent. If such a toolchain is not found, it will attempt to automatically install a copy of the official toolchain from https://go.dev/dl/ in `/usr/local/go`. If that attempt fails, the Go plugin will be **DISABLED** automatically at build time.

Acknowledgments

  • @candlerb for improving robustness of netdata-updater.sh.
  • @carrychair for removing unnecessary repetition of words in documentation.
  • @luisj1983 for adding "Backing up a Netdata Agent" documentation.
  • @moschlar for fixing --distro-override parameter name in kickstart documentation.
  • @pschaer for correcting instructions on creating a startup script in the "Install Netdata on Synology" guide.
  • @sepek for fixing description of "chart labels" in "Configure alerts".

Contributions

Collectors

Improvements - Add macOS support for collecting resource usage of processes (apps.plugin) ([#17180](https://github.com/netdata/netdata/pull/17180), [@ktsaou](https://github.com/ktsaou)) - Improve identification of applications in docker service discovery (go.d.plugin) ([#17174](https://github.com/netdata/netdata/pull/17174), [@ilyam8](https://github.com/ilyam8)) - Execute local-listeners periodically rather than just once at startup (go.d.plugin) ([#17160](https://github.com/netdata/netdata/pull/17160), [@ilyam8](https://github.com/ilyam8)) - Add service discovery for applications running inside Docker containers (go.d.plugin) ([#17152](https://github.com/netdata/netdata/pull/17152), [@ilyam8](https://github.com/ilyam8)) - Implement dynamic configuration for configuring data collection jobs (go.d.plugin) ([#17064](https://github.com/netdata/netdata/pull/17064), [@ilyam8](https://github.com/ilyam8)) - Update message IDs for systemd and dbus (systemd-journal.plugin) ([#16987](https://github.com/netdata/netdata/pull/16987), [@ktsaou](https://github.com/ktsaou)) - Report EDAC ECC errors s total counts since boot instead of rates (proc/sys_devices_system_edac_mc) ([#16970](https://github.com/netdata/netdata/pull/16970), [@ilyam8](https://github.com/ilyam8)) - Add aggregated view (network-viewer.plugin) ([#16940](https://github.com/netdata/netdata/pull/16940), [@ktsaou](https://github.com/ktsaou)) - Add filtering by username (network-viewer.plugin) ([#16911](https://github.com/netdata/netdata/pull/16911), [@ktsaou](https://github.com/ktsaou)) - Add Network Viewer plugin ([#16872](https://github.com/netdata/netdata/pull/16872), [@ktsaou](https://github.com/ktsaou)) - Add CPU throttling % column to the containers-vms function (cgroups.plugin) ([#16800](https://github.com/netdata/netdata/pull/16800), [@ilyam8](https://github.com/ilyam8)) - Add the ndsudo binary, a helper tool for assisting in the execution of privileged commands ([#16614](https://github.com/netdata/netdata/pull/16614), [@ktsaou](https://github.com/ktsaou)) - Disable CPU per core metrics by default (proc.plugin) ([#16572](https://github.com/netdata/netdata/pull/16572), [@ilyam8](https://github.com/ilyam8))
Bug fixes - Fix incorrect family value of the ZFS ZPool state chart (proc/proc_spl_kstat_zfs) ([#17054](https://github.com/netdata/netdata/pull/17054), [@ilyam8](https://github.com/ilyam8)) - Fix race conditions (diskspace.plugin) ([#16786](https://github.com/netdata/netdata/pull/16786), [@ktsaou](https://github.com/ktsaou)) - Fix allocated memory after it has been freed (diskspace.plugin) ([#16784](https://github.com/netdata/netdata/pull/16784), [@ktsaou](https://github.com/ktsaou)) - Fix priority per-core CPU charts (proc/proc_stat) ([#16749](https://github.com/netdata/netdata/pull/16749), [@ilyam8](https://github.com/ilyam8)) - Fix missing CPU frequency chart (proc/proc_stat) ([#16732](https://github.com/netdata/netdata/pull/16732), [@ilyam8](https://github.com/ilyam8)) - Fix an issue where cgroup_check_for_new_every was incorrectly multiplied by update_every (cgroups.plugin) ([#16719](https://github.com/netdata/netdata/pull/16719), [@ilyam8](https://github.com/ilyam8))
Other - Add mongodb-community-server image to docker service discovery configuration (go.d.plugin) ([#17173](https://github.com/netdata/netdata/pull/17173), [@ilyam8](https://github.com/ilyam8)) - Add an option to disable service discovery (go.d.plugin) ([#17171](https://github.com/netdata/netdata/pull/17171), [@ilyam8](https://github.com/ilyam8)) - Allow array/object to be null json schemas (go.d.plugin) ([#17166](https://github.com/netdata/netdata/pull/17166), [@ilyam8](https://github.com/ilyam8)) - Update file path pattern in jsonschema (go.d.plugin) ([#17164](https://github.com/netdata/netdata/pull/17164), [@ilyam8](https://github.com/ilyam8)) - Add support for multi-config templates in the service discovery configuration (go.d.plugin) ([#17157](https://github.com/netdata/netdata/pull/17157), [@ilyam8](https://github.com/ilyam8)) - Improve go.d.plugin dyncfg config schemas ([#17124](https://github.com/netdata/netdata/pull/17124), [@ilyam8](https://github.com/ilyam8)) - Fix incorrect chart priority for discovered configs (go.d.plugin) ([#17115](https://github.com/netdata/netdata/pull/17115), [@ilyam8](https://github.com/ilyam8)) - Add notice log level (go.d.plugin) ([#17112](https://github.com/netdata/netdata/pull/17112), [@ilyam8](https://github.com/ilyam8)) - Fix pulsar tests (go.d/pulsar) ([#17093](https://github.com/netdata/netdata/pull/17093), [@ilyam8](https://github.com/ilyam8)) - Set max chart id length to 1200 (go.d.plugin) ([#17062](https://github.com/netdata/netdata/pull/17062), [@ilyam8](https://github.com/ilyam8)) - Improve aggregated view (network-viewer.plugin) ([#16960](https://github.com/netdata/netdata/pull/16960), [@ktsaou](https://github.com/ktsaou)) - Show unknown container (network-viewer.plugin) ([#16900](https://github.com/netdata/netdata/pull/16900), [@ktsaou](https://github.com/ktsaou)) - Reorganise code to prepare for functions (ebpf.plugin) ([#16788](https://github.com/netdata/netdata/pull/16788), [@thiagoftsm](https://github.com/thiagoftsm)) - Fix missing aral_freez call (eBPF) ([#16765](https://github.com/netdata/netdata/pull/16765), [@thiagoftsm](https://github.com/thiagoftsm)) - Cleanup network devices rename (proc/proc_net_dev) ([#16745](https://github.com/netdata/netdata/pull/16745), [@ktsaou](https://github.com/ktsaou)) - Improve ebpf-socket function column names (ebpf.plugin) ([#16727](https://github.com/netdata/netdata/pull/16727), [@ilyam8](https://github.com/ilyam8)) - Add double-linked network interfaces collection delay ([#16701](https://github.com/netdata/netdata/pull/16701), [@ilyam8](https://github.com/ilyam8)) - Cleanup code and improve reliability (ebpf.plugin) ([#16669](https://github.com/netdata/netdata/pull/16669), [@thiagoftsm](https://github.com/thiagoftsm)) - Update to create a separate chart for each systemd service rather than a chart dimension (ebpf.plugin) ([#16630](https://github.com/netdata/netdata/pull/16630), [@thiagoftsm](https://github.com/thiagoftsm)) - Include 'lxcfs.service/.control' in the list of filtered cgroups (cgroups.plugin) ([#16620](https://github.com/netdata/netdata/pull/16620), [@ilyam8](https://github.com/ilyam8)) - Exit if unable to locate journal data directories (systemd-journal.plugin) ([#16592](https://github.com/netdata/netdata/pull/16592), [@ilyam8](https://github.com/ilyam8))

Health

All changes - Remove deprecated alert fields from stock alarms ([#17113](https://github.com/netdata/netdata/pull/17113), [@ilyam8](https://github.com/ilyam8)) - Fix filtering by severity for gotify notifications ([#17069](https://github.com/netdata/netdata/pull/17069), [@ilyam8](https://github.com/ilyam8)) - Remove deprecated alert fields: "charts", "os", "host", "plugin" and "module" ([#17048](https://github.com/netdata/netdata/pull/17048), [@ktsaou](https://github.com/ktsaou)) - Add a new alert to notify about systemd timer units that have failed ([#16845](https://github.com/netdata/netdata/pull/16845), [@tkatsoulas](https://github.com/tkatsoulas)) - Implement dynamically configured alerts ([#16779](https://github.com/netdata/netdata/pull/16779), [@ktsaou](https://github.com/ktsaou)) - Add a new alert to detect unexpected HTTP headers ([#16736](https://github.com/netdata/netdata/pull/16736), [@ilyam8](https://github.com/ilyam8))

Packaging/Installation

All changes - Fix installing incorrect systemd service files in native deb installations ([#17159](https://github.com/netdata/netdata/pull/17159), [@tkatsoulas](https://github.com/tkatsoulas)) - Add a macOS build check in the CI pipeline ([#17139](https://github.com/netdata/netdata/pull/17139), [@tkatsoulas](https://github.com/tkatsoulas)) - Remove the "nut" package suggestion in native deb installations ([#17129](https://github.com/netdata/netdata/pull/17129), [@ilyam8](https://github.com/ilyam8)) - Fix incorrect ownership of cups.plugin in native deb installations ([#17087](https://github.com/netdata/netdata/pull/17087), [@tkatsoulas](https://github.com/tkatsoulas)) - Fix incorrect ownership of ioping.plugin in native deb installations ([#17086](https://github.com/netdata/netdata/pull/17086), [@tkatsoulas](https://github.com/tkatsoulas)) - Fix an issue where the ebpf.plugin was recommended for unsupported architectures ([#17085](https://github.com/netdata/netdata/pull/17085), [@tkatsoulas](https://github.com/tkatsoulas)) - Fix pre/post install script names for the network-viewer plugin in native deb installations ([#17084](https://github.com/netdata/netdata/pull/17084), [@tkatsoulas](https://github.com/tkatsoulas)) - Improve message in kickstart if a static build can’t be found ([#17081](https://github.com/netdata/netdata/pull/17081), [@Ferroin](https://github.com/Ferroin)) - Fix determining repo root in Coverity scan script ([#17024](https://github.com/netdata/netdata/pull/17024), [@Ferroin](https://github.com/Ferroin)) - More concretely utilize local modules in our CMake code ([#17022](https://github.com/netdata/netdata/pull/17022), [@Ferroin](https://github.com/Ferroin)) - Update eBPF packages ([#17012](https://github.com/netdata/netdata/pull/17012), [@thiagoftsm](https://github.com/thiagoftsm)) - Integrate Go plugin with build system ([#17005](https://github.com/netdata/netdata/pull/17005), [@Ferroin](https://github.com/Ferroin)) - Bump the version of the installed Go toolchain to 1.22.0 ([#17004](https://github.com/netdata/netdata/pull/17004), [@Ferroin](https://github.com/Ferroin)) - Include Go plugin sources in main repository ([#16997](https://github.com/netdata/netdata/pull/16997), [@Ferroin](https://github.com/Ferroin)) - Move CO-RE headers (integration between eBPF and Network Viewer) ([#16978](https://github.com/netdata/netdata/pull/16978), [@thiagoftsm](https://github.com/thiagoftsm)) - Use C++14 by default when building on systems that support it ([#16972](https://github.com/netdata/netdata/pull/16972), [@Ferroin](https://github.com/Ferroin)) - Split network viewer plugin to its own package ([#16949](https://github.com/netdata/netdata/pull/16949), [@Ferroin](https://github.com/Ferroin)) - Fix "Fluent-Bit" installation ([#16924](https://github.com/netdata/netdata/pull/16924), [@ilyam8](https://github.com/ilyam8)) - Build network-viewer only on Linux ([#16910](https://github.com/netdata/netdata/pull/16910), [@vkalintiris](https://github.com/vkalintiris)) - Set build type to release with debug information, ensuring optimized builds ([#16889](https://github.com/netdata/netdata/pull/16889), [@vkalintiris](https://github.com/vkalintiris)) - Add ARMv6 static builds ([#16853](https://github.com/netdata/netdata/pull/16853), [@Ferroin](https://github.com/Ferroin)) - Fix issue with fetching the latest tag on macOS in kickstart.sh ([#16844](https://github.com/netdata/netdata/pull/16844), [@ilyam8](https://github.com/ilyam8)) - Make the kickstart checksum placeholder value more specific ([#16843](https://github.com/netdata/netdata/pull/16843), [@tkatsoulas](https://github.com/tkatsoulas)) - Fix directory handling in Go toolchain handling script ([#16828](https://github.com/netdata/netdata/pull/16828), [@Ferroin](https://github.com/Ferroin)) - Add script to ensure a usable Go toolchain is installed ([#16815](https://github.com/netdata/netdata/pull/16815), [@Ferroin](https://github.com/Ferroin)) - Apply ASCII-based comparisons to commands in kickstart script that rely on a particular language setting ([#16806](https://github.com/netdata/netdata/pull/16806), [@tkatsoulas](https://github.com/tkatsoulas)) - Remove help text that no longer applies from netdata-installer.sh ([#16805](https://github.com/netdata/netdata/pull/16805), [@vkalintiris](https://github.com/vkalintiris)) - Fix incorrect major version check in updater ([#16803](https://github.com/netdata/netdata/pull/16803), [@Ferroin](https://github.com/Ferroin)) - Change default build directory in installer to `build` ([#16768](https://github.com/netdata/netdata/pull/16768), [@Ferroin](https://github.com/Ferroin)) - Add cap_dac_read_search capability to go.d.plugin ([#16754](https://github.com/netdata/netdata/pull/16754), [@ilyam8](https://github.com/ilyam8)) - Improve removal of the netdata user from groups in uninstaller.sh ([#16742](https://github.com/netdata/netdata/pull/16742), [@ilyam8](https://github.com/ilyam8)) - Update the default netdata.conf configuration file used for native packages ([#16734](https://github.com/netdata/netdata/pull/16734), [@ilyam8](https://github.com/ilyam8)) - Fix handling of hardening flags with Clang ([#16731](https://github.com/netdata/netdata/pull/16731), [@Ferroin](https://github.com/Ferroin)) - Disable logs-management plugin when installing on macOS ([#16708](https://github.com/netdata/netdata/pull/16708), [@ilyam8](https://github.com/ilyam8)) - Remove Ubuntu 23.04 from the CI ([#16694](https://github.com/netdata/netdata/pull/16694), [@tkatsoulas](https://github.com/tkatsoulas)) - Fix enable/disable options for Prometheus remote write in netdata-installer.sh ([#16690](https://github.com/netdata/netdata/pull/16690), [@tkatsoulas](https://github.com/tkatsoulas)) - Disable logs-management plugin when building static packages ([#16684](https://github.com/netdata/netdata/pull/16684), [@ilyam8](https://github.com/ilyam8)) - Fix an issue where install-required-packages.sh wouldn't run due to elevated privileges on macOS ([#16675](https://github.com/netdata/netdata/pull/16675), [@ilyam8](https://github.com/ilyam8)) - Remove unused contrib/rhel directory ([#16672](https://github.com/netdata/netdata/pull/16672), [@ilyam8](https://github.com/ilyam8)) - Update eBPF packages ([#16671](https://github.com/netdata/netdata/pull/16671), [@thiagoftsm](https://github.com/thiagoftsm)) - Add extra build flags to CMakeLists.txt ([#16641](https://github.com/netdata/netdata/pull/16641), [@Ferroin](https://github.com/Ferroin)) - Assorted cleanup of native packaging code ([#16640](https://github.com/netdata/netdata/pull/16640), [@Ferroin](https://github.com/Ferroin)) - Make web directory configurable through CMake variables ([#16638](https://github.com/netdata/netdata/pull/16638), [@ilyam8](https://github.com/ilyam8)) - Improve handling of basic permissions for most scripts on install ([#16629](https://github.com/netdata/netdata/pull/16629), [@Ferroin](https://github.com/Ferroin)) - Improve robustness of netdata-updater.sh ([#16613](https://github.com/netdata/netdata/pull/16613), [@candlerb](https://github.com/candlerb)) - Remove v1 dashboard version check from installer.sh ([#16603](https://github.com/netdata/netdata/pull/16603), [@ilyam8](https://github.com/ilyam8)) - Fix "target_ram" calculation in netdata-installer.sh ([#16602](https://github.com/netdata/netdata/pull/16602), [@ilyam8](https://github.com/ilyam8)) - Improve enable_feature function in installer.sh ([#16601](https://github.com/netdata/netdata/pull/16601), [@ilyam8](https://github.com/ilyam8)) - Allow passing cmake options with NETDATA_CMAKE_OPTIONS ([#16598](https://github.com/netdata/netdata/pull/16598), [@vkalintiris](https://github.com/vkalintiris)) - Add Alpine Linux 3.19 to CI ([#16579](https://github.com/netdata/netdata/pull/16579), [@Ferroin](https://github.com/Ferroin)) - Remove Netdata packages from APT cache when attempting to install ([#16566](https://github.com/netdata/netdata/pull/16566), [@Ferroin](https://github.com/Ferroin)) - Assorted kickstart script fixes ([#16537](https://github.com/netdata/netdata/pull/16537), [@Ferroin](https://github.com/Ferroin)) - Remove openSUSE 15.4 from CI ([#16449](https://github.com/netdata/netdata/pull/16449), [@tkatsoulas](https://github.com/tkatsoulas)) - Remove fedora 37 from CI ([#16422](https://github.com/netdata/netdata/pull/16422), [@tkatsoulas](https://github.com/tkatsoulas)) - Add CMake build system ([#15996](https://github.com/netdata/netdata/pull/15996), [@vkalintiris](https://github.com/vkalintiris)) - Add check to avoid auto-installing new major versions of Netdata ([#15898](https://github.com/netdata/netdata/pull/15898), [@Ferroin](https://github.com/Ferroin)) - Improve support running the Docker entrypoint code as a non-root user ([#15118](https://github.com/netdata/netdata/pull/15118), [@Ferroin](https://github.com/Ferroin))

Documentation

All changes - Improve "Choose your Netdata Cloud theme" doc ([#17172](https://github.com/netdata/netdata/pull/17172), [@Ancairon](https://github.com/Ancairon)) - Add instructions for monitoring NVIDIA GPUs to the Docker installation guide ([#17167](https://github.com/netdata/netdata/pull/17167), [@ilyam8](https://github.com/ilyam8)) - Add documentation for the "Integration URL" field to PagerDuty Cloud integration doc ([#17149](https://github.com/netdata/netdata/pull/17149), [@juacker](https://github.com/juacker)) - Bring back old docs that were containing missing information ([#17146](https://github.com/netdata/netdata/pull/17146), [@Ancairon](https://github.com/Ancairon)) - Remove unnecessary repetition of words in docs ([#17131](https://github.com/netdata/netdata/pull/17131), [@carrychair](https://github.com/carrychair)) - Fix broken link in "Netdata Cloud On-Prem Installation" ([#17118](https://github.com/netdata/netdata/pull/17118), [@tkatsoulas](https://github.com/tkatsoulas)) - Fix typos and improve wording in "Backing up a Netdata Agent" ([#17117](https://github.com/netdata/netdata/pull/17117), [@Ancairon](https://github.com/Ancairon)) - Remove deprecated settings from "Configure alerts" ([#17116](https://github.com/netdata/netdata/pull/17116), [@ilyam8](https://github.com/ilyam8)) - Fix broken links in go.d.plugin markdown files ([#17108](https://github.com/netdata/netdata/pull/17108), [@ilyam8](https://github.com/ilyam8)) - Remove deprecated "foreach" from "Configure alerts" ([#17106](https://github.com/netdata/netdata/pull/17106), [@ilyam8](https://github.com/ilyam8)) - Remove distributed-data-architecture.md ([#17097](https://github.com/netdata/netdata/pull/17097), [@Ancairon](https://github.com/Ancairon)) - Fix broken links ([#17095](https://github.com/netdata/netdata/pull/17095), [@Ancairon](https://github.com/Ancairon)) - Remove docs/netdata-security.md ([#17094](https://github.com/netdata/netdata/pull/17094), [@Ancairon](https://github.com/Ancairon)) - Update "Plugin Functions Tables" docs ([#17071](https://github.com/netdata/netdata/pull/17071), [@car12o](https://github.com/car12o)) - Update "Sizing Netdata Agents" doc ([#17057](https://github.com/netdata/netdata/pull/17057), [@ktsaou](https://github.com/ktsaou)) - Fix links pointing to old go.d repo and update the integrations ([#17040](https://github.com/netdata/netdata/pull/17040), [@Ancairon](https://github.com/Ancairon)) - Update links to Netdata Agent start-stop-restart docs ([#17037](https://github.com/netdata/netdata/pull/17037), [@Ancairon](https://github.com/Ancairon)) - Include information on securing Netdata parent-child communication in "Configuring Metrics Centralization Points" ([#17035](https://github.com/netdata/netdata/pull/17035), [@Ancairon](https://github.com/Ancairon)) - Restructure and update documentation ([#17014](https://github.com/netdata/netdata/pull/17014), [@Ancairon](https://github.com/Ancairon)) - Add "Backing up a Netdata Agent" documentation ([#17006](https://github.com/netdata/netdata/pull/17006), [@luisj1983](https://github.com/luisj1983)) - Correct instructions on creating a startup script in the "Install Netdata on Synology" guide ([#16980](https://github.com/netdata/netdata/pull/16980), [@pschaer](https://github.com/pschaer)) - Improve formatting in "How to optimize the Netdata Agent's performance" ([#16925](https://github.com/netdata/netdata/pull/16925), [@tkatsoulas](https://github.com/tkatsoulas)) - Fix links to the energy efficiency screenshots to main readme file ([#16904](https://github.com/netdata/netdata/pull/16904), [@Aliki92](https://github.com/Aliki92)) - Update "What's New and Coming?"based on Office Hours shared plans to main readme file ([#16895](https://github.com/netdata/netdata/pull/16895), [@hugovalente-pm](https://github.com/hugovalente-pm)) - Improve readability of Webhook Cloud notification documentation ([#16882](https://github.com/netdata/netdata/pull/16882), [@juacker](https://github.com/juacker)) - Remove deprecated db mode "save" from "Database" ([#16864](https://github.com/netdata/netdata/pull/16864), [@Ancairon](https://github.com/Ancairon)) - Fix CNCF link ([#16851](https://github.com/netdata/netdata/pull/16851), [@hugovalente-pm](https://github.com/hugovalente-pm)) - Add documentation on how to configure MS Teams Cloud notifications ([#16834](https://github.com/netdata/netdata/pull/16834), [@papazach](https://github.com/papazach)) - Added instructions on calculating replication history to "Streaming and Replication Reference" ([#16816](https://github.com/netdata/netdata/pull/16816), [@thiagoftsm](https://github.com/thiagoftsm)) - Update provisioning instructions in "Netdata Cloud On-Prem Light PoC" ([#16811](https://github.com/netdata/netdata/pull/16811), [@M4itee](https://github.com/M4itee)) - Add information about the new node permissions to "Role-Based Access model" ([#16791](https://github.com/netdata/netdata/pull/16791), [@vkuznecovas](https://github.com/vkuznecovas)) - Add missing settings to "Streaming and replication reference" ([#16778](https://github.com/netdata/netdata/pull/16778), [@thiagoftsm](https://github.com/thiagoftsm)) - Fix instructions for setting up Telegram notifications ([#16777](https://github.com/netdata/netdata/pull/16777), [@thiagoftsm](https://github.com/thiagoftsm)) - Updated the kickstart URL to https://get.netdata.cloud/kickstart.sh ([#16738](https://github.com/netdata/netdata/pull/16738), [@ilyam8](https://github.com/ilyam8)) - Fix --distro-override parameter name in "Install Netdata with kickstart.sh" ([#16726](https://github.com/netdata/netdata/pull/16726), [@moschlar](https://github.com/moschlar)) - Add the Mobile App notification Integration ([#16715](https://github.com/netdata/netdata/pull/16715), [@sashwathn](https://github.com/sashwathn)) - Add "Require Cloud" column to the functions table in "Netdata Functions" ([#16681](https://github.com/netdata/netdata/pull/16681), [@ilyam8](https://github.com/ilyam8)) - Fix typos and improve wording in "Creating Alerts with Netdata Alerts Configuration Manager" ([#16679](https://github.com/netdata/netdata/pull/16679), [@Ancairon](https://github.com/Ancairon)) - Fix description of "chart labels" in "Configure alerts" ([#16656](https://github.com/netdata/netdata/pull/16656), [@sepek](https://github.com/sepek)) - Fix formatting in "Creating Alerts with Netdata Alerts Configuration Manager" ([#16651](https://github.com/netdata/netdata/pull/16651), [@Ancairon](https://github.com/Ancairon)) - Add practical examples showcasing how to utilize journalctl for querying Netdata logs to "Netdata Logging" ([#16650](https://github.com/netdata/netdata/pull/16650), [@ilyam8](https://github.com/ilyam8)) - Add "Creating Alerts with Netdata Alerts Configuration Manager" ([#16642](https://github.com/netdata/netdata/pull/16642), [@sashwathn](https://github.com/sashwathn)) - Add instructions for installing Netdata in a rootless Docker environment ([#16632](https://github.com/netdata/netdata/pull/16632), [@ilyam8](https://github.com/ilyam8)) - Add energy efficiency image to main readme file ([#16617](https://github.com/netdata/netdata/pull/16617), [@Aliki92](https://github.com/Aliki92)) - Remove deprecated memory mode "map" and "save" ([#16604](https://github.com/netdata/netdata/pull/16604), [@vkalintiris](https://github.com/vkalintiris)) - Update Splunk icon to a dark version for improved visibility ([#16593](https://github.com/netdata/netdata/pull/16593), [@juacker](https://github.com/juacker)) - Add documentation on how to configure Splunk Cloud notifications ([#16586](https://github.com/netdata/netdata/pull/16586), [@juacker](https://github.com/juacker)) - Add a new document explaining Gorilla compression and decompression techniques ([#16553](https://github.com/netdata/netdata/pull/16553), [@vkalintiris](https://github.com/vkalintiris)) - Add an initial version of the "Plugin Functions Tables" documentation ([#16535](https://github.com/netdata/netdata/pull/16535), [@ktsaou](https://github.com/ktsaou))

Other Notable Changes

Improvements - Change query label matching logic ([#16827](https://github.com/netdata/netdata/pull/16827), [@stelfrag](https://github.com/stelfrag)) - Setup sentry-native SDK for reporting crashes ([#16798](https://github.com/netdata/netdata/pull/16798), [@vkalintiris](https://github.com/vkalintiris)) - Add netdata_os_info metric to Prometheus export ([#16756](https://github.com/netdata/netdata/pull/16756), [@colinleroy](https://github.com/colinleroy)) - Rewrite and extend dynamic configuration ([#16702](https://github.com/netdata/netdata/pull/16702), [@ktsaou](https://github.com/ktsaou)) - Track the progress of data queries ([#16574](https://github.com/netdata/netdata/pull/16574), [@ktsaou](https://github.com/ktsaou))
Bug fixes - Fix a crash occurring when failing to create the requested number of tiers ([#16999](https://github.com/netdata/netdata/pull/16999), [@stelfrag](https://github.com/stelfrag)) - Fix an issue where Netdata plugins could inherit unintended sockets or file descriptors during the forking process ([#16881](https://github.com/netdata/netdata/pull/16881), [@ktsaou](https://github.com/ktsaou))
Other - Announce dynamic configuration capability to the Cloud ([#17162](https://github.com/netdata/netdata/pull/17162), [@stelfrag](https://github.com/stelfrag)) - Fix a problem preventing the Agent from starting due to missing SOCK_CLOEXEC on macOS ([#17151](https://github.com/netdata/netdata/pull/17151), [@stelfrag](https://github.com/stelfrag)) - Add a check to ensure that the duration is not negative when sending alert log to the Cloud ([#17144](https://github.com/netdata/netdata/pull/17144), [@stelfrag](https://github.com/stelfrag)) - Add a check to detect self thread when exiting ([#17126](https://github.com/netdata/netdata/pull/17126), [@vkalintiris](https://github.com/vkalintiris)) - Fix health alert dyncfg schema fullPage option ([#17125](https://github.com/netdata/netdata/pull/17125), [@ilyam8](https://github.com/ilyam8)) - Fix memory leak when freeing an array pattern ([#17114](https://github.com/netdata/netdata/pull/17114), [@stelfrag](https://github.com/stelfrag)) - Remove unused go.d.plugin files ([#17110](https://github.com/netdata/netdata/pull/17110), [@ilyam8](https://github.com/ilyam8)) - Improve cleanup of ephemeral hosts during agent startup ([#17104](https://github.com/netdata/netdata/pull/17104), [@stelfrag](https://github.com/stelfrag)) - Reorganize and cleanup database related code ([#17101](https://github.com/netdata/netdata/pull/17101), [@stelfrag](https://github.com/stelfrag)) - Fix ebpf compilation warnings ([#17100](https://github.com/netdata/netdata/pull/17100), [@stelfrag](https://github.com/stelfrag)) - Make watcher thread wait for explicit steps ([#17079](https://github.com/netdata/netdata/pull/17079), [@vkalintiris](https://github.com/vkalintiris)) - Abort the agent if a single shutdown step takes more than 60 seconds ([#17060](https://github.com/netdata/netdata/pull/17060), [@vkalintiris](https://github.com/vkalintiris)) - Fix a typo in the ENABLE_SENTRY cmake variable ([#17059](https://github.com/netdata/netdata/pull/17059), [@vkalintiris](https://github.com/vkalintiris)) - Call the dyncfg interceptor when executing 'test' for a new job ([#17052](https://github.com/netdata/netdata/pull/17052), [@ktsaou](https://github.com/ktsaou)) - Fix alerts jsonschema prototype for latest dyncfg ([#17047](https://github.com/netdata/netdata/pull/17047), [@ktsaou](https://github.com/ktsaou)) - Protect type anomaly rate map with a spinlock ([#17044](https://github.com/netdata/netdata/pull/17044), [@vkalintiris](https://github.com/vkalintiris)) - Do not use backtrace when sentry is enabled ([#17043](https://github.com/netdata/netdata/pull/17043), [@vkalintiris](https://github.com/vkalintiris)) - Add metric and sample count into the api/v2/info response ([#17042](https://github.com/netdata/netdata/pull/17042), [@stelfrag](https://github.com/stelfrag)) - Improved query target cleanup ([#17038](https://github.com/netdata/netdata/pull/17038), [@stelfrag](https://github.com/stelfrag)) - Database and health code cleanup ([#17036](https://github.com/netdata/netdata/pull/17036), [@stelfrag](https://github.com/stelfrag)) - Do not fetch retention on metric release ([#17033](https://github.com/netdata/netdata/pull/17033), [@stelfrag](https://github.com/stelfrag)) - Increase RRD_ID_LENGTH_MAX to 1200 ([#17028](https://github.com/netdata/netdata/pull/17028), [@stelfrag](https://github.com/stelfrag)) - Add support for deleting orphan configurations to dyncfg ([#17023](https://github.com/netdata/netdata/pull/17023), [@ktsaou](https://github.com/ktsaou)) - Correctly mark protobuf as required in find_package ([#17021](https://github.com/netdata/netdata/pull/17021), [@Ferroin](https://github.com/Ferroin)) - Protect metric release in dimension delete callback ([#17020](https://github.com/netdata/netdata/pull/17020), [@stelfrag](https://github.com/stelfrag)) - Reorganize ebpf plugin code for network-viewer ([#17018](https://github.com/netdata/netdata/pull/17018), [@thiagoftsm](https://github.com/thiagoftsm)) - Allow tree for individual IDs ([#17017](https://github.com/netdata/netdata/pull/17017), [@ktsaou](https://github.com/ktsaou)) - Add watcher thread to report shutdown steps ([#17010](https://github.com/netdata/netdata/pull/17010), [@vkalintiris](https://github.com/vkalintiris)) - Fix testing new jobs in dyncfg ([#17009](https://github.com/netdata/netdata/pull/17009), [@ktsaou](https://github.com/ktsaou)) - Abort on non-zero rc during exiting on sentry-enabled builds ([#17008](https://github.com/netdata/netdata/pull/17008), [@vkalintiris](https://github.com/vkalintiris)) - Misc improvements ([#17001](https://github.com/netdata/netdata/pull/17001), [@stelfrag](https://github.com/stelfrag)) - Move diagrams/ under docs/ ([#16998](https://github.com/netdata/netdata/pull/16998), [@vkalintiris](https://github.com/vkalintiris)) - Small code cleanup ([#16996](https://github.com/netdata/netdata/pull/16996), [@vkalintiris](https://github.com/vkalintiris)) - Remove historical changelog and cppcheck ([#16995](https://github.com/netdata/netdata/pull/16995), [@vkalintiris](https://github.com/vkalintiris)) - Remove config macros that are always set ([#16994](https://github.com/netdata/netdata/pull/16994), [@vkalintiris](https://github.com/vkalintiris)) - Move web/ under src/ ([#16992](https://github.com/netdata/netdata/pull/16992), [@vkalintiris](https://github.com/vkalintiris)) - Add spinlock to protect metric release ([#16989](https://github.com/netdata/netdata/pull/16989), [@stelfrag](https://github.com/stelfrag)) - Detect machine GUID change ([#16979](https://github.com/netdata/netdata/pull/16979), [@stelfrag](https://github.com/stelfrag)) - Move collectors/ under src/ ([#16965](https://github.com/netdata/netdata/pull/16965), [@vkalintiris](https://github.com/vkalintiris)) - Improve agent shutdown ([#16959](https://github.com/netdata/netdata/pull/16959), [@stelfrag](https://github.com/stelfrag)) - Add support for testing new jobs to dyncfg ([#16958](https://github.com/netdata/netdata/pull/16958), [@ktsaou](https://github.com/ktsaou)) - Fix path in health integrations ([#16956](https://github.com/netdata/netdata/pull/16956), [@Ancairon](https://github.com/Ancairon)) - Move health/ under src/ ([#16954](https://github.com/netdata/netdata/pull/16954), [@vkalintiris](https://github.com/vkalintiris)) - Do not declare struct meant for internal usage ([#16951](https://github.com/netdata/netdata/pull/16951), [@vkalintiris](https://github.com/vkalintiris)) - Remove cleanup_destroyed_dictionaries call during shutdown ([#16944](https://github.com/netdata/netdata/pull/16944), [@stelfrag](https://github.com/stelfrag)) - Remove duplicate check ([#16936](https://github.com/netdata/netdata/pull/16936), [@stelfrag](https://github.com/stelfrag)) - Move daemon/ under src/ ([#16933](https://github.com/netdata/netdata/pull/16933), [@vkalintiris](https://github.com/vkalintiris)) - Split dictionary into multiple files ([#16920](https://github.com/netdata/netdata/pull/16920), [@ktsaou](https://github.com/ktsaou)) - Release label key if already in use ([#16916](https://github.com/netdata/netdata/pull/16916), [@stelfrag](https://github.com/stelfrag)) - Add support for the info parameter to all external plugin functions ([#16915](https://github.com/netdata/netdata/pull/16915), [@ktsaou](https://github.com/ktsaou)) - Move exporting/ under src/ ([#16913](https://github.com/netdata/netdata/pull/16913), [@vkalintiris](https://github.com/vkalintiris)) - Rename network functions ([#16908](https://github.com/netdata/netdata/pull/16908), [@ktsaou](https://github.com/ktsaou)) - Assorted build-related changes ([#16906](https://github.com/netdata/netdata/pull/16906), [@vkalintiris](https://github.com/vkalintiris)) - Move fluent-bit & logsmanagement under src/ ([#16903](https://github.com/netdata/netdata/pull/16903), [@vkalintiris](https://github.com/vkalintiris)) - updated permissions map comment ([#16902](https://github.com/netdata/netdata/pull/16902), [@ktsaou](https://github.com/ktsaou)) - Use spinlock for reference counting ([#16901](https://github.com/netdata/netdata/pull/16901), [@vkalintiris](https://github.com/vkalintiris)) - Move aclk/ under src/ ([#16899](https://github.com/netdata/netdata/pull/16899), [@vkalintiris](https://github.com/vkalintiris)) - Enable sentry sessions ([#16898](https://github.com/netdata/netdata/pull/16898), [@vkalintiris](https://github.com/vkalintiris)) - Do not cancel detection thread ([#16897](https://github.com/netdata/netdata/pull/16897), [@vkalintiris](https://github.com/vkalintiris)) - Create a top-level directory for the source code ([#16896](https://github.com/netdata/netdata/pull/16896), [@vkalintiris](https://github.com/vkalintiris)) - Remove tags field from RRD hosts ([#16894](https://github.com/netdata/netdata/pull/16894), [@vkalintiris](https://github.com/vkalintiris)) - Add support for using netlink when libmnl is available to local-sockets ([#16893](https://github.com/netdata/netdata/pull/16893), [@ktsaou](https://github.com/ktsaou)) - Fix order of opening a file and checking its inode in local-sockets ([#16887](https://github.com/netdata/netdata/pull/16887), [@ktsaou](https://github.com/ktsaou)) - Fix crash on query_progress initializer ([#16885](https://github.com/netdata/netdata/pull/16885), [@ktsaou](https://github.com/ktsaou)) - Remove references to map and save modes in stream.conf ([#16874](https://github.com/netdata/netdata/pull/16874), [@vkalintiris](https://github.com/vkalintiris)) - Fix coverity issues ([#16873](https://github.com/netdata/netdata/pull/16873), [@stelfrag](https://github.com/stelfrag)) - Add support for network namespaces to local-listeners ([#16867](https://github.com/netdata/netdata/pull/16867), [@ktsaou](https://github.com/ktsaou)) - Fix coverity issue ([#16866](https://github.com/netdata/netdata/pull/16866), [@stelfrag](https://github.com/stelfrag)) - Fix an issue where alerts were applied based on order instead of the matching chart criteria ([#16862](https://github.com/netdata/netdata/pull/16862), [@ktsaou](https://github.com/ktsaou)) - Add support for sockets direction to local-listeners ([#16861](https://github.com/netdata/netdata/pull/16861), [@ktsaou](https://github.com/ktsaou)) - Improve service thread shutdown ([#16841](https://github.com/netdata/netdata/pull/16841), [@stelfrag](https://github.com/stelfrag)) - New Permissions System ([#16837](https://github.com/netdata/netdata/pull/16837), [@ktsaou](https://github.com/ktsaou)) - Add brotli and libyaml to buildinfo ([#16830](https://github.com/netdata/netdata/pull/16830), [@ktsaou](https://github.com/ktsaou)) - Add explicit callback types for readability ([#16820](https://github.com/netdata/netdata/pull/16820), [@vkalintiris](https://github.com/vkalintiris)) - Improve the robustness of host prefix verification ([#16813](https://github.com/netdata/netdata/pull/16813), [@ilyam8](https://github.com/ilyam8)) - Move mqtt_websockets under aclk/ ([#16804](https://github.com/netdata/netdata/pull/16804), [@vkalintiris](https://github.com/vkalintiris)) - Add additional fail reason and source during database initialization ([#16794](https://github.com/netdata/netdata/pull/16794), [@stelfrag](https://github.com/stelfrag)) - Use original summary for alert transition ([#16793](https://github.com/netdata/netdata/pull/16793), [@stelfrag](https://github.com/stelfrag)) - Free key and search, replace patterns ([#16789](https://github.com/netdata/netdata/pull/16789), [@stelfrag](https://github.com/stelfrag)) - Use named constants for keyword tokens ([#16787](https://github.com/netdata/netdata/pull/16787), [@vkalintiris](https://github.com/vkalintiris)) - Remove h2o header from libnetdata ([#16780](https://github.com/netdata/netdata/pull/16780), [@vkalintiris](https://github.com/vkalintiris)) - Delete unused variable ([#16776](https://github.com/netdata/netdata/pull/16776), [@vkalintiris](https://github.com/vkalintiris)) - Use unsigned char for binary data in mqtt ([#16775](https://github.com/netdata/netdata/pull/16775), [@vkalintiris](https://github.com/vkalintiris)) - Fix compiler warnings ([#16774](https://github.com/netdata/netdata/pull/16774), [@vkalintiris](https://github.com/vkalintiris)) - Allow POST requests to be received from ACLK ([#16770](https://github.com/netdata/netdata/pull/16770), [@ktsaou](https://github.com/ktsaou)) - Keep transaction id of request headers ([#16769](https://github.com/netdata/netdata/pull/16769), [@ktsaou](https://github.com/ktsaou)) - Improvements for /api/v1/config tree and swagger documentation ([#16764](https://github.com/netdata/netdata/pull/16764), [@ktsaou](https://github.com/ktsaou)) - Fix compiler warnings ([#16763](https://github.com/netdata/netdata/pull/16763), [@ktsaou](https://github.com/ktsaou)) - Fix cmake _GNU_SOURCE warnings ([#16761](https://github.com/netdata/netdata/pull/16761), [@ktsaou](https://github.com/ktsaou)) - Fix sanitizer errors ([#16759](https://github.com/netdata/netdata/pull/16759), [@ktsaou](https://github.com/ktsaou)) - Report timestamps with progress ([#16758](https://github.com/netdata/netdata/pull/16758), [@ktsaou](https://github.com/ktsaou)) - Add schemas to /usr/lib/netdata/conf.d/schema.d ([#16757](https://github.com/netdata/netdata/pull/16757), [@ktsaou](https://github.com/ktsaou)) - Recursively merge mqtt_websockets ([#16755](https://github.com/netdata/netdata/pull/16755), [@vkalintiris](https://github.com/vkalintiris)) - Name storage engine variables consistently ([#16753](https://github.com/netdata/netdata/pull/16753), [@vkalintiris](https://github.com/vkalintiris)) - Address sanitizer through CMake and use it for unit tests ([#16748](https://github.com/netdata/netdata/pull/16748), [@vkalintiris](https://github.com/vkalintiris)) - Improve the error message when accessing functions ([#16692](https://github.com/netdata/netdata/pull/16692), [@ktsaou](https://github.com/ktsaou)) - Fix linking issues for log2journal and netdatacli against libnetdata ([#16688](https://github.com/netdata/netdata/pull/16688), [@ktsaou](https://github.com/ktsaou)) - Fatal relaxation of unknown page types ([#16682](https://github.com/netdata/netdata/pull/16682), [@vkalintiris](https://github.com/vkalintiris)) - Fix cmake missing defines ([#16680](https://github.com/netdata/netdata/pull/16680), [@ktsaou](https://github.com/ktsaou)) - Set log level of the too-old-data message to debug ([#16663](https://github.com/netdata/netdata/pull/16663), [@ilyam8](https://github.com/ilyam8)) - Improve context load ([#16659](https://github.com/netdata/netdata/pull/16659), [@stelfrag](https://github.com/stelfrag)) - Fix compilation error when using --disable-dbengine ([#16645](https://github.com/netdata/netdata/pull/16645), [@stelfrag](https://github.com/stelfrag)) - Remove code relying on autotools ([#16634](https://github.com/netdata/netdata/pull/16634), [@vkalintiris](https://github.com/vkalintiris)) - Fix UB of unaligned loads/stores and signed shifts ([#16628](https://github.com/netdata/netdata/pull/16628), [@vkalintiris](https://github.com/vkalintiris)) - Fix coverity issues, logically dead code and error checking ([#16618](https://github.com/netdata/netdata/pull/16618), [@stelfrag](https://github.com/stelfrag)) - Fix small coverity issue ([#16616](https://github.com/netdata/netdata/pull/16616), [@stelfrag](https://github.com/stelfrag)) - Remove CPack stuff from CMake ([#16608](https://github.com/netdata/netdata/pull/16608), [@vkalintiris](https://github.com/vkalintiris)) - Remove includes outside libnetdata ([#16607](https://github.com/netdata/netdata/pull/16607), [@vkalintiris](https://github.com/vkalintiris)) - Remove build/ ([#16600](https://github.com/netdata/netdata/pull/16600), [@vkalintiris](https://github.com/vkalintiris)) - Cleanup am files ([#16597](https://github.com/netdata/netdata/pull/16597), [@vkalintiris](https://github.com/vkalintiris)) - Handle coverity issues related to Y2K38_SAFETY ([#16583](https://github.com/netdata/netdata/pull/16583), [@stelfrag](https://github.com/stelfrag)) - Update naming for swagger api ([#16564](https://github.com/netdata/netdata/pull/16564), [@tkatsoulas](https://github.com/tkatsoulas)) - Code cleanup ([#16542](https://github.com/netdata/netdata/pull/16542), [@ktsaou](https://github.com/ktsaou))

Deprecation notice

Changed in this release

All depreciated items from the v1.44.0 notice have been addressed except for enabling gorilla compression by default.

Additionally, the following Alert options have been deprecated in this release. While Netdata will still understand these options when
reading existing alert configurations for now, we recommend updating your custom alert configurations to use the
replacements listed below. Compatibility with these deprecated options might be removed in a future release.

| Option | Use instead |
|--------------------------------------|:---------------------------------:|
| foreach DIMENSIONS (lookup line) | - |
| charts | - |
| os | host labels: _os=X |
| host | host labels: _hostname=X |
| plugin | chart labels: _collect_plugin=X |
| module | chart labels: _collect_module=X |

Where X is a simple pattern.

Netdata Release Meetup

Join the Netdata team on the 25th of March at 17:00 UTC for the Netdata Release Meetup.

Together we’ll cover:

  • Release Highlights.
  • Acknowledgments.
  • Q&A with the community.

RSVP now - we look forward to meeting you.

Support options

As we grow, we stay committed to providing the best support ever seen from an open-source solution. Should you encounter an issue with any of the changes made in this release or any feature in the Netdata Agent, feel free to contact us through one of the following channels:

  • Netdata Learn: Find documentation, guides, and reference material for monitoring and troubleshooting your systems with Netdata.
  • GitHub Issues: Make use of the Netdata repository to report bugs or open a new feature request.
  • GitHub Discussions: Join the conversation around the Netdata development process and be a part of it.
  • Community Forums: Visit the Community Forums and contribute to the collaborative knowledge base.
  • Discord Server: Jump into the Netdata Discord and hang out with like-minded sysadmins, DevOps, SREs, and other troubleshooters. More than 2000 engineers are already using it!

Details

date
March 21, 2024, 1:48 p.m.
name
v1.45.0
type
Minor
πŸ‘‡
Register or login to:
  • πŸ”View and search all Netdata releases.
  • πŸ› οΈCreate and share lists to track your tools.
  • 🚨Setup notifications for major, security, feature or patch updates.
  • πŸš€Much more coming soon!
Continue with GitHub
Continue with Google
or