Merge branch 'collectd-4.9'
[collectd.git] / src / apache.c
index ad877b5..39849e6 100644 (file)
@@ -688,6 +688,9 @@ static int apache_read_host (user_data_t *user_data) /* {{{ */
                        else if ((strcmp (fields[0], "BusyServers:") == 0) /* Apache 1.* */
                                        || (strcmp (fields[0], "BusyWorkers:") == 0) /* Apache 2.* */)
                                submit_gauge ("apache_connections", NULL, atol (fields[1]), st);
+                       else if ((strcmp (fields[0], "IdleServers:") == 0) /* Apache 1.x */
+                                       || (strcmp (fields[0], "IdleWorkers:") == 0) /* Apache 2.x */)
+                               submit_gauge ("apache_idle_workers", NULL, atol (fields[1]), st);
                }
        }