2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00
Commit Graph

2860 Commits

Author SHA1 Message Date
Steve Schnepp
066bec8d0b Merge pull request #622 from steveschnepp/multicpu1sec-c
Multicpu1sec c optimsations
2015-05-30 10:40:05 +02:00
Steve Schnepp
9901e00140 p/multicpu1sec-c: keep the files open 2015-05-26 20:56:57 +00:00
Steve Schnepp
2db160e268 p/multicpu1sec-c: use posix IO instead of stdlib 2015-05-26 20:50:26 +00:00
Stig Sandbeck Mathisen
f444e600c9 Merge pull request #620 from exhuma/fix/postgres_space_
Plugin runs, even if no access to list DBs.
2015-05-26 19:02:33 +02:00
Michel Albert
d6465721f3 Stack postfix mailqueues instead of overlapping.
It is very hard to see the real values in the postfix queue when they
are overlapping. Having a stacked graph eleviates this whil still
retaining all the necessary data.
2015-05-26 16:01:48 +02:00
Michel Albert
a8e524449d Plugin runs, even if no access to list DBs.
If the user as whom "munin" connects has no rights to list existing DBs,
the plugin crashes. Even though the rest of the code is OK. Listing DBs
is only necessary in the case of auto-configuring the plugin. Not for
running it.

This removes the line which causes the bug. The variable which is set in
this line is anyway not used.
2015-05-26 15:52:44 +02:00
Stig Sandbeck Mathisen
a52f8e49c9 Merge pull request #619 from smith153/master
Add modem-nvg510
2015-05-26 11:01:03 +02:00
Samuel Smith
ab215a5436 Add autoconf support 2015-05-25 16:08:34 -05:00
Stig Sandbeck Mathisen
4f6929be39 Merge pull request #617 from HeisSpiter/master
cyrus-imapd:
2015-05-23 21:12:42 +02:00
Stig Sandbeck Mathisen
403bba18fa Merge pull request #618 from xtavras/kvm_fix
fixed kvm_* plugins
2015-05-23 21:11:32 +02:00
Samuel Smith
98afc91e34 Add modem-nvg510
Tracks most stats reported from NVG510 DSL modems
2015-05-23 12:19:47 -05:00
Stanislav Kopp
5715bb2408 fixed regex for "vm_name" resolv, so VMs with dash in the name will be
displayed correctly
2015-05-21 15:40:11 +02:00
Pierre Schweitzer
888d91f4e6 cyrus-imapd:
First, try to look for proc_path: config parameter.
If it doesn't exist, fallback to old method, and extrapolate the configdirectory: config parameter
2015-05-20 15:24:30 +02:00
Stig Sandbeck Mathisen
8537e6fd02 Merge pull request #615 from elfurbe/zfsonlinux_stats_
Re-submit zfsonlinux_stats_
2015-05-16 11:48:37 +02:00
amichel
c147534385 Change interpreter to bash, [[ is just better 2015-05-16 01:59:27 -07:00
Adam Michel
26cac8f856 Forgot to use abstracted variables for stat files 2015-05-15 17:36:57 -07:00
Adam Michel
940fe45145 Refactor of variable assignment method 2015-05-15 17:28:14 -07:00
amichel
7f928fb5fb Re-submit zfsonlinux_stats_ 2015-05-15 10:16:14 -07:00
Stig Sandbeck Mathisen
1a3bfee654 Merge pull request #595 from Zumata/master
Fixed typo in rabbitmq_queue_memory
2015-05-05 13:49:12 +02:00
Stig Sandbeck Mathisen
2fa45511c6 Merge pull request #563 from elfurbe/zfs_list
Zfs list
2015-05-05 13:48:36 +02:00
Stig Sandbeck Mathisen
c39ff9fe6d Merge pull request #562 from elfurbe/zfsonlinux_stats_
Added zfsonlinux_stats plugin
2015-05-05 13:48:16 +02:00
Stig Sandbeck Mathisen
4df8dcdba8 Merge pull request #549 from roobre/master
Fixed sent/received count and replaced wc -l with -c
2015-05-05 13:47:54 +02:00
Stig Sandbeck Mathisen
387652afa5 Merge pull request #597 from sugamasao/sugamasao-patch-1
unicorn_ "unicorn_rails" process not working
2015-05-05 13:43:36 +02:00
Stig Sandbeck Mathisen
f5e4c2d36c Merge pull request #606 from leeclemens/fix_php_apc_grammar
Make capitalization and grammar consistent
2015-05-05 13:42:59 +02:00
Stig Sandbeck Mathisen
d32dbf230a Merge pull request #612 from googley/master
fix old wrong variable
2015-05-05 13:41:41 +02:00
Stig Sandbeck Mathisen
b6bec53396 Merge pull request #613 from mittyorz/disk/raid/refactor
refactoring, bugfix and enhancement for disk/raid plugin
2015-05-05 13:38:08 +02:00
Stig Sandbeck Mathisen
d4659781a5 Merge pull request #614 from mittyorz/disk/raid-mismatch-count/fix
fix - remove error message, fetch correct count source
2015-05-05 13:37:03 +02:00
Ken-ichi Mito
48d0a2e2b0 fix - remove error message, fetch correct count source
* redirect error message of `ls` to /dev/null
* fetch mismatch_cnt to get correct count

* https://www.kernel.org/doc/Documentation/md.txt
  * sync_completed: the number of sectors that have been completed
  * mismatch_cnt: the number of errors that are found
2015-05-05 01:02:49 +09:00
Ken-ichi Mito
6284302ae1 enhancement - fetch remaining time of array rebuilding and show them on config
* add info about remaining time, read-only status
 * change label to follow b39d26e
2015-05-04 18:47:10 +09:00
Ken-ichi Mito
760b14f554 enhancement - use only /proc/mdstat, stop using /sbin/mdadm
* mdadm needs super-user privileges, but /proc/mdstat is readable for nobody
 * fetch an array state from mdstat 'reshape|check|resync|recovery'
  * reshape, recovery: rebuilding array -> set percent to _rebuild.value
  * check, resync: data scrubbing or mirror rebuilding => set percent to _check.value
   * resync=DELAYED|PENDING => set both to zero, because details are unknown even if using mdadm

 * more info about /proc/mdstat => kernel src:/drivers/md/md.c, md_seq_show()
2015-05-04 18:45:46 +09:00
Ken-ichi Mito
9845279a30 fix - mdadm has '--readonly' option to make the array 'active (read-only)' 2015-05-04 18:11:13 +09:00
Ken-ichi Mito
2670e4dc26 refactoring - split a single regex matching to three matchings
* one line regular expression matching to multiline text is a bit hard to picture
 * apply regular expressions to each line
  * first line should like "active raid1 sda1[0] sdc1[2] sdb1[1]"
  * second line should like "123456 blocks super 1.2 [2/2] [UU]"
  * third line will appear when the array is in action
2015-05-04 18:09:13 +09:00
Ken-ichi Mito
2e0acaca2b refactoring - replace TAB with 8 spaces, use lexical variable for file handle
* reduce indentation of local($/)
2015-05-04 14:56:30 +09:00
Élie
2848fee19d fix old wrong variable 2015-04-29 11:28:38 +02:00
Stig Sandbeck Mathisen
c4eb877198 Merge pull request #611 from Foxlik/patch-1
mongo_collection_ to track per-database statistics

Thanks :)
2015-04-17 13:24:25 +02:00
Foxlik
22621b6a8b mongo_collection_ to track per-database statistics
Modified version of plugins from https://github.com/pcdummy/mongomon that composes all the plugins into one script.
It works fine, but still leaves a room for future improvement if anyone is interested.
2015-04-17 12:50:25 +02:00
Stig Sandbeck Mathisen
19f2a470c1 Merge pull request #608 from yoe/zfs-fixes
zfs-filesystem-graph: remove --upper-limit

Thanks
2015-04-16 14:33:14 +02:00
Wouter Verhelst
9fd750dfc4 zfs-filesystem-graph: remove --upper-limit
Providing a --upper-limit parameter is only useful if the size of the
filesystem never changes. On ZFS, this assumption is only true for the
zpool; for all other filesystems, the available space is shared, and the
totalled values will vary. When this is the case, the --upper-limit
parameter will obscure peaks in the graph.
2015-04-15 23:53:38 +02:00
Lee Clemens
edff2bdc5c Make capitalization and grammar consistent 2015-04-15 12:14:52 -04:00
Steve Schnepp
7d88587fb6 multicpu1sec-c: use plain POSIX instead of stdlib
As it will be used every second, we should limit the overhead
2015-03-31 22:17:16 +00:00
Steve Schnepp
6ed404cbc9 multicpu1sec-c: ignoring generated files 2015-03-31 20:33:54 +00:00
Stig Sandbeck Mathisen
4a6b17b7bd Merge pull request #594 from rrzefox/new_allnet_plugin
new plugin for monitoring allnet ip sensoric devices (e.g. ALL4500)
2015-03-26 21:01:51 +01:00
Stig Sandbeck Mathisen
feef1d04d1 Merge pull request #605 from mikelolasagasti/php-opcache-add-wasted-memory
Add wasted memory to the graph
2015-03-26 21:00:11 +01:00
Mikel Olasagasti Uranga
ec4951b732 Add wasted memory to the graph, now the sum is always the total assigned memory 2015-03-26 19:03:11 +01:00
Steve Schnepp
ccf8e71d30 Merge pull request #604 from mikelolasagasti/normalize-php
Normalize php's plugin categories
2015-03-26 10:05:54 +01:00
Mikel Olasagasti Uranga
2ad552cb04 Normalize php's plugin categories 2015-03-25 15:13:27 +01:00
Stig Sandbeck Mathisen
7264ba7d09 Merge pull request #599 from driskell/feature/redis_graph_title_prefix
Add TITLE_PREFIX to redis_
2015-03-16 14:08:04 +01:00
Jason Woods
8fef176a3e Add TITLE_PREFIX to redis_ 2015-03-16 12:54:21 +00:00
Steve Schnepp
c10abbef57 Merge pull request #602 from AronNovak/backup
General purpose backup monitoring plugin
2015-03-15 10:05:50 +01:00
Stig Sandbeck Mathisen
f05e3897d5 Merge pull request #601 from sugamasao/feature-unicorn-change-pid-name
unicorn_memory_status/unicorn_status change pid name
2015-03-14 21:03:45 +01:00