Advertisement
ujiajah1

monitoring proxy with monitorix3.8.1

Jan 5th, 2016
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.16 KB | None | 0 0
  1. apt-get update
  2. apt-get install rrdtool perl libwww-perl libmailtools-perl libmime-lite-perl librrds-perl
  3. libdbi-perl libxml-simple-perl libhttp-server-simple-perl libconfig-general-perl
  4. libio-socket-ssl-perl -y
  5. wget http://www.monitorix.org/monitorix_3.8.1-izzy1_all.deb
  6. dpkg -i monitorix*.deb
  7. apt-get -f install
  8. service monitorix restart
  9. service apache2 restart
  10.  
  11. for proxy server input
  12. monitorix.conf
  13. =============================================================================================
  14. base_dir = /var/lib/monitorix/www/
  15. base_lib = /var/lib/monitorix/
  16. base_url = /monitorix
  17. base_cgi = /monitorix-cgi
  18.  
  19. <httpd_builtin>
  20. enabled = y
  21. host =
  22. port = 8081
  23. user = nobody
  24. group = nobody
  25. log_file = /var/log/monitorix-httpd
  26. hosts_deny =
  27. hosts_allow = all
  28. <auth>
  29. enabled = n
  30. msg = Monitorix: Restricted access
  31. htpasswd = /var/lib/monitorix/htpasswd
  32. </auth>
  33. </httpd_builtin>
  34.  
  35.  
  36. # Log files pathnames
  37. # -----------------------------------------------------------------------------
  38. log_file = /var/log/monitorix
  39. secure_log = /var/log/secure
  40. mail_log = /var/log/maillog
  41. milter_gl = /var/milter-greylist/greylist.db
  42. imap_log = /var/log/imap
  43. hylafax_log = /var/spool/hylafax/etc/xferfaxlog
  44. cups_log = /var/log/cups/page_log
  45. ftp_log = /var/log/proftpd/access.log
  46. fail2ban_log = /var/log/fail2ban.log
  47. spamassassin_log = /var/log/maillog
  48. clamav_log = /var/log/clamav/clamav.log
  49. cg_logdir = /var/CommuniGate/SystemLogs/
  50. squid_log = /var/log/squid/access.log
  51.  
  52. imap_log_date_format = %b %d
  53. secure_log_date_format = %b %e
  54.  
  55.  
  56. <piwik_tracking>
  57. enabled = n
  58. url = "://example.com/piwik/"
  59. sid = "1"
  60. img = "http://example.com/piwik/piwik.php?idsite=1"
  61. </piwik_tracking>
  62.  
  63.  
  64. # Graphs (de)activation
  65. # -----------------------------------------------------------------------------
  66. <graph_enable>
  67. system = y
  68. kern = y
  69. proc = y
  70. hptemp = n
  71. lmsens = n
  72. nvidia = n
  73. disk = n
  74. fs = y
  75. net = y
  76. netstat = y
  77. libvirt = n
  78. process = n
  79. serv = y
  80. mail = n
  81. port = y
  82. user = y
  83. ftp = n
  84. apache = n
  85. nginx = n
  86. lighttpd = n
  87. mysql = n
  88. varnish = n
  89. squid = y
  90. nfss = n
  91. nfsc = n
  92. bind = n
  93. ntp = n
  94. fail2ban = n
  95. icecast = n
  96. raspberrypi = n
  97. phpapc = n
  98. memcached = n
  99. apcupsd = n
  100. wowza = n
  101. int = y
  102. verlihub = n
  103. </graph_enable>
  104.  
  105.  
  106. # SYSTEM graph
  107. # -----------------------------------------------------------------------------
  108. <system>
  109. rigid = 1, 0
  110. limit = 1, 100
  111. <alerts>
  112. loadavg_enabled = n
  113. loadavg_timeintvl = 3600
  114. loadavg_threshold = 5.0
  115. loadavg_script = /path/to/script.sh
  116. </alerts>
  117. </system>
  118.  
  119.  
  120. # KERN graph
  121. # -----------------------------------------------------------------------------
  122. <kern>
  123. graph_mode = r
  124. <list>
  125. user = y
  126. nice = y
  127. sys = y
  128. iow = y
  129. irq = y
  130. sirq = y
  131. steal = y
  132. guest = y
  133. </list>
  134. rigid = 2, 1, 2
  135. limit = 100, 1000, 100
  136. </kern>
  137.  
  138.  
  139. # PROC graph
  140. # -----------------------------------------------------------------------------
  141. <proc>
  142. max = 4
  143. graphs_per_row = 2
  144. size = medium
  145. data = y
  146. rigid = 2
  147. limit = 100
  148. </proc>
  149.  
  150.  
  151. # HPTEMP graph
  152. # -----------------------------------------------------------------------------
  153. <hptemp>
  154. graph_0 = 2, 3
  155. graph_1 = 1, 6
  156. graph_2 = 16, 18, 19, 20, 21, 22
  157. </hptemp>
  158.  
  159.  
  160. # LMSENS graph
  161. # -----------------------------------------------------------------------------
  162. <lmsens>
  163. <list>
  164. core0 = Core 0
  165. core1 = Core 1
  166. mb0 = M/B Temp
  167. cpu0 = CPU Temp
  168. fan0 = fan1
  169. fan1 = fan2
  170. fan2 = fan3
  171. volt0 = VCore 1
  172. volt1 = VCore 2
  173. volt2 = \+3.3V
  174. volt3 = \+5V
  175. volt4 = \+12V
  176. volt5 = \-12V
  177. volt6 = \-5V
  178. volt7 = Battery
  179. gpu0 = nvidia
  180. </list>
  181. </lmsens>
  182.  
  183.  
  184. # NVIDIA graph
  185. # -----------------------------------------------------------------------------
  186. <nvidia>
  187. max = 1
  188. rigid = 1, 2, 2
  189. limit = 50, 100, 100
  190. </nvidia>
  191.  
  192.  
  193. # DISK graph
  194. # -----------------------------------------------------------------------------
  195. <disk>
  196. <list>
  197. 0 = /dev/sda, /dev/sdb, /dev/sdc
  198. </list>
  199. <alerts>
  200. realloc_enabled = n
  201. realloc_timeintvl = 0
  202. realloc_threshold = 1
  203. realloc_script = /path/to/script.sh
  204. pendsect_enabled = n
  205. pendsect_timeintvl = 0
  206. pendsect_threshold = 1
  207. pendsect_script = /path/to/script.sh
  208. </alerts>
  209. </disk>
  210.  
  211.  
  212. # FS graph
  213. # -----------------------------------------------------------------------------
  214. <fs>
  215. <list>
  216. 0 = /, swap, /boot
  217. </list>
  218. <desc>
  219. </desc>
  220. <devmap>
  221. </devmap>
  222. rigid = 2, 0, 2, 0
  223. limit = 100, 1000, 100, 1000
  224. <alerts>
  225. rootfs_enabled = n
  226. rootfs_timeintvl = 3600
  227. rootfs_threshold = 100
  228. rootfs_script = /path/to/script.sh
  229. </alerts>
  230. </fs>
  231.  
  232.  
  233. # NET graph
  234. # -----------------------------------------------------------------------------
  235. <net>
  236. list = eth0
  237. <desc>
  238. eth0 = FastEthernet LAN, 0, 10000000
  239. </desc>
  240. gateway = eth0
  241. </net>
  242.  
  243.  
  244. # NETSTAT graph
  245. # -----------------------------------------------------------------------------
  246. <netstat>
  247. rigid = 0, 0, 0, 0, 0
  248. limit = 100, 100, 100, 100, 100
  249. </netstat>
  250.  
  251.  
  252. # LIBVIRT graph
  253. # -----------------------------------------------------------------------------
  254. <libvirt>
  255. <list>
  256. 0 = centos6, winxp
  257. </list>
  258. <desc>
  259. centos6 = CentOS 6, vda, 52:54:00:45:d0:e7
  260. winxp = MS Windows XP, hda, 52:54:00:97:1c:e5
  261. </desc>
  262. rigid = 2, 0, 0, 0
  263. limit = 100, 1000, 1000, 1000
  264. </libvirt>
  265.  
  266.  
  267. # PROCESS graph
  268. # -----------------------------------------------------------------------------
  269. <process>
  270. <list>
  271. 0 = httpd, sshd, ntpd, mysqld, proftpd, clamd, imap, sendmail, named, smbd
  272. </list>
  273. <desc>
  274. httpd = Apache
  275. imap = Dovecot
  276. named = Bind
  277. </desc>
  278. rigid = 2, 0, 0, 0, 0, 0, 0, 0
  279. limit = 100, 1000, 1000, 1000, 1000, 1000, 1000, 1000
  280. </process>
  281.  
  282.  
  283. # SERV graph
  284. # -----------------------------------------------------------------------------
  285. <serv>
  286. mode = i
  287. rigid = 0, 0, 0
  288. limit = 1000, 1000, 1000
  289. </serv>
  290.  
  291.  
  292. # MAIL graph
  293. # -----------------------------------------------------------------------------
  294. <mail>
  295. mta = sendmail
  296. greylist = milter-greylist
  297. rigid = 0, 0, 0, 0, 0
  298. limit = 1, 1000, 1000, 1000, 1000
  299. <alerts>
  300. delvd_enabled = n
  301. delvd_timeintvl = 60
  302. delvd_threshold = 100
  303. delvd_script = /path/to/script.sh
  304. mqueued_enabled = n
  305. mqueued_timeintvl = 3600
  306. mqueued_threshold = 100
  307. mqueued_script = /path/to/script.sh
  308. </alerts>
  309. </mail>
  310.  
  311.  
  312. # PORT graph
  313. # -----------------------------------------------------------------------------
  314. <port>
  315. max = 9
  316. rule = 24000
  317. list = 25, 21, 80, 22, 110, 139, 3306, 53, 143
  318. <desc>
  319. 25 = SMTP, tcp, in, 0, 1000
  320. 21 = FTP, tcp, in, 0, 1000
  321. 80 = HTTP, tcp, in, 0, 1000
  322. 22 = SSH, tcp, in, 0, 1000
  323. 110 = POP3, tcp, in, 0, 1000
  324. 139 = NETBIOS, tcp, in, 0, 1000
  325. 3306 = MYSQL, tcp, in, 0, 1000
  326. 53 = DNS, udp, in, 0, 1000
  327. 143 = IMAP, tcp, in, 0, 1000
  328. </desc>
  329. graphs_per_row = 3
  330. </port>
  331.  
  332.  
  333. # USER graph
  334. # -----------------------------------------------------------------------------
  335. <user>
  336. rigid = 0, 0, 0
  337. limit = 1000, 1000, 1000
  338. </user>
  339.  
  340.  
  341. # FTP graph
  342. # -----------------------------------------------------------------------------
  343. <ftp>
  344. server = proftpd
  345. anon_user = anonymous, ftp
  346. rigid = 0, 0, 0
  347. limit = 1000, 1000, 1000
  348. </ftp>
  349.  
  350.  
  351. # APACHE graph
  352. # -----------------------------------------------------------------------------
  353. <apache>
  354. list = http://localhost/server-status?auto
  355. rigid = 0, 2, 0
  356. limit = 100, 100, 100
  357. </apache>
  358.  
  359.  
  360. # NGINX graph
  361. # -----------------------------------------------------------------------------
  362. <nginx>
  363. url = http://localhost/nginx_status
  364. port = 80
  365. rule = 24100
  366. rigid = 0, 0, 0
  367. limit = 100, 100, 100
  368. </nginx>
  369.  
  370.  
  371. # LIGHTTPD graph
  372. # -----------------------------------------------------------------------------
  373. <lighttpd>
  374. list = http://localhost/server-status?auto
  375. rigid = 0, 0, 0
  376. limit = 100, 100, 100
  377. </lighttpd>
  378.  
  379.  
  380. # MYSQL graph
  381. # -----------------------------------------------------------------------------
  382. <mysql>
  383. conn_type = host
  384. list = localhost
  385. # list = /var/lib/mysql/mysql.sock
  386. <desc>
  387. localhost = 3306, user, secret
  388. </desc>
  389. rigid = 0, 2, 0, 0, 0, 0
  390. limit = 100, 100, 100, 100, 100, 100
  391. </mysql>
  392.  
  393.  
  394. # VARNISH graph
  395. # -----------------------------------------------------------------------------
  396. <varnish>
  397. rigid = 0, 0, 0, 0, 0, 0
  398. limit = 100, 100, 100, 100, 100, 100
  399. </varnish>
  400.  
  401.  
  402. # SQUID graph
  403. # -----------------------------------------------------------------------------
  404. <squid>
  405. cmd = squidclient -h 127.0.0.1
  406. graph_0 = TCP_MISS, TCP_DENIED, TCP_REFRESH_HIT, TCP_IMS_HIT, TCP_HIT, TCP_REFRESH_MISS, TCP_MEM_HIT, TCP_NEGATIVE_HIT, TCP_CLIENT_REFRESH_MISS
  407. graph_1 = 200, 403, 304, 204, 302, 000, 404, 301, 206
  408. rigid = 0, 0, 0, 0, 0, 0, 0, 0, 0
  409. limit = 100, 100, 100, 100, 100, 100, 100, 100, 100
  410. </squid>
  411.  
  412.  
  413. # NFSS graph
  414. # -----------------------------------------------------------------------------
  415. <nfss>
  416. version = 3
  417. graph_0 = readlink, create, mkdir, symlink, rmdir, remove, rename, link, readdir
  418. graph_1 = mknod, readdirplus, fsstat, fsinfo, pathconf, access, lookup, commit, null
  419. graph_2 = read, write, getattr, setattr
  420. rigid = 0, 0, 0, 0, 0, 0, 0, 0, 0
  421. limit = 100, 100, 100, 100, 100, 100, 100, 100, 100
  422. </nfss>
  423.  
  424.  
  425. # NFSC graph
  426. # -----------------------------------------------------------------------------
  427. <nfsc>
  428. version = 3
  429. graph_0 = readlink, create, mkdir, symlink, rmdir, remove, rename, link, readdir
  430. graph_1 = mknod, readdirplus, fsstat, fsinfo, pathconf
  431. graph_2 = read, write
  432. graph_3 = getattr, setattr
  433. graph_4 = access, lookup, commit, null
  434. rigid = 0, 0, 0, 0, 0, 0
  435. limit = 100, 100, 100, 100, 100, 100
  436. </nfsc>
  437.  
  438.  
  439. # BIND graph
  440. # -----------------------------------------------------------------------------
  441. <bind>
  442. list = http://localhost:8053/
  443. <in_queries_list>
  444. http://localhost:8053/ = A, AAAA, ANY, DS, MX, NS, PTR, SOA, SRV, TXT, NAPTR, A6, CNAME, SPF, KEY, DNSKEY, HINFO, WKS, PX, NSAP
  445. </in_queries_list>
  446. <out_queries_list>
  447. http://localhost:8053/ = A, AAAA, ANY, DS, MX, NS, PTR, SOA, SRV, TXT, NAPTR, A6, CNAME, SPF, KEY, DNSKEY, HINFO, WKS, PX, NSAP
  448. </out_queries_list>
  449. <server_stats_list>
  450. http://localhost:8053/ = Requestv4, Requestv6, ReqEdns0, ReqBadEDNSVer, ReqTSIG, ReqSIG0, ReqBadSIG, ReqTCP, Response, QrySuccess, QryAuthAns, QryNoauthAns, QryReferral, QryNxrrset, QrySERVFAIL, QryNXDOMAIN, QryRecursion, QryDuplicate, QryDropped, QryFailure
  451. </server_stats_list>
  452. <resolver_stats_list>
  453. http://localhost:8053/ = Queryv4, Queryv6, Responsev4, Responsev6, NXDOMAIN, SERVFAIL, FORMERR, OtherError, EDNS0Fail, Truncated, Lame, Retry, QueryTimeout, GlueFetchv4, GlueFetchv6, GlueFetchv4Fail, GlueFetchv6Fail, ValAttempt, ValOk, ValNegOk
  454. </resolver_stats_list>
  455. <cache_rrsets_list>
  456. http://localhost:8053/ = A, !A, AAAA, !AAAA, DLV, !DLV, DS, !DS, MX, NS, CNAME, !CNAME, SOA, !SOA, !ANY, PTR, RRSIG, NSEC, DNSKEY, NXDOMAIN
  457. </cache_rrsets_list>
  458. rigid = 0, 0, 0, 0, 0, 0, 0, 0
  459. limit = 100, 100, 100, 100, 100, 100, 100, 100
  460. </bind>
  461.  
  462.  
  463. # NTP graph
  464. # -----------------------------------------------------------------------------
  465. <ntp>
  466. list = localhost
  467. <desc>
  468. localhost = AUTH, AUTO, CRYP, DENY, GPS, INIT, NKEY, RATE, RMOT, RSTR
  469. </desc>
  470. rigid = 0, 0, 0
  471. limit = 100, 100, 100
  472. </ntp>
  473.  
  474.  
  475. # FAIL2BAN graph
  476. # -----------------------------------------------------------------------------
  477. <fail2ban>
  478. list = Security, Overload / Abuse
  479. <desc>
  480. 0 = [apache], [apache-mod-security], [apache-overflows], [courierauth], [ssh], [pam-generic], [php-url-fopen], [vsftpd]
  481. 1 = [apache-imdbphp], [apache-evasive], [apache-badbots], [apache-robots-txt], [communigate], [named-refused-udp], [named-refused-tcp], [trac-ticketspam]
  482. </desc>
  483. graphs_per_row = 2
  484. rigid = 0
  485. limit = 100
  486. </fail2ban>
  487.  
  488.  
  489. # ICECAST graph
  490. # -----------------------------------------------------------------------------
  491. <icecast>
  492. list = http://localhost:8000/status.xsl
  493. <desc>
  494. http://localhost:8000/status.xsl = stream1, stream2, stream3
  495. </desc>
  496. graph_mode = r
  497. rigid = 0, 0
  498. limit = 100, 100
  499. </icecast>
  500.  
  501.  
  502. # RASPBERRYPI graph
  503. # -----------------------------------------------------------------------------
  504. <raspberrypi>
  505. cmd = /opt/vc/bin/vcgencmd
  506. clocks = arm, core, h264, isp, v3d, uart, emmc, pixel, hdmi
  507. volts = core, sdram_c, sdram_i, sdram_p
  508. rigid = 0, 0, 0
  509. limit = 100, 100, 100
  510. </raspberrypi>
  511.  
  512.  
  513. # PHPAPC graph
  514. # -----------------------------------------------------------------------------
  515. <phpapc>
  516. list = http://localhost/apc.php?auto
  517. rigid = 2, 2, 0
  518. limit = 100, 100, 100
  519. </phpapc>
  520.  
  521.  
  522. # MEMCACHED graph
  523. # -----------------------------------------------------------------------------
  524. <memcached>
  525. list = localhost:11211
  526. rigid = 0, 0, 0, 0, 0, 0, 0
  527. limit = 100, 100, 100, 100, 100, 100, 100
  528. </memcached>
  529.  
  530.  
  531. # APCUPSD graph
  532. # -----------------------------------------------------------------------------
  533. <apcupsd>
  534. cmd = apcaccess
  535. list = localhost:3551
  536. rigid = 0, 2, 0, 0, 0, 0
  537. limit = 100, 100, 100, 100, 100, 100
  538. </apcupsd>
  539.  
  540.  
  541. # WOWZA graph
  542. # -----------------------------------------------------------------------------
  543. <wowza>
  544. list = http://localhost:8086/connectioncounts
  545. <desc>
  546. http://localhost:8086/connectioncounts = channel1, channel2
  547. </desc>
  548. rigid = 0, 0, 0, 0, 0
  549. limit = 100, 100, 100, 100, 100
  550. </wowza>
  551.  
  552.  
  553. # INT graph
  554. # -----------------------------------------------------------------------------
  555. <int>
  556. rigid = 0, 0, 0
  557. limit = 100, 100, 100
  558. </int>
  559.  
  560.  
  561. # VERLIHUB graph
  562. # -----------------------------------------------------------------------------
  563. <verlihub>
  564. host = localhost
  565. port = 3306
  566. user = verlihub_user
  567. password = verlihub_password
  568. database = verlihub_database
  569. rigid = 0, 0, 0
  570. limit = 1000, 1000, 1000
  571. </verlihub>
  572.  
  573.  
  574. # TRAFFACCT graph
  575. # -----------------------------------------------------------------------------
  576. <traffacct>
  577. enabled = n
  578. max = 10
  579. graphs_per_row = 2
  580. list = pc101, pc102, pc103, pc104
  581. <desc>
  582. 0 = 192.168.1.101/32, ace@example.com
  583. 1 = 192.168.1.102/32, gene@example.com
  584. 2 = 192.168.1.103/32, paul@example.com
  585. 3 = 192.168.1.104/32, peter@example.com
  586. </desc>
  587. <reports>
  588. enabled = n
  589. language = en
  590. default_mail = root@localhost
  591. url_prefix = http://localhost:8080
  592. smtp_hostname = localhost
  593. from_address = noreply@example.com
  594. </reports>
  595. rigid = 0
  596. limit = 100
  597. </traffacct>
  598.  
  599.  
  600. # Multihost
  601. # -----------------------------------------------------------------------------
  602. <multihost>
  603. enabled = n
  604. footer_url = y
  605. graphs_per_row = 2
  606. remotehost_list = server 1, server 2, server 3
  607. <remotehost_desc>
  608. 0 = http://www.example.com,/monitorix,/monitorix-cgi
  609. 1 = http://10.0.0.1,/monitorix,/monitorix-cgi
  610. 2 = http://192.168.0.100:8080,/,/
  611. </remotehost_desc>
  612. groups = n
  613. remotegroup_list = My Group
  614. <remotegroup_desc>
  615. 0 = server 2, server 3
  616. </remotegroup_desc>
  617. </multihost>
  618.  
  619.  
  620. # Email Reports
  621. # -----------------------------------------------------------------------------
  622. <emailreports>
  623. enabled = n
  624. url_prefix = http://localhost:8080
  625. smtp_hostname = localhost
  626. from_address = noreply@example.com
  627. hour = 0
  628. minute = 0
  629. <daily>
  630. enabled = n
  631. graphs = system, fs
  632. to = ace@example.com
  633. </daily>
  634. <weekly>
  635. enabled = n
  636. graphs = system, fs
  637. to = gene@example.com
  638. </weekly>
  639. <monthly>
  640. enabled = n
  641. graphs = system, fs
  642. to = paul@example.com
  643. </monthly>
  644. <yearly>
  645. enabled = n
  646. graphs = system, fs
  647. to = peter@example.com
  648. </yearly>
  649. </emailreports>
  650.  
  651.  
  652. # ========================================================================
  653. # ====== Probably you don't need to touch anything below this line ======
  654. # ========================================================================
  655.  
  656. timeout = 15
  657.  
  658. imgs_dir = imgs/
  659. usage_dir = usage/
  660. report_dir = reports/
  661. favicon = monitorixico.png
  662. logo_top = logo_top.png
  663. logo_bottom = logo_bot.png
  664.  
  665. <theme>
  666. <white>
  667. main_bg = FFFFFF
  668. main_fg = 000000
  669. title_bg = 777777
  670. title_fg = CCCC00
  671. graph_bg = CCCCCC
  672. gap = 000000
  673. </white>
  674. <black>
  675. canvas = 000000
  676. back = 101010
  677. font = C0C0C0
  678. mgrid = 80C080
  679. grid = 808020
  680. frame = 808080
  681. arrow = FFFFFF
  682. shadea = 404040
  683. shadeb = 404040
  684. axis = 101010
  685. main_bg = 000000
  686. main_fg = FFFFFF
  687. title_bg = 333333
  688. title_fg = 888800
  689. graph_bg = 888888
  690. gap = FFFFFF
  691. </black>
  692. </theme>
  693.  
  694. <graph_size>
  695. main = 450x150
  696. medium = 325x150
  697. medium2 = 325x70
  698. small = 200x66
  699. mini = 183x66
  700. tiny = 110x40
  701. zoom = 800x300
  702. remote = 300x100
  703. </graph_size>
  704.  
  705. graph_name = system, kern, proc, hptemp, lmsens, nvidia, disk, fs, net, netstat, libvirt, process, serv, mail, port, user, ftp, apache, nginx, lighttpd, mysql, varnish, squid, nfss, nfsc, bind, ntp, fail2ban, icecast, raspberrypi, phpapc, memcached, apcupsd, wowza, int, verlihub
  706.  
  707. <graph_title>
  708. system = System load average and usage
  709. kern = Global kernel usage
  710. proc = Kernel usage per processor
  711. hptemp = HP ProLiant System Health
  712. lmsens = LM-Sensors and GPU temperatures
  713. nvidia = NVIDIA temperatures and usage
  714. disk = Disk drive temperatures and health
  715. fs = Filesystem usage and I/O activity
  716. net = Network traffic and usage
  717. netstat = Netstat statistics
  718. libvirt = Libvirt statistics
  719. process = Processes statistics
  720. serv = System services demand
  721. mail = Mail statistics
  722. port = Network port traffic
  723. user = Users using the system
  724. ftp = FTP statistics
  725. apache = Apache statistics
  726. nginx = Nginx statistics
  727. lighttpd = Lighttpd statistics
  728. mysql = MySQL statistics
  729. varnish = Varnish statistics
  730. squid = Squid statistics
  731. nfss = NFS server statistics
  732. nfsc = NFS client statistics
  733. bind = BIND statistics
  734. ntp = NTP statistics
  735. fail2ban = Fail2ban statistics
  736. icecast = Icecast Streaming Media Server
  737. raspberrypi = Raspberry Pi sensor statistics
  738. phpapc = Alternative PHP Cache statistics
  739. memcached = Memcached statistics
  740. apcupsd = APC UPS statistics
  741. wowza = Wowza Media Server
  742. int = Devices interrupt activity
  743. verlihub = VerliHub statistics
  744. </graph_title>
  745.  
  746. <graphs>
  747. _system1 = System load
  748. _system2 = Active processes
  749. _system3 = Memory allocation
  750. _kern1 = Kernel usage
  751. _kern2 = Context switches and forks
  752. _kern3 = VFS usage
  753. _proc = Processor
  754. _hptemp1 = Temperatures 1
  755. _hptemp2 = Temperatures 2
  756. _hptemp3 = Temperatures 3
  757. _lmsens1 = Core temperatures
  758. _lmsens2 = Voltages
  759. _lmsens3 = MB and CPU temperatures
  760. _lmsens4 = Fan speeds
  761. _lmsens5 = GPU temperatures
  762. _nvidia1 = NVIDIA temperatures
  763. _nvidia2 = CPU usage
  764. _nvidia3 = Memory usage
  765. _disk1 = Disk drives temperatures
  766. _disk2 = Reallocated sector count
  767. _disk3 = Current pending sector
  768. _fs1 = Filesystems usage
  769. _fs2 = Disk I/O activity
  770. _fs3 = Inode usage
  771. _fs4 = Time spent in I/O activity
  772. _net1 = Network traffic
  773. _net2 = Network packets
  774. _net3 = Network errors
  775. _netstat1 = IPv4 states
  776. _netstat2 = IPv6 states
  777. _netstat3 = Active close
  778. _netstat4 = Passive close
  779. _netstat5 = UDP statistics
  780. _libvirt1 = CPU time usage
  781. _libvirt2 = Memory usage
  782. _libvirt3 = Disk usage
  783. _libvirt4 = Network usage
  784. _process1 = CPU time usage
  785. _process2 = Memory usage
  786. _process3 = Disk usage
  787. _process4 = Network usage
  788. _process5 = Opened files
  789. _process6 = Number of threads
  790. _process7 = Context switches
  791. _process8 = Number of processes
  792. _serv1 = System services demand
  793. _serv2 = IMAP and POP3 services
  794. _serv3 = SMTP service
  795. _mail1 = Mail statistics
  796. _mail2 = Network traffic
  797. _mail3 = Mails in queue
  798. _mail4 = Queue size
  799. _mail5 = SPF
  800. _mail6 = Greylisting
  801. _port = Port
  802. _user1 = Users logged in
  803. _user2 = Samba users
  804. _user3 = Netatalk users
  805. _ftp1 = Commands usage
  806. _ftp2 = New sessions
  807. _ftp3 = FTP traffic
  808. _apache1 = Apache workers
  809. _apache2 = Apache CPU usage
  810. _apache3 = Apache requests
  811. _nginx1 = Nginx connections
  812. _nginx2 = Nginx requests
  813. _nginx3 = Nginx traffic
  814. _lighttpd1 = Lighttpd workers
  815. _lighttpd2 = Lighttpd traffic
  816. _lighttpd3 = Lighttpd requests
  817. _mysql1 = MySQL query types
  818. _mysql2 = MySQL overall stats
  819. _mysql3 = Table saturation and MyISAM
  820. _mysql4 = MySQL queries
  821. _mysql5 = MySQL connections
  822. _mysql6 = MySQL traffic
  823. _varnish1 = Varnish statistics
  824. _varnish2 = Backend usage
  825. _varnish3 = Client connections
  826. _varnish4 = Cache performance
  827. _varnish5 = Objects
  828. _varnish6 = Traffic
  829. _squid1 = Squid statistics 1
  830. _squid2 = Squid statistics 2
  831. _squid3 = Overall I/O
  832. _squid4 = Memory usage
  833. _squid5 = Store directory stats
  834. _squid6 = IP cache stats
  835. _squid7 = Network protocols usage
  836. _squid8 = Client traffic
  837. _squid9 = Server traffic
  838. _nfss1 = NFS server stats 1
  839. _nfss2 = NFS server stats 2
  840. _nfss3 = NFS server stats 3
  841. _nfss4 = Overall I/O
  842. _nfss5 = Network layer
  843. _nfss6 = RPC
  844. _nfss7 = Thread utilization
  845. _nfss8 = Read cache
  846. _nfss9 = File handle cache
  847. _nfsc1 = NFS client stats 1
  848. _nfsc2 = NFS client stats 2
  849. _nfsc3 = NFS client stats 3
  850. _nfsc4 = NFS client stats 4
  851. _nfsc5 = NFS client stats 5
  852. _nfsc6 = RPC client stats
  853. _bind1 = Incoming queries
  854. _bind2 = Outgoing queries (_default)
  855. _bind3 = Name server statistics
  856. _bind4 = Resolver statistics (_default)
  857. _bind5 = Cache DB RRsets (_default)
  858. _bind6 = Memory usage
  859. _bind7 = Task manager
  860. _ntp1 = NTP timing stats
  861. _ntp2 = Stratum level
  862. _ntp3 = Codes
  863. _fail2ban = Fail2ban jails
  864. _icecast1 = Current listeners
  865. _icecast2 = Bitrate
  866. _raspberrypi1 = Clock frequency
  867. _raspberrypi2 = Temperatures
  868. _raspberrypi3 = Voltages
  869. _phpapc1 = Memory usage
  870. _phpapc2 = Hits & misses
  871. _phpapc3 = File cache
  872. _memcached1 = Memcached statistics 1
  873. _memcached2 = Memcached statistics 2
  874. _memcached3 = Cache usage
  875. _memcached4 = Items in cache
  876. _memcached5 = Objects I/O
  877. _memcached6 = Connections
  878. _memcached7 = Memcached traffic
  879. _apcupsd1 = Line voltage
  880. _apcupsd2 = Battery charge
  881. _apcupsd3 = Temperatures
  882. _apcupsd4 = Battery voltage
  883. _apcupsd5 = Time left
  884. _apcupsd6 = Line frequency
  885. _wowza1 = Current connections
  886. _wowza2 = Messages bytes rate
  887. _wowza3 = Connections accepted
  888. _wowza4 = Connections rejected
  889. _wowza5 = Streams
  890. _int1 = Interrupt activity
  891. _int2 = Core activity
  892. _int3 = Interrupt activity
  893. _verlihub1 = Users in hub
  894. _verlihub2 = Total hub upload
  895. _verlihub3 = Total hub share
  896. </graphs>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement