forked from munin-monitoring/munin-node-win32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmunin-node.ini
627 lines (571 loc) · 15.5 KB
/
munin-node.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
[Plugins]
; Plugin Section, 1 enables plugin, 0 disables
Disk=1
Memory=1
Processes=1
Network=1
MbmTemp=1
MbmVoltage=1
MbmFan=1
MbmMhz=1
SMART=0
HD=0
Cpu=1
SpeedFan=0
External=1
ExternalTimeout=5
[DiskPlugin]
; Default Warning and Critical values for % space used
Warning=92
Critical=98
[ExternalPlugin]
; For External Plugins just add an entry with the path to the program to run
; It doesn't matter what the name of the name=value pair is
;Plugin01=C:\Users\Jory\Documents\Visual Studio Projects\munin-node\src\plugins\python\disk_free.py
;Plugin02=c:\1\runaway.py
[PerfCounterPlugin_disktime]
DropTotal=1
Object=LogicalDisk
Counter=% Disk Time
CounterFormat=double
CounterMultiply=1.000000
GraphTitle=Disk Time
GraphCategory=system
GraphArgs=--base 1000 -l 0
GraphDraw=LINE
[PerfCounterPlugin_processor]
DropTotal=1
Object=Processor
Counter=% Processor Time
CounterFormat=double
CounterMultiply=1.000000
GraphTitle=Processor Time
GraphCategory=system
GraphArgs=--base 1000 -l 0
GraphDraw=LINE
[PerfCounterPlugin_uptime]
; This is a section for the Performance Counter plugin
; The Object and Counter settings are used to access the Performance Counter
; For uptime this would result in \System\System Up Time
; The Graph settings are reported to munin
; The DropTotal setting will drop the last instance from the list, which is often _Total
; Has no effect on single instance counters (Uptime)
; The CounterFormat setting controls what format the counter value is read in as a double, int, or large (int64).
; If CounterFormat = int - then munin will output integer formatted numbers so that DERIVE can work.
; The CounterMultiply setting sets a value the counter value is multiplied by, use it to adjust the scale
; 1.1574074074074073e-005 is the result of(1 / 86400.0), the uptime counter reports seconds and we want to report days.
; So we want to divide the counter value by the number of seconds in a day, 86400.
Object=System
Counter=System Up Time
GraphTitle=Uptime
GraphCategory=system
GraphDraw=AREA
GraphArgs=--base 1000 -l 0
DropTotal=0
CounterFormat=large
CounterMultiply=1.1574074074074073e-005
;[PerfCounterPlugin_smtpmessagessent]
;CounterType allows specifying the RRD type for the series (this is case sensitive). DERIVE is particularly handy
;If you use derive then you need to set CounterFormat to int because RRD wont do DERIVE for floats.
;this also automatically sets your counter.min = 0 - becuase this is reccomended.
;DropTotal=1
;Object=SMTP Server
;Counter=Messages Sent Total
;CounterFormat=int
;CounterMultiply=1.000000
;CounterType=DERIVE
;GraphTitle=Messages sent
;GraphCategory=smtp server
;GraphArgs=--base 1000 -l 0
;GraphDraw=LINE
;[PerfCounterPlugin_Threads]
;Object=System
;Counter=Threads
;GraphTitle=Number of Threads
;GraphCategory=System
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0 --upper-limit 100
;DropTotal=0
;CounterFormat=int
;CounterMultiply=1.000000
;[PerfCounterPlugin_ErrorSystem]
;Object=Server
;Counter=Errors System
;GraphTitle=Errors System
;GraphCategory=System
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0 --upper-limit 100
;DropTotal=0
;CounterFormat=int
;CounterMultiply=1.000000
;CounterType=DERIVE
[PerfCounterPlugin_MemoryAvailableMBytes]
Object=Memory
Counter=Available Bytes
GraphTitle=Memory Available Bytes
GraphCategory=Memory
GraphDraw=AREA
GraphArgs=--base 1024 --lower-limit 0
DropTotal=0
CounterFormat=large
CounterMultiply=1.000000
[PerfCounterPlugin_MemoryCommittedMBytes]
Object=Memory
Counter=Committed Bytes
GraphTitle=Memory Committed Bytes
GraphCategory=Memory
GraphDraw=AREA
GraphArgs=--base 1024 --lower-limit 0
DropTotal=0
CounterFormat=large
CounterMultiply=1.000000
[PerfCounterPlugin_PageingFileUsage]
Object=Paging File
Counter=% Usage
GraphTitle=Paging File(_Total) % Usage
GraphCategory=Memory
GraphDraw=AREA
GraphArgs=--base 1000 --lower-limit 0 --upper-limit 100
DropTotal=1
CounterFormat=int
CounterMultiply=1.000000
;[PerfCounterPlugin_PageFaultsSec]
;Object=Memory
;Counter=Page Faults/sec
;GraphTitle=Page Faults/sec
;GraphCategory=Memory
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0 --upper-limit 100
;DropTotal=0
;CounterFormat=double
;CounterMultiply=1.000000
[PerfCounterPlugin_PageReadsSec]
Object=Memory
Counter=Page Reads/sec
GraphTitle=Page Reads/sec
GraphCategory=Memory
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0 --upper-limit 100
DropTotal=0
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_PageWritesSec]
Object=Memory
Counter=Page Writes/sec
GraphTitle=Page Writes/sec
GraphCategory=Memory
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0 --upper-limit 100
DropTotal=0
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_PagesSec]
Object=Memory
Counter=Pages/sec
GraphTitle=Pages/sec
GraphCategory=Memory
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=0
CounterFormat=double
CounterMultiply=1.000000
;[PerfCounterPlugin_PageInputsSec]
;Object=Memory
;Counter=Page Input/sec
;GraphTitle=Page Input/sec
;GraphCategory=Memory
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;DropTotal=0
;CounterFormat=double
;CounterMultiply=1.000000
;[PerfCounterPlugin_CacheBytes]
;Object=Memory
;Counter=Cache Bytes
;GraphTitle=Cache Bytes
;GraphCategory=Memory
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;DropTotal=0
;CounterFormat=double
;CounterMultiply=1.000000
;[PerfCounterPlugin_PhysicalDiskSecRead]
;Object=PhysicalDisk
;Counter=Avg. Disk sec/Read
;GraphTitle=PhysicalDisk(_Total) Avg. Disk sec/Read
;GraphCategory=Disk
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;DropTotal=1
;CounterFormat=double
;CounterMultiply=1.000000
;[PerfCounterPlugin_PhysicalDiskSecWrite]
;Object=PhysicalDisk
;Counter=Avg. Disk sec/Write
;GraphTitle=PhysicalDisk(_Total) Avg. Disk sec/Write
;GraphCategory=Disk
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;DropTotal=1
;CounterFormat=double
;CounterMultiply=1.000000
;[PerfCounterPlugin_FileReadOpSec]
;Object=System
;Counter=File Read Operations/sec
;GraphTitle=File Read Operations/sec
;GraphCategory=Disk
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;DropTotal=1
;CounterFormat=double
;CounterMultiply=1.000000
;[PerfCounterPlugin_FileWriteOpSec]
;Object=System
;Counter=File Write Operations/sec
;GraphTitle=File Write Operations/sec
;GraphCategory=Disk
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;DropTotal=1
;CounterFormat=double
;CounterMultiply=1.000000
[PerfCounterPlugin_DiskWriteIOPS]
Object=PhysicalDisk
Counter=Disk Writes/sec
GraphTitle=Disk Write IOPS
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_DiskReadIOPS]
Object=PhysicalDisk
Counter=Disk Reads/sec
GraphTitle=Disk Read IOPS
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_DiskIOPS]
Object=PhysicalDisk
Counter=Disk Transfers/sec
GraphTitle=Disk IOPS
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_DiskWriteBytes]
Object=PhysicalDisk
Counter=Avg. Disk Bytes/Write
GraphTitle=Avg. Disk Bytes/Write
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_DiskReadBytes]
Object=PhysicalDisk
Counter=Avg. Disk Bytes/Read
GraphTitle=Avg. Disk Bytes/Read
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_DiskWriteLatency]
Object=PhysicalDisk
Counter=Avg. Disk sec/Write
GraphTitle=Avg. Disk Latency/Write
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_DiskReadLatency]
Object=PhysicalDisk
Counter=Avg. Disk sec/Read
GraphTitle=Avg. Disk Latency/Read
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_DiskLatency]
Object=PhysicalDisk
Counter=Avg. Disk sec/Transfer
GraphTitle=Avg. Disk Latency
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_DiskIdleTime]
Object=PhysicalDisk
Counter=% Idle Time
GraphTitle=% Disk Idle Time
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 -l 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_AvgDiskQueueLength]
Object=PhysicalDisk
Counter=Avg. Disk Queue Length
GraphTitle=Avg. Disk Queue Length
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_CurDiskQueueLength]
Object=PhysicalDisk
Counter=Current Disk Queue Length
GraphTitle=Current Disk Queue Length
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
[PerfCounterPlugin_DiskSplitIO]
Object=PhysicalDisk
Counter=Split IO/Sec
GraphTitle=Split IO/Sec
GraphCategory=Disk
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
DropTotal=1
CounterFormat=double
CounterMultiply=1.000000
;[PerfCounterPlugin_IOReadOpSec]
;Object=Process
;Counter=IO Read Operations/sec
;GraphTitle=IO Read Operations/sec
;GraphCategory=processes
;GraphDraw=AREASTACK
;GraphArgs=--base 1000 --lower-limit 0
;DropTotal=1
;CounterFormat=double
;CounterMultiply=1.000000
;[PerfCounterPlugin_IOWriteOpSec]
;Object=Process
;Counter=IO Write Operations/sec
;GraphTitle=IO Write Operations/sec
;GraphCategory=processes
;GraphDraw=AREASTACK
;GraphArgs=--base 1000 --lower-limit 0
;DropTotal=1
;CounterFormat=double
;CounterMultiply=1.000000
;[PerfCounterPlugin_IODataOpSec]
;Object=Process
;Counter=IO Data Operations/sec
;GraphTitle=IO Data Operations/sec
;GraphCategory=processes
;GraphDraw=AREASTACK
;GraphArgs=--base 1000 --lower-limit 0
;DropTotal=1
;CounterFormat=double
;CounterMultiply=1.000000
;[PerfCounterPlugin_IOOtherOpSec]
;Object=Process
;Counter=IO Other Operations/sec
;GraphTitle=IO Other Operations/sec
;GraphCategory=processes
;GraphDraw=AREASTACK
;GraphArgs=--base 1000 --lower-limit 0
;DropTotal=1
;CounterFormat=double
;CounterMultiply=1.000000
;[PerfCounterPlugin_Processor%IdleTime]
;Object=Processor Information
;Counter=% Idle Time
;GraphTitle=% Idle Time
;GraphCategory=processor
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;CounterFormat=double
;CounterMultiply=1.000000
;DropTotal=1
;[PerfCounterPlugin_Processor%InterruptTime]
;Object=Processor Information
;Counter=% Interrupt Time
;GraphTitle=% Interrupt Time
;GraphCategory=processor
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;CounterFormat=double
;CounterMultiply=1.000000
;DropTotal=1
;[PerfCounterPlugin_Processor%MaximumFrequencyTime]
;Object=Processor Information
;Counter=% Maximum Frequency Time
;GraphTitle=% Maximum Frequency Time
;GraphCategory=processor
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;CounterFormat=double
;CounterMultiply=1.000000
;DropTotal=1
;[PerfCounterPlugin_Processor%PriorityTime]
;Object=Processor Information
;Counter=% Priority Time
;GraphTitle=% Priority Time
;GraphCategory=processor
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;CounterFormat=double
;CounterMultiply=1.000000
;DropTotal=1
[PerfCounterPlugin_Processor%PrivilegedTime]
Object=Processor Information
Counter=% Privileged Time
GraphTitle=% Privileged Time
GraphCategory=processor
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
CounterFormat=double
CounterMultiply=1.000000
DropTotal=0
[PerfCounterPlugin_Processor%UserTime]
Object=Processor Information
Counter=% User Time
GraphTitle=% User Time
GraphCategory=processor
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
CounterFormat=double
CounterMultiply=1.000000
DropTotal=0
;[PerfCounterPlugin_Processor%C1Time]
;Object=Processor Information
;Counter=% C1 Time
;GraphTitle=% C1 Time
;GraphCategory=processor
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;CounterFormat=double
;CounterMultiply=1.000000
;DropTotal=1
;[PerfCounterPlugin_Processor%DPCTime]
;Object=Processor Information
;Counter=% DPC Time
;GraphTitle=% DPC Time
;GraphCategory=processor
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;CounterFormat=double
;CounterMultiply=1.000000
;DropTotal=1
[PerfCounterPlugin_ProcessorQueueLenght]
Object=System
Counter=Processor Queue Length
GraphTitle=Processor Queue Lenght
GraphCategory=processor
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
CounterFormat=double
CounterMultiply=1.000000
DropTotal=0
;[PerfCounterPlugin_NetworkInterfaceOutputQueueLength]
;Object=Network Interface
;Counter=Output Queue Length
;GraphTitle=Output Queue Length
;GraphCategory=network
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;CounterFormat=integer
;CounterMultiply=1.000000
;DropTotal=1
;[PerfCounterPlugin_NetworkInterfaceOutboundDiscarded]
;Object=Network Interface
;Counter=Packets Outbound Discarded
;GraphTitle=Packets Outbound Discarded
;GraphCategory=network
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;CounterFormat=double
;CounterMultiply=1.000000
;DropTotal=1
;[PerfCounterPlugin_NetworkInterfaceOutboundErrors]
;Object=Network Interface
;Counter=Packets Outbound Errors
;GraphTitle=Packets Outbound Errors
;GraphCategory=network
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;CounterFormat=double
;CounterMultiply=1.000000
;DropTotal=1
;[PerfCounterPlugin_NetworkInterfaceReceivedDiscarded]
;Object=Network Interface
;Counter=Packets Received Discarded
;GraphTitle=Packets Received Discarded
;GraphCategory=network
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;CounterFormat=double
;CounterMultiply=1.000000
;DropTotal=1
;[PerfCounterPlugin_NetworkInterfaceReceivedErrors]
;Object=Network Interface
;Counter=Packets Received Errors
;GraphTitle=Packets Received Errors
;GraphCategory=network
;GraphDraw=LINE
;GraphArgs=--base 1000 --lower-limit 0
;CounterFormat=double
;CounterMultiply=1.000000
;DropTotal=1
[PerfCounterPlugin_NetworkInterfaceBytesTotal/sec]
Object=Network Interface
Counter=Bytes Total/sec
GraphTitle=Bytes Total/sec
GraphCategory=network
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
CounterFormat=double
CounterMultiply=1.000000
DropTotal=1
[PerfCounterPlugin_NetworkInterfaceBytesSent/sec]
Object=Network Interface
Counter=Bytes Sent/sec
GraphTitle=Bytes Sent/sec
GraphCategory=network
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
CounterFormat=double
CounterMultiply=1.000000
DropTotal=1
[PerfCounterPlugin_NetworkInterfaceBytesReceived/sec]
Object=Network Interface
Counter=Bytes Received/sec
GraphTitle=Bytes Received/sec
GraphCategory=network
GraphDraw=LINE
GraphArgs=--base 1000 --lower-limit 0
CounterFormat=double
CounterMultiply=1.000000
DropTotal=1
[SpeedFanPlugin]
;BroadcastIP=192.168.0.255
;UID=FF671100
[MuninNode]
;Hostname allows overriding the hostname reported by the munin node.
;Default: Auto-lookup
;Hostname=server.example.ext
;MasterAddress=192.168.7.24
MasterAddress=*
CIDRAddress=127.0.0.0/18