Skip to content

Commit

Permalink
Windows Alerts Improvements (netdata#18785)
Browse files Browse the repository at this point in the history
* add network interface speed chart and variables

* enable traffic overflow alerts on windows

* enabled interface drops and errors; enabled alert packet storm

* added interface queue length

* added network interfaces offloading technologies
  • Loading branch information
ktsaou authored Oct 15, 2024
1 parent d8c5963 commit 9b25da5
Show file tree
Hide file tree
Showing 6 changed files with 393 additions and 17 deletions.
2 changes: 2 additions & 0 deletions src/collectors/proc.plugin/proc_net_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,8 @@ static struct netdev {
// ----------------------------------------------------------------------------

static void netdev_charts_release(struct netdev *d) {
rrdvar_chart_variable_release(d->st_bandwidth, d->chart_var_speed);

if(d->st_bandwidth) rrdset_is_obsolete___safe_from_collector_thread(d->st_bandwidth);
if(d->st_packets) rrdset_is_obsolete___safe_from_collector_thread(d->st_packets);
if(d->st_errors) rrdset_is_obsolete___safe_from_collector_thread(d->st_errors);
Expand Down
Loading

0 comments on commit 9b25da5

Please sign in to comment.