zbx_linux_container_template.xml 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <zabbix_export>
  3. <version>3.4</version>
  4. <date>2018-01-25T15:03:17Z</date>
  5. <groups>
  6. <group>
  7. <name>Templates</name>
  8. </group>
  9. </groups>
  10. <templates>
  11. <template>
  12. <template>Template Linux Container</template>
  13. <name>Template Linux Container</name>
  14. <description/>
  15. <groups>
  16. <group>
  17. <name>Templates</name>
  18. </group>
  19. </groups>
  20. <applications>
  21. <application>
  22. <name>CPU</name>
  23. </application>
  24. <application>
  25. <name>Filesystems</name>
  26. </application>
  27. <application>
  28. <name>General</name>
  29. </application>
  30. <application>
  31. <name>Memory</name>
  32. </application>
  33. <application>
  34. <name>Network interfaces</name>
  35. </application>
  36. <application>
  37. <name>OS</name>
  38. </application>
  39. <application>
  40. <name>Performance</name>
  41. </application>
  42. <application>
  43. <name>Processes</name>
  44. </application>
  45. <application>
  46. <name>Security</name>
  47. </application>
  48. </applications>
  49. <items>
  50. <item>
  51. <name>Processor load (1 min average per core)</name>
  52. <type>0</type>
  53. <snmp_community/>
  54. <snmp_oid/>
  55. <key>ct.cpu.load[percpu,avg1]</key>
  56. <delay>1m</delay>
  57. <history>1w</history>
  58. <trends>365d</trends>
  59. <status>0</status>
  60. <value_type>0</value_type>
  61. <allowed_hosts/>
  62. <units/>
  63. <snmpv3_contextname/>
  64. <snmpv3_securityname/>
  65. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  66. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  67. <snmpv3_authpassphrase/>
  68. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  69. <snmpv3_privpassphrase/>
  70. <params/>
  71. <ipmi_sensor/>
  72. <authtype>0</authtype>
  73. <username/>
  74. <password/>
  75. <publickey/>
  76. <privatekey/>
  77. <port/>
  78. <description>The processor load is calculated as system CPU load divided by number of CPU cores.</description>
  79. <inventory_link>0</inventory_link>
  80. <applications>
  81. <application>
  82. <name>CPU</name>
  83. </application>
  84. <application>
  85. <name>Performance</name>
  86. </application>
  87. </applications>
  88. <valuemap/>
  89. <logtimefmt/>
  90. <preprocessing/>
  91. <jmx_endpoint/>
  92. <master_item/>
  93. </item>
  94. <item>
  95. <name>Processor load (5 min average per core)</name>
  96. <type>0</type>
  97. <snmp_community/>
  98. <snmp_oid/>
  99. <key>ct.cpu.load[percpu,avg5]</key>
  100. <delay>1m</delay>
  101. <history>1w</history>
  102. <trends>365d</trends>
  103. <status>0</status>
  104. <value_type>0</value_type>
  105. <allowed_hosts/>
  106. <units/>
  107. <snmpv3_contextname/>
  108. <snmpv3_securityname/>
  109. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  110. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  111. <snmpv3_authpassphrase/>
  112. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  113. <snmpv3_privpassphrase/>
  114. <params/>
  115. <ipmi_sensor/>
  116. <authtype>0</authtype>
  117. <username/>
  118. <password/>
  119. <publickey/>
  120. <privatekey/>
  121. <port/>
  122. <description>The processor load is calculated as system CPU load divided by number of CPU cores.</description>
  123. <inventory_link>0</inventory_link>
  124. <applications>
  125. <application>
  126. <name>CPU</name>
  127. </application>
  128. <application>
  129. <name>Performance</name>
  130. </application>
  131. </applications>
  132. <valuemap/>
  133. <logtimefmt/>
  134. <preprocessing/>
  135. <jmx_endpoint/>
  136. <master_item/>
  137. </item>
  138. <item>
  139. <name>Processor load (15 min average per core)</name>
  140. <type>0</type>
  141. <snmp_community/>
  142. <snmp_oid/>
  143. <key>ct.cpu.load[percpu,avg15]</key>
  144. <delay>1m</delay>
  145. <history>1w</history>
  146. <trends>365d</trends>
  147. <status>0</status>
  148. <value_type>0</value_type>
  149. <allowed_hosts/>
  150. <units/>
  151. <snmpv3_contextname/>
  152. <snmpv3_securityname/>
  153. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  154. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  155. <snmpv3_authpassphrase/>
  156. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  157. <snmpv3_privpassphrase/>
  158. <params/>
  159. <ipmi_sensor/>
  160. <authtype>0</authtype>
  161. <username/>
  162. <password/>
  163. <publickey/>
  164. <privatekey/>
  165. <port/>
  166. <description>The processor load is calculated as system CPU load divided by number of CPU cores.</description>
  167. <inventory_link>0</inventory_link>
  168. <applications>
  169. <application>
  170. <name>CPU</name>
  171. </application>
  172. <application>
  173. <name>Performance</name>
  174. </application>
  175. </applications>
  176. <valuemap/>
  177. <logtimefmt/>
  178. <preprocessing/>
  179. <jmx_endpoint/>
  180. <master_item/>
  181. </item>
  182. <item>
  183. <name>Available memory</name>
  184. <type>0</type>
  185. <snmp_community/>
  186. <snmp_oid/>
  187. <key>ct.memory.size[available]</key>
  188. <delay>1m</delay>
  189. <history>1w</history>
  190. <trends>365d</trends>
  191. <status>0</status>
  192. <value_type>3</value_type>
  193. <allowed_hosts/>
  194. <units>B</units>
  195. <snmpv3_contextname/>
  196. <snmpv3_securityname/>
  197. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  198. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  199. <snmpv3_authpassphrase/>
  200. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  201. <snmpv3_privpassphrase/>
  202. <params/>
  203. <ipmi_sensor/>
  204. <authtype>0</authtype>
  205. <username/>
  206. <password/>
  207. <publickey/>
  208. <privatekey/>
  209. <port/>
  210. <description>Available memory is defined as free+cached+buffers memory.</description>
  211. <inventory_link>0</inventory_link>
  212. <applications>
  213. <application>
  214. <name>Memory</name>
  215. </application>
  216. </applications>
  217. <valuemap/>
  218. <logtimefmt/>
  219. <preprocessing/>
  220. <jmx_endpoint/>
  221. <master_item/>
  222. </item>
  223. <item>
  224. <name>Total memory</name>
  225. <type>0</type>
  226. <snmp_community/>
  227. <snmp_oid/>
  228. <key>ct.memory.size[total]</key>
  229. <delay>1h</delay>
  230. <history>1w</history>
  231. <trends>365d</trends>
  232. <status>0</status>
  233. <value_type>3</value_type>
  234. <allowed_hosts/>
  235. <units>B</units>
  236. <snmpv3_contextname/>
  237. <snmpv3_securityname/>
  238. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  239. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  240. <snmpv3_authpassphrase/>
  241. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  242. <snmpv3_privpassphrase/>
  243. <params/>
  244. <ipmi_sensor/>
  245. <authtype>0</authtype>
  246. <username/>
  247. <password/>
  248. <publickey/>
  249. <privatekey/>
  250. <port/>
  251. <description/>
  252. <inventory_link>0</inventory_link>
  253. <applications>
  254. <application>
  255. <name>Memory</name>
  256. </application>
  257. </applications>
  258. <valuemap/>
  259. <logtimefmt/>
  260. <preprocessing/>
  261. <jmx_endpoint/>
  262. <master_item/>
  263. </item>
  264. <item>
  265. <name>Used swap space in %</name>
  266. <type>0</type>
  267. <snmp_community/>
  268. <snmp_oid/>
  269. <key>ct.swap.size[pused]</key>
  270. <delay>1m</delay>
  271. <history>1w</history>
  272. <trends>365d</trends>
  273. <status>0</status>
  274. <value_type>0</value_type>
  275. <allowed_hosts/>
  276. <units>%</units>
  277. <snmpv3_contextname/>
  278. <snmpv3_securityname/>
  279. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  280. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  281. <snmpv3_authpassphrase/>
  282. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  283. <snmpv3_privpassphrase/>
  284. <params/>
  285. <ipmi_sensor/>
  286. <authtype>0</authtype>
  287. <username/>
  288. <password/>
  289. <publickey/>
  290. <privatekey/>
  291. <port/>
  292. <description/>
  293. <inventory_link>0</inventory_link>
  294. <applications>
  295. <application>
  296. <name>Memory</name>
  297. </application>
  298. </applications>
  299. <valuemap/>
  300. <logtimefmt/>
  301. <preprocessing/>
  302. <jmx_endpoint/>
  303. <master_item/>
  304. </item>
  305. <item>
  306. <name>Total swap space</name>
  307. <type>0</type>
  308. <snmp_community/>
  309. <snmp_oid/>
  310. <key>ct.swap.size[total]</key>
  311. <delay>1h</delay>
  312. <history>1w</history>
  313. <trends>365d</trends>
  314. <status>0</status>
  315. <value_type>3</value_type>
  316. <allowed_hosts/>
  317. <units>B</units>
  318. <snmpv3_contextname/>
  319. <snmpv3_securityname/>
  320. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  321. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  322. <snmpv3_authpassphrase/>
  323. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  324. <snmpv3_privpassphrase/>
  325. <params/>
  326. <ipmi_sensor/>
  327. <authtype>0</authtype>
  328. <username/>
  329. <password/>
  330. <publickey/>
  331. <privatekey/>
  332. <port/>
  333. <description/>
  334. <inventory_link>0</inventory_link>
  335. <applications>
  336. <application>
  337. <name>Memory</name>
  338. </application>
  339. </applications>
  340. <valuemap/>
  341. <logtimefmt/>
  342. <preprocessing/>
  343. <jmx_endpoint/>
  344. <master_item/>
  345. </item>
  346. <item>
  347. <name>Used swap space</name>
  348. <type>0</type>
  349. <snmp_community/>
  350. <snmp_oid/>
  351. <key>ct.swap.size[used]</key>
  352. <delay>1m</delay>
  353. <history>1w</history>
  354. <trends>365d</trends>
  355. <status>0</status>
  356. <value_type>3</value_type>
  357. <allowed_hosts/>
  358. <units>B</units>
  359. <snmpv3_contextname/>
  360. <snmpv3_securityname/>
  361. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  362. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  363. <snmpv3_authpassphrase/>
  364. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  365. <snmpv3_privpassphrase/>
  366. <params/>
  367. <ipmi_sensor/>
  368. <authtype>0</authtype>
  369. <username/>
  370. <password/>
  371. <publickey/>
  372. <privatekey/>
  373. <port/>
  374. <description/>
  375. <inventory_link>0</inventory_link>
  376. <applications>
  377. <application>
  378. <name>Memory</name>
  379. </application>
  380. </applications>
  381. <valuemap/>
  382. <logtimefmt/>
  383. <preprocessing/>
  384. <jmx_endpoint/>
  385. <master_item/>
  386. </item>
  387. <item>
  388. <name>Maximum number of opened files</name>
  389. <type>0</type>
  390. <snmp_community/>
  391. <snmp_oid/>
  392. <key>kernel.maxfiles</key>
  393. <delay>1h</delay>
  394. <history>1w</history>
  395. <trends>365d</trends>
  396. <status>0</status>
  397. <value_type>3</value_type>
  398. <allowed_hosts/>
  399. <units/>
  400. <snmpv3_contextname/>
  401. <snmpv3_securityname/>
  402. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  403. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  404. <snmpv3_authpassphrase/>
  405. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  406. <snmpv3_privpassphrase/>
  407. <params/>
  408. <ipmi_sensor/>
  409. <authtype>0</authtype>
  410. <username/>
  411. <password/>
  412. <publickey/>
  413. <privatekey/>
  414. <port/>
  415. <description>It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf.</description>
  416. <inventory_link>0</inventory_link>
  417. <applications>
  418. <application>
  419. <name>OS</name>
  420. </application>
  421. </applications>
  422. <valuemap/>
  423. <logtimefmt/>
  424. <preprocessing/>
  425. <jmx_endpoint/>
  426. <master_item/>
  427. </item>
  428. <item>
  429. <name>Maximum number of processes</name>
  430. <type>0</type>
  431. <snmp_community/>
  432. <snmp_oid/>
  433. <key>kernel.maxproc</key>
  434. <delay>1h</delay>
  435. <history>1w</history>
  436. <trends>365d</trends>
  437. <status>0</status>
  438. <value_type>3</value_type>
  439. <allowed_hosts/>
  440. <units/>
  441. <snmpv3_contextname/>
  442. <snmpv3_securityname/>
  443. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  444. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  445. <snmpv3_authpassphrase/>
  446. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  447. <snmpv3_privpassphrase/>
  448. <params/>
  449. <ipmi_sensor/>
  450. <authtype>0</authtype>
  451. <username/>
  452. <password/>
  453. <publickey/>
  454. <privatekey/>
  455. <port/>
  456. <description>It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf.</description>
  457. <inventory_link>0</inventory_link>
  458. <applications>
  459. <application>
  460. <name>OS</name>
  461. </application>
  462. </applications>
  463. <valuemap/>
  464. <logtimefmt/>
  465. <preprocessing/>
  466. <jmx_endpoint/>
  467. <master_item/>
  468. </item>
  469. <item>
  470. <name>Number of running processes</name>
  471. <type>0</type>
  472. <snmp_community/>
  473. <snmp_oid/>
  474. <key>proc.num[,,run]</key>
  475. <delay>1m</delay>
  476. <history>1w</history>
  477. <trends>365d</trends>
  478. <status>0</status>
  479. <value_type>3</value_type>
  480. <allowed_hosts/>
  481. <units/>
  482. <snmpv3_contextname/>
  483. <snmpv3_securityname/>
  484. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  485. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  486. <snmpv3_authpassphrase/>
  487. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  488. <snmpv3_privpassphrase/>
  489. <params/>
  490. <ipmi_sensor/>
  491. <authtype>0</authtype>
  492. <username/>
  493. <password/>
  494. <publickey/>
  495. <privatekey/>
  496. <port/>
  497. <description>Number of processes in running state.</description>
  498. <inventory_link>0</inventory_link>
  499. <applications>
  500. <application>
  501. <name>Processes</name>
  502. </application>
  503. </applications>
  504. <valuemap/>
  505. <logtimefmt/>
  506. <preprocessing/>
  507. <jmx_endpoint/>
  508. <master_item/>
  509. </item>
  510. <item>
  511. <name>Number of processes</name>
  512. <type>0</type>
  513. <snmp_community/>
  514. <snmp_oid/>
  515. <key>proc.num[]</key>
  516. <delay>1m</delay>
  517. <history>1w</history>
  518. <trends>365d</trends>
  519. <status>0</status>
  520. <value_type>3</value_type>
  521. <allowed_hosts/>
  522. <units/>
  523. <snmpv3_contextname/>
  524. <snmpv3_securityname/>
  525. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  526. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  527. <snmpv3_authpassphrase/>
  528. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  529. <snmpv3_privpassphrase/>
  530. <params/>
  531. <ipmi_sensor/>
  532. <authtype>0</authtype>
  533. <username/>
  534. <password/>
  535. <publickey/>
  536. <privatekey/>
  537. <port/>
  538. <description>Total number of processes in any state.</description>
  539. <inventory_link>0</inventory_link>
  540. <applications>
  541. <application>
  542. <name>Processes</name>
  543. </application>
  544. </applications>
  545. <valuemap/>
  546. <logtimefmt/>
  547. <preprocessing/>
  548. <jmx_endpoint/>
  549. <master_item/>
  550. </item>
  551. <item>
  552. <name>Host boot time</name>
  553. <type>0</type>
  554. <snmp_community/>
  555. <snmp_oid/>
  556. <key>system.boottime</key>
  557. <delay>10m</delay>
  558. <history>1w</history>
  559. <trends>365d</trends>
  560. <status>0</status>
  561. <value_type>3</value_type>
  562. <allowed_hosts/>
  563. <units>unixtime</units>
  564. <snmpv3_contextname/>
  565. <snmpv3_securityname/>
  566. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  567. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  568. <snmpv3_authpassphrase/>
  569. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  570. <snmpv3_privpassphrase/>
  571. <params/>
  572. <ipmi_sensor/>
  573. <authtype>0</authtype>
  574. <username/>
  575. <password/>
  576. <publickey/>
  577. <privatekey/>
  578. <port/>
  579. <description/>
  580. <inventory_link>0</inventory_link>
  581. <applications>
  582. <application>
  583. <name>General</name>
  584. </application>
  585. <application>
  586. <name>OS</name>
  587. </application>
  588. </applications>
  589. <valuemap/>
  590. <logtimefmt/>
  591. <preprocessing/>
  592. <jmx_endpoint/>
  593. <master_item/>
  594. </item>
  595. <item>
  596. <name>Interrupts per second</name>
  597. <type>0</type>
  598. <snmp_community/>
  599. <snmp_oid/>
  600. <key>system.cpu.intr</key>
  601. <delay>1m</delay>
  602. <history>1w</history>
  603. <trends>365d</trends>
  604. <status>0</status>
  605. <value_type>3</value_type>
  606. <allowed_hosts/>
  607. <units>ips</units>
  608. <snmpv3_contextname/>
  609. <snmpv3_securityname/>
  610. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  611. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  612. <snmpv3_authpassphrase/>
  613. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  614. <snmpv3_privpassphrase/>
  615. <params/>
  616. <ipmi_sensor/>
  617. <authtype>0</authtype>
  618. <username/>
  619. <password/>
  620. <publickey/>
  621. <privatekey/>
  622. <port/>
  623. <description/>
  624. <inventory_link>0</inventory_link>
  625. <applications>
  626. <application>
  627. <name>CPU</name>
  628. </application>
  629. <application>
  630. <name>Performance</name>
  631. </application>
  632. </applications>
  633. <valuemap/>
  634. <logtimefmt/>
  635. <preprocessing>
  636. <step>
  637. <type>10</type>
  638. <params/>
  639. </step>
  640. </preprocessing>
  641. <jmx_endpoint/>
  642. <master_item/>
  643. </item>
  644. <item>
  645. <name>Context switches per second</name>
  646. <type>0</type>
  647. <snmp_community/>
  648. <snmp_oid/>
  649. <key>system.cpu.switches</key>
  650. <delay>1m</delay>
  651. <history>1w</history>
  652. <trends>365d</trends>
  653. <status>0</status>
  654. <value_type>3</value_type>
  655. <allowed_hosts/>
  656. <units>sps</units>
  657. <snmpv3_contextname/>
  658. <snmpv3_securityname/>
  659. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  660. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  661. <snmpv3_authpassphrase/>
  662. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  663. <snmpv3_privpassphrase/>
  664. <params/>
  665. <ipmi_sensor/>
  666. <authtype>0</authtype>
  667. <username/>
  668. <password/>
  669. <publickey/>
  670. <privatekey/>
  671. <port/>
  672. <description/>
  673. <inventory_link>0</inventory_link>
  674. <applications>
  675. <application>
  676. <name>CPU</name>
  677. </application>
  678. <application>
  679. <name>Performance</name>
  680. </application>
  681. </applications>
  682. <valuemap/>
  683. <logtimefmt/>
  684. <preprocessing>
  685. <step>
  686. <type>10</type>
  687. <params/>
  688. </step>
  689. </preprocessing>
  690. <jmx_endpoint/>
  691. <master_item/>
  692. </item>
  693. <item>
  694. <name>CPU $2 time</name>
  695. <type>0</type>
  696. <snmp_community/>
  697. <snmp_oid/>
  698. <key>system.cpu.util[,idle]</key>
  699. <delay>1m</delay>
  700. <history>1w</history>
  701. <trends>365d</trends>
  702. <status>0</status>
  703. <value_type>0</value_type>
  704. <allowed_hosts/>
  705. <units>%</units>
  706. <snmpv3_contextname/>
  707. <snmpv3_securityname/>
  708. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  709. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  710. <snmpv3_authpassphrase/>
  711. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  712. <snmpv3_privpassphrase/>
  713. <params/>
  714. <ipmi_sensor/>
  715. <authtype>0</authtype>
  716. <username/>
  717. <password/>
  718. <publickey/>
  719. <privatekey/>
  720. <port/>
  721. <description>The time the CPU has spent doing nothing.</description>
  722. <inventory_link>0</inventory_link>
  723. <applications>
  724. <application>
  725. <name>CPU</name>
  726. </application>
  727. <application>
  728. <name>Performance</name>
  729. </application>
  730. </applications>
  731. <valuemap/>
  732. <logtimefmt/>
  733. <preprocessing/>
  734. <jmx_endpoint/>
  735. <master_item/>
  736. </item>
  737. <item>
  738. <name>CPU $2 time</name>
  739. <type>0</type>
  740. <snmp_community/>
  741. <snmp_oid/>
  742. <key>system.cpu.util[,interrupt]</key>
  743. <delay>1m</delay>
  744. <history>1w</history>
  745. <trends>365d</trends>
  746. <status>0</status>
  747. <value_type>0</value_type>
  748. <allowed_hosts/>
  749. <units>%</units>
  750. <snmpv3_contextname/>
  751. <snmpv3_securityname/>
  752. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  753. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  754. <snmpv3_authpassphrase/>
  755. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  756. <snmpv3_privpassphrase/>
  757. <params/>
  758. <ipmi_sensor/>
  759. <authtype>0</authtype>
  760. <username/>
  761. <password/>
  762. <publickey/>
  763. <privatekey/>
  764. <port/>
  765. <description>The amount of time the CPU has been servicing hardware interrupts.</description>
  766. <inventory_link>0</inventory_link>
  767. <applications>
  768. <application>
  769. <name>CPU</name>
  770. </application>
  771. <application>
  772. <name>Performance</name>
  773. </application>
  774. </applications>
  775. <valuemap/>
  776. <logtimefmt/>
  777. <preprocessing/>
  778. <jmx_endpoint/>
  779. <master_item/>
  780. </item>
  781. <item>
  782. <name>CPU $2 time</name>
  783. <type>0</type>
  784. <snmp_community/>
  785. <snmp_oid/>
  786. <key>system.cpu.util[,iowait]</key>
  787. <delay>1m</delay>
  788. <history>1w</history>
  789. <trends>365d</trends>
  790. <status>0</status>
  791. <value_type>0</value_type>
  792. <allowed_hosts/>
  793. <units>%</units>
  794. <snmpv3_contextname/>
  795. <snmpv3_securityname/>
  796. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  797. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  798. <snmpv3_authpassphrase/>
  799. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  800. <snmpv3_privpassphrase/>
  801. <params/>
  802. <ipmi_sensor/>
  803. <authtype>0</authtype>
  804. <username/>
  805. <password/>
  806. <publickey/>
  807. <privatekey/>
  808. <port/>
  809. <description>Amount of time the CPU has been waiting for I/O to complete.</description>
  810. <inventory_link>0</inventory_link>
  811. <applications>
  812. <application>
  813. <name>CPU</name>
  814. </application>
  815. <application>
  816. <name>Performance</name>
  817. </application>
  818. </applications>
  819. <valuemap/>
  820. <logtimefmt/>
  821. <preprocessing/>
  822. <jmx_endpoint/>
  823. <master_item/>
  824. </item>
  825. <item>
  826. <name>CPU $2 time</name>
  827. <type>0</type>
  828. <snmp_community/>
  829. <snmp_oid/>
  830. <key>system.cpu.util[,nice]</key>
  831. <delay>1m</delay>
  832. <history>1w</history>
  833. <trends>365d</trends>
  834. <status>0</status>
  835. <value_type>0</value_type>
  836. <allowed_hosts/>
  837. <units>%</units>
  838. <snmpv3_contextname/>
  839. <snmpv3_securityname/>
  840. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  841. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  842. <snmpv3_authpassphrase/>
  843. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  844. <snmpv3_privpassphrase/>
  845. <params/>
  846. <ipmi_sensor/>
  847. <authtype>0</authtype>
  848. <username/>
  849. <password/>
  850. <publickey/>
  851. <privatekey/>
  852. <port/>
  853. <description>The time the CPU has spent running users' processes that have been niced.</description>
  854. <inventory_link>0</inventory_link>
  855. <applications>
  856. <application>
  857. <name>CPU</name>
  858. </application>
  859. <application>
  860. <name>Performance</name>
  861. </application>
  862. </applications>
  863. <valuemap/>
  864. <logtimefmt/>
  865. <preprocessing/>
  866. <jmx_endpoint/>
  867. <master_item/>
  868. </item>
  869. <item>
  870. <name>CPU $2 time</name>
  871. <type>0</type>
  872. <snmp_community/>
  873. <snmp_oid/>
  874. <key>system.cpu.util[,softirq]</key>
  875. <delay>1m</delay>
  876. <history>1w</history>
  877. <trends>365d</trends>
  878. <status>0</status>
  879. <value_type>0</value_type>
  880. <allowed_hosts/>
  881. <units>%</units>
  882. <snmpv3_contextname/>
  883. <snmpv3_securityname/>
  884. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  885. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  886. <snmpv3_authpassphrase/>
  887. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  888. <snmpv3_privpassphrase/>
  889. <params/>
  890. <ipmi_sensor/>
  891. <authtype>0</authtype>
  892. <username/>
  893. <password/>
  894. <publickey/>
  895. <privatekey/>
  896. <port/>
  897. <description>The amount of time the CPU has been servicing software interrupts.</description>
  898. <inventory_link>0</inventory_link>
  899. <applications>
  900. <application>
  901. <name>CPU</name>
  902. </application>
  903. <application>
  904. <name>Performance</name>
  905. </application>
  906. </applications>
  907. <valuemap/>
  908. <logtimefmt/>
  909. <preprocessing/>
  910. <jmx_endpoint/>
  911. <master_item/>
  912. </item>
  913. <item>
  914. <name>CPU $2 time</name>
  915. <type>0</type>
  916. <snmp_community/>
  917. <snmp_oid/>
  918. <key>system.cpu.util[,steal]</key>
  919. <delay>1m</delay>
  920. <history>1w</history>
  921. <trends>365d</trends>
  922. <status>0</status>
  923. <value_type>0</value_type>
  924. <allowed_hosts/>
  925. <units>%</units>
  926. <snmpv3_contextname/>
  927. <snmpv3_securityname/>
  928. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  929. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  930. <snmpv3_authpassphrase/>
  931. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  932. <snmpv3_privpassphrase/>
  933. <params/>
  934. <ipmi_sensor/>
  935. <authtype>0</authtype>
  936. <username/>
  937. <password/>
  938. <publickey/>
  939. <privatekey/>
  940. <port/>
  941. <description>The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine).</description>
  942. <inventory_link>0</inventory_link>
  943. <applications>
  944. <application>
  945. <name>CPU</name>
  946. </application>
  947. <application>
  948. <name>Performance</name>
  949. </application>
  950. </applications>
  951. <valuemap/>
  952. <logtimefmt/>
  953. <preprocessing/>
  954. <jmx_endpoint/>
  955. <master_item/>
  956. </item>
  957. <item>
  958. <name>CPU $2 time</name>
  959. <type>0</type>
  960. <snmp_community/>
  961. <snmp_oid/>
  962. <key>system.cpu.util[,system]</key>
  963. <delay>1m</delay>
  964. <history>1w</history>
  965. <trends>365d</trends>
  966. <status>0</status>
  967. <value_type>0</value_type>
  968. <allowed_hosts/>
  969. <units>%</units>
  970. <snmpv3_contextname/>
  971. <snmpv3_securityname/>
  972. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  973. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  974. <snmpv3_authpassphrase/>
  975. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  976. <snmpv3_privpassphrase/>
  977. <params/>
  978. <ipmi_sensor/>
  979. <authtype>0</authtype>
  980. <username/>
  981. <password/>
  982. <publickey/>
  983. <privatekey/>
  984. <port/>
  985. <description>The time the CPU has spent running the kernel and its processes.</description>
  986. <inventory_link>0</inventory_link>
  987. <applications>
  988. <application>
  989. <name>CPU</name>
  990. </application>
  991. <application>
  992. <name>Performance</name>
  993. </application>
  994. </applications>
  995. <valuemap/>
  996. <logtimefmt/>
  997. <preprocessing/>
  998. <jmx_endpoint/>
  999. <master_item/>
  1000. </item>
  1001. <item>
  1002. <name>CPU $2 time</name>
  1003. <type>0</type>
  1004. <snmp_community/>
  1005. <snmp_oid/>
  1006. <key>system.cpu.util[,user]</key>
  1007. <delay>1m</delay>
  1008. <history>1w</history>
  1009. <trends>365d</trends>
  1010. <status>0</status>
  1011. <value_type>0</value_type>
  1012. <allowed_hosts/>
  1013. <units>%</units>
  1014. <snmpv3_contextname/>
  1015. <snmpv3_securityname/>
  1016. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1017. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1018. <snmpv3_authpassphrase/>
  1019. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1020. <snmpv3_privpassphrase/>
  1021. <params/>
  1022. <ipmi_sensor/>
  1023. <authtype>0</authtype>
  1024. <username/>
  1025. <password/>
  1026. <publickey/>
  1027. <privatekey/>
  1028. <port/>
  1029. <description>The time the CPU has spent running users' processes that are not niced.</description>
  1030. <inventory_link>0</inventory_link>
  1031. <applications>
  1032. <application>
  1033. <name>CPU</name>
  1034. </application>
  1035. <application>
  1036. <name>Performance</name>
  1037. </application>
  1038. </applications>
  1039. <valuemap/>
  1040. <logtimefmt/>
  1041. <preprocessing/>
  1042. <jmx_endpoint/>
  1043. <master_item/>
  1044. </item>
  1045. <item>
  1046. <name>Host name</name>
  1047. <type>0</type>
  1048. <snmp_community/>
  1049. <snmp_oid/>
  1050. <key>system.hostname</key>
  1051. <delay>1h</delay>
  1052. <history>1w</history>
  1053. <trends>0</trends>
  1054. <status>0</status>
  1055. <value_type>1</value_type>
  1056. <allowed_hosts/>
  1057. <units/>
  1058. <snmpv3_contextname/>
  1059. <snmpv3_securityname/>
  1060. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1061. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1062. <snmpv3_authpassphrase/>
  1063. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1064. <snmpv3_privpassphrase/>
  1065. <params/>
  1066. <ipmi_sensor/>
  1067. <authtype>0</authtype>
  1068. <username/>
  1069. <password/>
  1070. <publickey/>
  1071. <privatekey/>
  1072. <port/>
  1073. <description>System host name.</description>
  1074. <inventory_link>3</inventory_link>
  1075. <applications>
  1076. <application>
  1077. <name>General</name>
  1078. </application>
  1079. <application>
  1080. <name>OS</name>
  1081. </application>
  1082. </applications>
  1083. <valuemap/>
  1084. <logtimefmt/>
  1085. <preprocessing/>
  1086. <jmx_endpoint/>
  1087. <master_item/>
  1088. </item>
  1089. <item>
  1090. <name>Host local time</name>
  1091. <type>0</type>
  1092. <snmp_community/>
  1093. <snmp_oid/>
  1094. <key>system.localtime</key>
  1095. <delay>1m</delay>
  1096. <history>1w</history>
  1097. <trends>365d</trends>
  1098. <status>0</status>
  1099. <value_type>3</value_type>
  1100. <allowed_hosts/>
  1101. <units>unixtime</units>
  1102. <snmpv3_contextname/>
  1103. <snmpv3_securityname/>
  1104. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1105. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1106. <snmpv3_authpassphrase/>
  1107. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1108. <snmpv3_privpassphrase/>
  1109. <params/>
  1110. <ipmi_sensor/>
  1111. <authtype>0</authtype>
  1112. <username/>
  1113. <password/>
  1114. <publickey/>
  1115. <privatekey/>
  1116. <port/>
  1117. <description/>
  1118. <inventory_link>0</inventory_link>
  1119. <applications>
  1120. <application>
  1121. <name>General</name>
  1122. </application>
  1123. <application>
  1124. <name>OS</name>
  1125. </application>
  1126. </applications>
  1127. <valuemap/>
  1128. <logtimefmt/>
  1129. <preprocessing/>
  1130. <jmx_endpoint/>
  1131. <master_item/>
  1132. </item>
  1133. <item>
  1134. <name>System information</name>
  1135. <type>0</type>
  1136. <snmp_community/>
  1137. <snmp_oid/>
  1138. <key>system.uname</key>
  1139. <delay>1h</delay>
  1140. <history>1w</history>
  1141. <trends>0</trends>
  1142. <status>0</status>
  1143. <value_type>1</value_type>
  1144. <allowed_hosts/>
  1145. <units/>
  1146. <snmpv3_contextname/>
  1147. <snmpv3_securityname/>
  1148. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1149. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1150. <snmpv3_authpassphrase/>
  1151. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1152. <snmpv3_privpassphrase/>
  1153. <params/>
  1154. <ipmi_sensor/>
  1155. <authtype>0</authtype>
  1156. <username/>
  1157. <password/>
  1158. <publickey/>
  1159. <privatekey/>
  1160. <port/>
  1161. <description>The information as normally returned by 'uname -a'.</description>
  1162. <inventory_link>5</inventory_link>
  1163. <applications>
  1164. <application>
  1165. <name>General</name>
  1166. </application>
  1167. <application>
  1168. <name>OS</name>
  1169. </application>
  1170. </applications>
  1171. <valuemap/>
  1172. <logtimefmt/>
  1173. <preprocessing/>
  1174. <jmx_endpoint/>
  1175. <master_item/>
  1176. </item>
  1177. <item>
  1178. <name>System uptime</name>
  1179. <type>0</type>
  1180. <snmp_community/>
  1181. <snmp_oid/>
  1182. <key>system.uptime</key>
  1183. <delay>10m</delay>
  1184. <history>1w</history>
  1185. <trends>365d</trends>
  1186. <status>0</status>
  1187. <value_type>3</value_type>
  1188. <allowed_hosts/>
  1189. <units>uptime</units>
  1190. <snmpv3_contextname/>
  1191. <snmpv3_securityname/>
  1192. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1193. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1194. <snmpv3_authpassphrase/>
  1195. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1196. <snmpv3_privpassphrase/>
  1197. <params/>
  1198. <ipmi_sensor/>
  1199. <authtype>0</authtype>
  1200. <username/>
  1201. <password/>
  1202. <publickey/>
  1203. <privatekey/>
  1204. <port/>
  1205. <description/>
  1206. <inventory_link>0</inventory_link>
  1207. <applications>
  1208. <application>
  1209. <name>General</name>
  1210. </application>
  1211. <application>
  1212. <name>OS</name>
  1213. </application>
  1214. </applications>
  1215. <valuemap/>
  1216. <logtimefmt/>
  1217. <preprocessing/>
  1218. <jmx_endpoint/>
  1219. <master_item/>
  1220. </item>
  1221. <item>
  1222. <name>Number of logged in users</name>
  1223. <type>0</type>
  1224. <snmp_community/>
  1225. <snmp_oid/>
  1226. <key>system.users.num</key>
  1227. <delay>1m</delay>
  1228. <history>1w</history>
  1229. <trends>365d</trends>
  1230. <status>0</status>
  1231. <value_type>3</value_type>
  1232. <allowed_hosts/>
  1233. <units/>
  1234. <snmpv3_contextname/>
  1235. <snmpv3_securityname/>
  1236. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1237. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1238. <snmpv3_authpassphrase/>
  1239. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1240. <snmpv3_privpassphrase/>
  1241. <params/>
  1242. <ipmi_sensor/>
  1243. <authtype>0</authtype>
  1244. <username/>
  1245. <password/>
  1246. <publickey/>
  1247. <privatekey/>
  1248. <port/>
  1249. <description>Number of users who are currently logged in.</description>
  1250. <inventory_link>0</inventory_link>
  1251. <applications>
  1252. <application>
  1253. <name>OS</name>
  1254. </application>
  1255. <application>
  1256. <name>Security</name>
  1257. </application>
  1258. </applications>
  1259. <valuemap/>
  1260. <logtimefmt/>
  1261. <preprocessing/>
  1262. <jmx_endpoint/>
  1263. <master_item/>
  1264. </item>
  1265. <item>
  1266. <name>Checksum of $1</name>
  1267. <type>0</type>
  1268. <snmp_community/>
  1269. <snmp_oid/>
  1270. <key>vfs.file.cksum[/etc/passwd]</key>
  1271. <delay>1h</delay>
  1272. <history>1w</history>
  1273. <trends>365d</trends>
  1274. <status>0</status>
  1275. <value_type>3</value_type>
  1276. <allowed_hosts/>
  1277. <units/>
  1278. <snmpv3_contextname/>
  1279. <snmpv3_securityname/>
  1280. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1281. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1282. <snmpv3_authpassphrase/>
  1283. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1284. <snmpv3_privpassphrase/>
  1285. <params/>
  1286. <ipmi_sensor/>
  1287. <authtype>0</authtype>
  1288. <username/>
  1289. <password/>
  1290. <publickey/>
  1291. <privatekey/>
  1292. <port/>
  1293. <description/>
  1294. <inventory_link>0</inventory_link>
  1295. <applications>
  1296. <application>
  1297. <name>Security</name>
  1298. </application>
  1299. </applications>
  1300. <valuemap/>
  1301. <logtimefmt/>
  1302. <preprocessing/>
  1303. <jmx_endpoint/>
  1304. <master_item/>
  1305. </item>
  1306. </items>
  1307. <discovery_rules>
  1308. <discovery_rule>
  1309. <name>Network interface discovery</name>
  1310. <type>0</type>
  1311. <snmp_community/>
  1312. <snmp_oid/>
  1313. <key>net.if.discovery</key>
  1314. <delay>1h</delay>
  1315. <status>0</status>
  1316. <allowed_hosts/>
  1317. <snmpv3_contextname/>
  1318. <snmpv3_securityname/>
  1319. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1320. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1321. <snmpv3_authpassphrase/>
  1322. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1323. <snmpv3_privpassphrase/>
  1324. <params/>
  1325. <ipmi_sensor/>
  1326. <authtype>0</authtype>
  1327. <username/>
  1328. <password/>
  1329. <publickey/>
  1330. <privatekey/>
  1331. <port/>
  1332. <filter>
  1333. <evaltype>0</evaltype>
  1334. <formula/>
  1335. <conditions>
  1336. <condition>
  1337. <macro>{#IFNAME}</macro>
  1338. <value>@Network interfaces for discovery</value>
  1339. <operator>8</operator>
  1340. <formulaid>A</formulaid>
  1341. </condition>
  1342. </conditions>
  1343. </filter>
  1344. <lifetime>30d</lifetime>
  1345. <description>Discovery of network interfaces as defined in global regular expression &quot;Network interfaces for discovery&quot;.</description>
  1346. <item_prototypes>
  1347. <item_prototype>
  1348. <name>Incoming network traffic on $1</name>
  1349. <type>0</type>
  1350. <snmp_community/>
  1351. <snmp_oid/>
  1352. <key>net.if.in[{#IFNAME}]</key>
  1353. <delay>1m</delay>
  1354. <history>1w</history>
  1355. <trends>365d</trends>
  1356. <status>0</status>
  1357. <value_type>3</value_type>
  1358. <allowed_hosts/>
  1359. <units>bps</units>
  1360. <snmpv3_contextname/>
  1361. <snmpv3_securityname/>
  1362. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1363. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1364. <snmpv3_authpassphrase/>
  1365. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1366. <snmpv3_privpassphrase/>
  1367. <params/>
  1368. <ipmi_sensor/>
  1369. <authtype>0</authtype>
  1370. <username/>
  1371. <password/>
  1372. <publickey/>
  1373. <privatekey/>
  1374. <port/>
  1375. <description/>
  1376. <inventory_link>0</inventory_link>
  1377. <applications>
  1378. <application>
  1379. <name>Network interfaces</name>
  1380. </application>
  1381. </applications>
  1382. <valuemap/>
  1383. <logtimefmt/>
  1384. <preprocessing>
  1385. <step>
  1386. <type>10</type>
  1387. <params/>
  1388. </step>
  1389. <step>
  1390. <type>1</type>
  1391. <params>8</params>
  1392. </step>
  1393. </preprocessing>
  1394. <jmx_endpoint/>
  1395. <application_prototypes/>
  1396. <master_item_prototype/>
  1397. </item_prototype>
  1398. <item_prototype>
  1399. <name>Outgoing network traffic on $1</name>
  1400. <type>0</type>
  1401. <snmp_community/>
  1402. <snmp_oid/>
  1403. <key>net.if.out[{#IFNAME}]</key>
  1404. <delay>1m</delay>
  1405. <history>1w</history>
  1406. <trends>365d</trends>
  1407. <status>0</status>
  1408. <value_type>3</value_type>
  1409. <allowed_hosts/>
  1410. <units>bps</units>
  1411. <snmpv3_contextname/>
  1412. <snmpv3_securityname/>
  1413. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1414. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1415. <snmpv3_authpassphrase/>
  1416. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1417. <snmpv3_privpassphrase/>
  1418. <params/>
  1419. <ipmi_sensor/>
  1420. <authtype>0</authtype>
  1421. <username/>
  1422. <password/>
  1423. <publickey/>
  1424. <privatekey/>
  1425. <port/>
  1426. <description/>
  1427. <inventory_link>0</inventory_link>
  1428. <applications>
  1429. <application>
  1430. <name>Network interfaces</name>
  1431. </application>
  1432. </applications>
  1433. <valuemap/>
  1434. <logtimefmt/>
  1435. <preprocessing>
  1436. <step>
  1437. <type>10</type>
  1438. <params/>
  1439. </step>
  1440. <step>
  1441. <type>1</type>
  1442. <params>8</params>
  1443. </step>
  1444. </preprocessing>
  1445. <jmx_endpoint/>
  1446. <application_prototypes/>
  1447. <master_item_prototype/>
  1448. </item_prototype>
  1449. </item_prototypes>
  1450. <trigger_prototypes/>
  1451. <graph_prototypes>
  1452. <graph_prototype>
  1453. <name>Network traffic on {#IFNAME}</name>
  1454. <width>900</width>
  1455. <height>200</height>
  1456. <yaxismin>0.0000</yaxismin>
  1457. <yaxismax>100.0000</yaxismax>
  1458. <show_work_period>1</show_work_period>
  1459. <show_triggers>1</show_triggers>
  1460. <type>0</type>
  1461. <show_legend>1</show_legend>
  1462. <show_3d>0</show_3d>
  1463. <percent_left>0.0000</percent_left>
  1464. <percent_right>0.0000</percent_right>
  1465. <ymin_type_1>1</ymin_type_1>
  1466. <ymax_type_1>0</ymax_type_1>
  1467. <ymin_item_1>0</ymin_item_1>
  1468. <ymax_item_1>0</ymax_item_1>
  1469. <graph_items>
  1470. <graph_item>
  1471. <sortorder>0</sortorder>
  1472. <drawtype>5</drawtype>
  1473. <color>00AA00</color>
  1474. <yaxisside>0</yaxisside>
  1475. <calc_fnc>2</calc_fnc>
  1476. <type>0</type>
  1477. <item>
  1478. <host>Template Linux Container</host>
  1479. <key>net.if.in[{#IFNAME}]</key>
  1480. </item>
  1481. </graph_item>
  1482. <graph_item>
  1483. <sortorder>1</sortorder>
  1484. <drawtype>5</drawtype>
  1485. <color>3333FF</color>
  1486. <yaxisside>0</yaxisside>
  1487. <calc_fnc>2</calc_fnc>
  1488. <type>0</type>
  1489. <item>
  1490. <host>Template Linux Container</host>
  1491. <key>net.if.out[{#IFNAME}]</key>
  1492. </item>
  1493. </graph_item>
  1494. </graph_items>
  1495. </graph_prototype>
  1496. </graph_prototypes>
  1497. <host_prototypes/>
  1498. <jmx_endpoint/>
  1499. </discovery_rule>
  1500. <discovery_rule>
  1501. <name>Mounted filesystem discovery</name>
  1502. <type>0</type>
  1503. <snmp_community/>
  1504. <snmp_oid/>
  1505. <key>vfs.fs.discovery</key>
  1506. <delay>1h</delay>
  1507. <status>0</status>
  1508. <allowed_hosts/>
  1509. <snmpv3_contextname/>
  1510. <snmpv3_securityname/>
  1511. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1512. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1513. <snmpv3_authpassphrase/>
  1514. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1515. <snmpv3_privpassphrase/>
  1516. <params/>
  1517. <ipmi_sensor/>
  1518. <authtype>0</authtype>
  1519. <username/>
  1520. <password/>
  1521. <publickey/>
  1522. <privatekey/>
  1523. <port/>
  1524. <filter>
  1525. <evaltype>0</evaltype>
  1526. <formula/>
  1527. <conditions>
  1528. <condition>
  1529. <macro>{#FSTYPE}</macro>
  1530. <value>@File systems for discovery</value>
  1531. <operator>8</operator>
  1532. <formulaid>A</formulaid>
  1533. </condition>
  1534. </conditions>
  1535. </filter>
  1536. <lifetime>30d</lifetime>
  1537. <description>Discovery of file systems of different types as defined in global regular expression &quot;File systems for discovery&quot;.</description>
  1538. <item_prototypes>
  1539. <item_prototype>
  1540. <name>Free inodes on $1 (percentage)</name>
  1541. <type>0</type>
  1542. <snmp_community/>
  1543. <snmp_oid/>
  1544. <key>vfs.fs.inode[{#FSNAME},pfree]</key>
  1545. <delay>1m</delay>
  1546. <history>1w</history>
  1547. <trends>365d</trends>
  1548. <status>0</status>
  1549. <value_type>0</value_type>
  1550. <allowed_hosts/>
  1551. <units>%</units>
  1552. <snmpv3_contextname/>
  1553. <snmpv3_securityname/>
  1554. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1555. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1556. <snmpv3_authpassphrase/>
  1557. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1558. <snmpv3_privpassphrase/>
  1559. <params/>
  1560. <ipmi_sensor/>
  1561. <authtype>0</authtype>
  1562. <username/>
  1563. <password/>
  1564. <publickey/>
  1565. <privatekey/>
  1566. <port/>
  1567. <description/>
  1568. <inventory_link>0</inventory_link>
  1569. <applications>
  1570. <application>
  1571. <name>Filesystems</name>
  1572. </application>
  1573. </applications>
  1574. <valuemap/>
  1575. <logtimefmt/>
  1576. <preprocessing/>
  1577. <jmx_endpoint/>
  1578. <application_prototypes/>
  1579. <master_item_prototype/>
  1580. </item_prototype>
  1581. <item_prototype>
  1582. <name>Free disk space on $1</name>
  1583. <type>0</type>
  1584. <snmp_community/>
  1585. <snmp_oid/>
  1586. <key>vfs.fs.size[{#FSNAME},free]</key>
  1587. <delay>1m</delay>
  1588. <history>1w</history>
  1589. <trends>365d</trends>
  1590. <status>0</status>
  1591. <value_type>3</value_type>
  1592. <allowed_hosts/>
  1593. <units>B</units>
  1594. <snmpv3_contextname/>
  1595. <snmpv3_securityname/>
  1596. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1597. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1598. <snmpv3_authpassphrase/>
  1599. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1600. <snmpv3_privpassphrase/>
  1601. <params/>
  1602. <ipmi_sensor/>
  1603. <authtype>0</authtype>
  1604. <username/>
  1605. <password/>
  1606. <publickey/>
  1607. <privatekey/>
  1608. <port/>
  1609. <description/>
  1610. <inventory_link>0</inventory_link>
  1611. <applications>
  1612. <application>
  1613. <name>Filesystems</name>
  1614. </application>
  1615. </applications>
  1616. <valuemap/>
  1617. <logtimefmt/>
  1618. <preprocessing/>
  1619. <jmx_endpoint/>
  1620. <application_prototypes/>
  1621. <master_item_prototype/>
  1622. </item_prototype>
  1623. <item_prototype>
  1624. <name>Free disk space on $1 (percentage)</name>
  1625. <type>0</type>
  1626. <snmp_community/>
  1627. <snmp_oid/>
  1628. <key>vfs.fs.size[{#FSNAME},pfree]</key>
  1629. <delay>1m</delay>
  1630. <history>1w</history>
  1631. <trends>365d</trends>
  1632. <status>0</status>
  1633. <value_type>0</value_type>
  1634. <allowed_hosts/>
  1635. <units>%</units>
  1636. <snmpv3_contextname/>
  1637. <snmpv3_securityname/>
  1638. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1639. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1640. <snmpv3_authpassphrase/>
  1641. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1642. <snmpv3_privpassphrase/>
  1643. <params/>
  1644. <ipmi_sensor/>
  1645. <authtype>0</authtype>
  1646. <username/>
  1647. <password/>
  1648. <publickey/>
  1649. <privatekey/>
  1650. <port/>
  1651. <description/>
  1652. <inventory_link>0</inventory_link>
  1653. <applications>
  1654. <application>
  1655. <name>Filesystems</name>
  1656. </application>
  1657. </applications>
  1658. <valuemap/>
  1659. <logtimefmt/>
  1660. <preprocessing/>
  1661. <jmx_endpoint/>
  1662. <application_prototypes/>
  1663. <master_item_prototype/>
  1664. </item_prototype>
  1665. <item_prototype>
  1666. <name>Total disk space on $1</name>
  1667. <type>0</type>
  1668. <snmp_community/>
  1669. <snmp_oid/>
  1670. <key>vfs.fs.size[{#FSNAME},total]</key>
  1671. <delay>1h</delay>
  1672. <history>1w</history>
  1673. <trends>365d</trends>
  1674. <status>0</status>
  1675. <value_type>3</value_type>
  1676. <allowed_hosts/>
  1677. <units>B</units>
  1678. <snmpv3_contextname/>
  1679. <snmpv3_securityname/>
  1680. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1681. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1682. <snmpv3_authpassphrase/>
  1683. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1684. <snmpv3_privpassphrase/>
  1685. <params/>
  1686. <ipmi_sensor/>
  1687. <authtype>0</authtype>
  1688. <username/>
  1689. <password/>
  1690. <publickey/>
  1691. <privatekey/>
  1692. <port/>
  1693. <description/>
  1694. <inventory_link>0</inventory_link>
  1695. <applications>
  1696. <application>
  1697. <name>Filesystems</name>
  1698. </application>
  1699. </applications>
  1700. <valuemap/>
  1701. <logtimefmt/>
  1702. <preprocessing/>
  1703. <jmx_endpoint/>
  1704. <application_prototypes/>
  1705. <master_item_prototype/>
  1706. </item_prototype>
  1707. <item_prototype>
  1708. <name>Used disk space on $1</name>
  1709. <type>0</type>
  1710. <snmp_community/>
  1711. <snmp_oid/>
  1712. <key>vfs.fs.size[{#FSNAME},used]</key>
  1713. <delay>1m</delay>
  1714. <history>1w</history>
  1715. <trends>365d</trends>
  1716. <status>0</status>
  1717. <value_type>3</value_type>
  1718. <allowed_hosts/>
  1719. <units>B</units>
  1720. <snmpv3_contextname/>
  1721. <snmpv3_securityname/>
  1722. <snmpv3_securitylevel>0</snmpv3_securitylevel>
  1723. <snmpv3_authprotocol>0</snmpv3_authprotocol>
  1724. <snmpv3_authpassphrase/>
  1725. <snmpv3_privprotocol>0</snmpv3_privprotocol>
  1726. <snmpv3_privpassphrase/>
  1727. <params/>
  1728. <ipmi_sensor/>
  1729. <authtype>0</authtype>
  1730. <username/>
  1731. <password/>
  1732. <publickey/>
  1733. <privatekey/>
  1734. <port/>
  1735. <description/>
  1736. <inventory_link>0</inventory_link>
  1737. <applications>
  1738. <application>
  1739. <name>Filesystems</name>
  1740. </application>
  1741. </applications>
  1742. <valuemap/>
  1743. <logtimefmt/>
  1744. <preprocessing/>
  1745. <jmx_endpoint/>
  1746. <application_prototypes/>
  1747. <master_item_prototype/>
  1748. </item_prototype>
  1749. </item_prototypes>
  1750. <trigger_prototypes>
  1751. <trigger_prototype>
  1752. <expression>{Template Linux Container:vfs.fs.size[{#FSNAME},pfree].last(0)}&lt;20</expression>
  1753. <recovery_mode>0</recovery_mode>
  1754. <recovery_expression/>
  1755. <name>Free disk space is less than 20% on volume {#FSNAME}</name>
  1756. <correlation_mode>0</correlation_mode>
  1757. <correlation_tag/>
  1758. <url/>
  1759. <status>0</status>
  1760. <priority>2</priority>
  1761. <description/>
  1762. <type>0</type>
  1763. <manual_close>0</manual_close>
  1764. <dependencies/>
  1765. <tags/>
  1766. </trigger_prototype>
  1767. <trigger_prototype>
  1768. <expression>{Template Linux Container:vfs.fs.inode[{#FSNAME},pfree].last(0)}&lt;20</expression>
  1769. <recovery_mode>0</recovery_mode>
  1770. <recovery_expression/>
  1771. <name>Free inodes is less than 20% on volume {#FSNAME}</name>
  1772. <correlation_mode>0</correlation_mode>
  1773. <correlation_tag/>
  1774. <url/>
  1775. <status>0</status>
  1776. <priority>2</priority>
  1777. <description/>
  1778. <type>0</type>
  1779. <manual_close>0</manual_close>
  1780. <dependencies/>
  1781. <tags/>
  1782. </trigger_prototype>
  1783. </trigger_prototypes>
  1784. <graph_prototypes>
  1785. <graph_prototype>
  1786. <name>Disk space usage {#FSNAME}</name>
  1787. <width>600</width>
  1788. <height>340</height>
  1789. <yaxismin>0.0000</yaxismin>
  1790. <yaxismax>100.0000</yaxismax>
  1791. <show_work_period>0</show_work_period>
  1792. <show_triggers>0</show_triggers>
  1793. <type>2</type>
  1794. <show_legend>1</show_legend>
  1795. <show_3d>1</show_3d>
  1796. <percent_left>0.0000</percent_left>
  1797. <percent_right>0.0000</percent_right>
  1798. <ymin_type_1>0</ymin_type_1>
  1799. <ymax_type_1>0</ymax_type_1>
  1800. <ymin_item_1>0</ymin_item_1>
  1801. <ymax_item_1>0</ymax_item_1>
  1802. <graph_items>
  1803. <graph_item>
  1804. <sortorder>0</sortorder>
  1805. <drawtype>0</drawtype>
  1806. <color>C80000</color>
  1807. <yaxisside>0</yaxisside>
  1808. <calc_fnc>2</calc_fnc>
  1809. <type>2</type>
  1810. <item>
  1811. <host>Template Linux Container</host>
  1812. <key>vfs.fs.size[{#FSNAME},total]</key>
  1813. </item>
  1814. </graph_item>
  1815. <graph_item>
  1816. <sortorder>1</sortorder>
  1817. <drawtype>0</drawtype>
  1818. <color>00C800</color>
  1819. <yaxisside>0</yaxisside>
  1820. <calc_fnc>2</calc_fnc>
  1821. <type>0</type>
  1822. <item>
  1823. <host>Template Linux Container</host>
  1824. <key>vfs.fs.size[{#FSNAME},free]</key>
  1825. </item>
  1826. </graph_item>
  1827. </graph_items>
  1828. </graph_prototype>
  1829. </graph_prototypes>
  1830. <host_prototypes/>
  1831. <jmx_endpoint/>
  1832. </discovery_rule>
  1833. </discovery_rules>
  1834. <httptests/>
  1835. <macros/>
  1836. <templates>
  1837. <template>
  1838. <name>Template App Zabbix Agent</name>
  1839. </template>
  1840. </templates>
  1841. <screens>
  1842. <screen>
  1843. <name>System performance</name>
  1844. <hsize>2</hsize>
  1845. <vsize>3</vsize>
  1846. <screen_items>
  1847. <screen_item>
  1848. <resourcetype>0</resourcetype>
  1849. <width>500</width>
  1850. <height>120</height>
  1851. <x>0</x>
  1852. <y>0</y>
  1853. <colspan>1</colspan>
  1854. <rowspan>1</rowspan>
  1855. <elements>0</elements>
  1856. <valign>1</valign>
  1857. <halign>0</halign>
  1858. <style>0</style>
  1859. <url/>
  1860. <dynamic>0</dynamic>
  1861. <sort_triggers>0</sort_triggers>
  1862. <resource>
  1863. <name>CPU load</name>
  1864. <host>Template Linux Container</host>
  1865. </resource>
  1866. <max_columns>3</max_columns>
  1867. <application/>
  1868. </screen_item>
  1869. <screen_item>
  1870. <resourcetype>0</resourcetype>
  1871. <width>500</width>
  1872. <height>148</height>
  1873. <x>1</x>
  1874. <y>0</y>
  1875. <colspan>1</colspan>
  1876. <rowspan>1</rowspan>
  1877. <elements>0</elements>
  1878. <valign>1</valign>
  1879. <halign>0</halign>
  1880. <style>0</style>
  1881. <url/>
  1882. <dynamic>0</dynamic>
  1883. <sort_triggers>0</sort_triggers>
  1884. <resource>
  1885. <name>CPU utilization</name>
  1886. <host>Template Linux Container</host>
  1887. </resource>
  1888. <max_columns>3</max_columns>
  1889. <application/>
  1890. </screen_item>
  1891. <screen_item>
  1892. <resourcetype>0</resourcetype>
  1893. <width>500</width>
  1894. <height>100</height>
  1895. <x>0</x>
  1896. <y>1</y>
  1897. <colspan>1</colspan>
  1898. <rowspan>1</rowspan>
  1899. <elements>0</elements>
  1900. <valign>0</valign>
  1901. <halign>0</halign>
  1902. <style>0</style>
  1903. <url/>
  1904. <dynamic>0</dynamic>
  1905. <sort_triggers>0</sort_triggers>
  1906. <resource>
  1907. <name>Memory usage</name>
  1908. <host>Template Linux Container</host>
  1909. </resource>
  1910. <max_columns>3</max_columns>
  1911. <application/>
  1912. </screen_item>
  1913. <screen_item>
  1914. <resourcetype>0</resourcetype>
  1915. <width>500</width>
  1916. <height>300</height>
  1917. <x>1</x>
  1918. <y>1</y>
  1919. <colspan>1</colspan>
  1920. <rowspan>1</rowspan>
  1921. <elements>0</elements>
  1922. <valign>0</valign>
  1923. <halign>0</halign>
  1924. <style>0</style>
  1925. <url/>
  1926. <dynamic>0</dynamic>
  1927. <sort_triggers>0</sort_triggers>
  1928. <resource>
  1929. <name>Swap usage</name>
  1930. <host>Template Linux Container</host>
  1931. </resource>
  1932. <max_columns>3</max_columns>
  1933. <application/>
  1934. </screen_item>
  1935. <screen_item>
  1936. <resourcetype>1</resourcetype>
  1937. <width>500</width>
  1938. <height>100</height>
  1939. <x>0</x>
  1940. <y>2</y>
  1941. <colspan>1</colspan>
  1942. <rowspan>1</rowspan>
  1943. <elements>0</elements>
  1944. <valign>0</valign>
  1945. <halign>0</halign>
  1946. <style>0</style>
  1947. <url/>
  1948. <dynamic>0</dynamic>
  1949. <sort_triggers>0</sort_triggers>
  1950. <resource>
  1951. <key>proc.num[]</key>
  1952. <host>Template Linux Container</host>
  1953. </resource>
  1954. <max_columns>3</max_columns>
  1955. <application/>
  1956. </screen_item>
  1957. <screen_item>
  1958. <resourcetype>1</resourcetype>
  1959. <width>500</width>
  1960. <height>100</height>
  1961. <x>1</x>
  1962. <y>2</y>
  1963. <colspan>1</colspan>
  1964. <rowspan>1</rowspan>
  1965. <elements>0</elements>
  1966. <valign>0</valign>
  1967. <halign>0</halign>
  1968. <style>0</style>
  1969. <url/>
  1970. <dynamic>0</dynamic>
  1971. <sort_triggers>0</sort_triggers>
  1972. <resource>
  1973. <key>proc.num[,,run]</key>
  1974. <host>Template Linux Container</host>
  1975. </resource>
  1976. <max_columns>3</max_columns>
  1977. <application/>
  1978. </screen_item>
  1979. </screen_items>
  1980. </screen>
  1981. </screens>
  1982. </template>
  1983. </templates>
  1984. <triggers>
  1985. <trigger>
  1986. <expression>{Template Linux Container:vfs.file.cksum[/etc/passwd].diff(0)}&gt;0</expression>
  1987. <recovery_mode>0</recovery_mode>
  1988. <recovery_expression/>
  1989. <name>/etc/passwd has been changed on {HOST.NAME}</name>
  1990. <correlation_mode>0</correlation_mode>
  1991. <correlation_tag/>
  1992. <url/>
  1993. <status>0</status>
  1994. <priority>2</priority>
  1995. <description/>
  1996. <type>0</type>
  1997. <manual_close>0</manual_close>
  1998. <dependencies/>
  1999. <tags/>
  2000. </trigger>
  2001. <trigger>
  2002. <expression>{Template Linux Container:kernel.maxfiles.last(0)}&lt;1024</expression>
  2003. <recovery_mode>0</recovery_mode>
  2004. <recovery_expression/>
  2005. <name>Configured max number of opened files is too low on {HOST.NAME}</name>
  2006. <correlation_mode>0</correlation_mode>
  2007. <correlation_tag/>
  2008. <url/>
  2009. <status>0</status>
  2010. <priority>1</priority>
  2011. <description/>
  2012. <type>0</type>
  2013. <manual_close>0</manual_close>
  2014. <dependencies/>
  2015. <tags/>
  2016. </trigger>
  2017. <trigger>
  2018. <expression>{Template Linux Container:kernel.maxproc.last(0)}&lt;256</expression>
  2019. <recovery_mode>0</recovery_mode>
  2020. <recovery_expression/>
  2021. <name>Configured max number of processes is too low on {HOST.NAME}</name>
  2022. <correlation_mode>0</correlation_mode>
  2023. <correlation_tag/>
  2024. <url/>
  2025. <status>0</status>
  2026. <priority>1</priority>
  2027. <description/>
  2028. <type>0</type>
  2029. <manual_close>0</manual_close>
  2030. <dependencies/>
  2031. <tags/>
  2032. </trigger>
  2033. <trigger>
  2034. <expression>{Template Linux Container:system.cpu.util[,iowait].avg(5m)}&gt;75</expression>
  2035. <recovery_mode>0</recovery_mode>
  2036. <recovery_expression/>
  2037. <name>Disk I/O is overloaded on {HOST.NAME}</name>
  2038. <correlation_mode>0</correlation_mode>
  2039. <correlation_tag/>
  2040. <url/>
  2041. <status>0</status>
  2042. <priority>2</priority>
  2043. <description>OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system.</description>
  2044. <type>0</type>
  2045. <manual_close>0</manual_close>
  2046. <dependencies/>
  2047. <tags/>
  2048. </trigger>
  2049. <trigger>
  2050. <expression>{Template Linux Container:system.uname.diff(0)}&gt;0</expression>
  2051. <recovery_mode>0</recovery_mode>
  2052. <recovery_expression/>
  2053. <name>Host information was changed on {HOST.NAME}</name>
  2054. <correlation_mode>0</correlation_mode>
  2055. <correlation_tag/>
  2056. <url/>
  2057. <status>0</status>
  2058. <priority>1</priority>
  2059. <description/>
  2060. <type>0</type>
  2061. <manual_close>0</manual_close>
  2062. <dependencies/>
  2063. <tags/>
  2064. </trigger>
  2065. <trigger>
  2066. <expression>{Template Linux Container:system.hostname.diff(0)}&gt;0</expression>
  2067. <recovery_mode>0</recovery_mode>
  2068. <recovery_expression/>
  2069. <name>Hostname was changed on {HOST.NAME}</name>
  2070. <correlation_mode>0</correlation_mode>
  2071. <correlation_tag/>
  2072. <url/>
  2073. <status>0</status>
  2074. <priority>1</priority>
  2075. <description/>
  2076. <type>0</type>
  2077. <manual_close>0</manual_close>
  2078. <dependencies/>
  2079. <tags/>
  2080. </trigger>
  2081. <trigger>
  2082. <expression>{Template Linux Container:ct.memory.size[available].last(0)}&lt;20M</expression>
  2083. <recovery_mode>0</recovery_mode>
  2084. <recovery_expression/>
  2085. <name>Lack of available memory on server {HOST.NAME}</name>
  2086. <correlation_mode>0</correlation_mode>
  2087. <correlation_tag/>
  2088. <url/>
  2089. <status>0</status>
  2090. <priority>3</priority>
  2091. <description/>
  2092. <type>0</type>
  2093. <manual_close>0</manual_close>
  2094. <dependencies/>
  2095. <tags/>
  2096. </trigger>
  2097. <trigger>
  2098. <expression>{Template Linux Container:ct.swap.size[pused].last(0)}&gt;50</expression>
  2099. <recovery_mode>0</recovery_mode>
  2100. <recovery_expression/>
  2101. <name>Lack of free swap space on {HOST.NAME}</name>
  2102. <correlation_mode>0</correlation_mode>
  2103. <correlation_tag/>
  2104. <url/>
  2105. <status>1</status>
  2106. <priority>2</priority>
  2107. <description>It probably means that the systems requires more physical memory.</description>
  2108. <type>0</type>
  2109. <manual_close>0</manual_close>
  2110. <dependencies/>
  2111. <tags/>
  2112. </trigger>
  2113. <trigger>
  2114. <expression>{Template Linux Container:ct.cpu.load[percpu,avg1].avg(5m)}&gt;20</expression>
  2115. <recovery_mode>0</recovery_mode>
  2116. <recovery_expression/>
  2117. <name>Processor load is too high on {HOST.NAME}</name>
  2118. <correlation_mode>0</correlation_mode>
  2119. <correlation_tag/>
  2120. <url/>
  2121. <status>0</status>
  2122. <priority>2</priority>
  2123. <description/>
  2124. <type>0</type>
  2125. <manual_close>0</manual_close>
  2126. <dependencies/>
  2127. <tags/>
  2128. </trigger>
  2129. <trigger>
  2130. <expression>{Template Linux Container:proc.num[].avg(5m)}&gt;1000</expression>
  2131. <recovery_mode>0</recovery_mode>
  2132. <recovery_expression/>
  2133. <name>Too many processes on {HOST.NAME}</name>
  2134. <correlation_mode>0</correlation_mode>
  2135. <correlation_tag/>
  2136. <url/>
  2137. <status>0</status>
  2138. <priority>2</priority>
  2139. <description/>
  2140. <type>0</type>
  2141. <manual_close>0</manual_close>
  2142. <dependencies/>
  2143. <tags/>
  2144. </trigger>
  2145. <trigger>
  2146. <expression>{Template Linux Container:proc.num[,,run].avg(5m)}&gt;100</expression>
  2147. <recovery_mode>0</recovery_mode>
  2148. <recovery_expression/>
  2149. <name>Too many processes running on {HOST.NAME}</name>
  2150. <correlation_mode>0</correlation_mode>
  2151. <correlation_tag/>
  2152. <url/>
  2153. <status>0</status>
  2154. <priority>2</priority>
  2155. <description/>
  2156. <type>0</type>
  2157. <manual_close>0</manual_close>
  2158. <dependencies/>
  2159. <tags/>
  2160. </trigger>
  2161. <trigger>
  2162. <expression>{Template Linux Container:system.uptime.change(0)}&lt;0</expression>
  2163. <recovery_mode>0</recovery_mode>
  2164. <recovery_expression/>
  2165. <name>{HOST.NAME} has just been restarted</name>
  2166. <correlation_mode>0</correlation_mode>
  2167. <correlation_tag/>
  2168. <url/>
  2169. <status>0</status>
  2170. <priority>1</priority>
  2171. <description/>
  2172. <type>0</type>
  2173. <manual_close>0</manual_close>
  2174. <dependencies/>
  2175. <tags/>
  2176. </trigger>
  2177. </triggers>
  2178. <graphs>
  2179. <graph>
  2180. <name>CPU jumps</name>
  2181. <width>900</width>
  2182. <height>200</height>
  2183. <yaxismin>0.0000</yaxismin>
  2184. <yaxismax>100.0000</yaxismax>
  2185. <show_work_period>1</show_work_period>
  2186. <show_triggers>1</show_triggers>
  2187. <type>0</type>
  2188. <show_legend>1</show_legend>
  2189. <show_3d>0</show_3d>
  2190. <percent_left>0.0000</percent_left>
  2191. <percent_right>0.0000</percent_right>
  2192. <ymin_type_1>0</ymin_type_1>
  2193. <ymax_type_1>0</ymax_type_1>
  2194. <ymin_item_1>0</ymin_item_1>
  2195. <ymax_item_1>0</ymax_item_1>
  2196. <graph_items>
  2197. <graph_item>
  2198. <sortorder>0</sortorder>
  2199. <drawtype>0</drawtype>
  2200. <color>009900</color>
  2201. <yaxisside>0</yaxisside>
  2202. <calc_fnc>2</calc_fnc>
  2203. <type>0</type>
  2204. <item>
  2205. <host>Template Linux Container</host>
  2206. <key>system.cpu.switches</key>
  2207. </item>
  2208. </graph_item>
  2209. <graph_item>
  2210. <sortorder>1</sortorder>
  2211. <drawtype>0</drawtype>
  2212. <color>000099</color>
  2213. <yaxisside>0</yaxisside>
  2214. <calc_fnc>2</calc_fnc>
  2215. <type>0</type>
  2216. <item>
  2217. <host>Template Linux Container</host>
  2218. <key>system.cpu.intr</key>
  2219. </item>
  2220. </graph_item>
  2221. </graph_items>
  2222. </graph>
  2223. <graph>
  2224. <name>CPU load</name>
  2225. <width>900</width>
  2226. <height>200</height>
  2227. <yaxismin>0.0000</yaxismin>
  2228. <yaxismax>100.0000</yaxismax>
  2229. <show_work_period>1</show_work_period>
  2230. <show_triggers>1</show_triggers>
  2231. <type>0</type>
  2232. <show_legend>1</show_legend>
  2233. <show_3d>0</show_3d>
  2234. <percent_left>0.0000</percent_left>
  2235. <percent_right>0.0000</percent_right>
  2236. <ymin_type_1>1</ymin_type_1>
  2237. <ymax_type_1>0</ymax_type_1>
  2238. <ymin_item_1>0</ymin_item_1>
  2239. <ymax_item_1>0</ymax_item_1>
  2240. <graph_items>
  2241. <graph_item>
  2242. <sortorder>0</sortorder>
  2243. <drawtype>0</drawtype>
  2244. <color>009900</color>
  2245. <yaxisside>0</yaxisside>
  2246. <calc_fnc>2</calc_fnc>
  2247. <type>0</type>
  2248. <item>
  2249. <host>Template Linux Container</host>
  2250. <key>ct.cpu.load[percpu,avg1]</key>
  2251. </item>
  2252. </graph_item>
  2253. <graph_item>
  2254. <sortorder>1</sortorder>
  2255. <drawtype>0</drawtype>
  2256. <color>000099</color>
  2257. <yaxisside>0</yaxisside>
  2258. <calc_fnc>2</calc_fnc>
  2259. <type>0</type>
  2260. <item>
  2261. <host>Template Linux Container</host>
  2262. <key>ct.cpu.load[percpu,avg5]</key>
  2263. </item>
  2264. </graph_item>
  2265. <graph_item>
  2266. <sortorder>2</sortorder>
  2267. <drawtype>0</drawtype>
  2268. <color>990000</color>
  2269. <yaxisside>0</yaxisside>
  2270. <calc_fnc>2</calc_fnc>
  2271. <type>0</type>
  2272. <item>
  2273. <host>Template Linux Container</host>
  2274. <key>ct.cpu.load[percpu,avg15]</key>
  2275. </item>
  2276. </graph_item>
  2277. </graph_items>
  2278. </graph>
  2279. <graph>
  2280. <name>CPU utilization</name>
  2281. <width>900</width>
  2282. <height>200</height>
  2283. <yaxismin>0.0000</yaxismin>
  2284. <yaxismax>100.0000</yaxismax>
  2285. <show_work_period>1</show_work_period>
  2286. <show_triggers>0</show_triggers>
  2287. <type>1</type>
  2288. <show_legend>1</show_legend>
  2289. <show_3d>0</show_3d>
  2290. <percent_left>0.0000</percent_left>
  2291. <percent_right>0.0000</percent_right>
  2292. <ymin_type_1>1</ymin_type_1>
  2293. <ymax_type_1>1</ymax_type_1>
  2294. <ymin_item_1>0</ymin_item_1>
  2295. <ymax_item_1>0</ymax_item_1>
  2296. <graph_items>
  2297. <graph_item>
  2298. <sortorder>0</sortorder>
  2299. <drawtype>1</drawtype>
  2300. <color>FF5555</color>
  2301. <yaxisside>0</yaxisside>
  2302. <calc_fnc>2</calc_fnc>
  2303. <type>0</type>
  2304. <item>
  2305. <host>Template Linux Container</host>
  2306. <key>system.cpu.util[,steal]</key>
  2307. </item>
  2308. </graph_item>
  2309. <graph_item>
  2310. <sortorder>1</sortorder>
  2311. <drawtype>1</drawtype>
  2312. <color>55FF55</color>
  2313. <yaxisside>0</yaxisside>
  2314. <calc_fnc>2</calc_fnc>
  2315. <type>0</type>
  2316. <item>
  2317. <host>Template Linux Container</host>
  2318. <key>system.cpu.util[,softirq]</key>
  2319. </item>
  2320. </graph_item>
  2321. <graph_item>
  2322. <sortorder>2</sortorder>
  2323. <drawtype>1</drawtype>
  2324. <color>009999</color>
  2325. <yaxisside>0</yaxisside>
  2326. <calc_fnc>2</calc_fnc>
  2327. <type>0</type>
  2328. <item>
  2329. <host>Template Linux Container</host>
  2330. <key>system.cpu.util[,interrupt]</key>
  2331. </item>
  2332. </graph_item>
  2333. <graph_item>
  2334. <sortorder>3</sortorder>
  2335. <drawtype>1</drawtype>
  2336. <color>990099</color>
  2337. <yaxisside>0</yaxisside>
  2338. <calc_fnc>2</calc_fnc>
  2339. <type>0</type>
  2340. <item>
  2341. <host>Template Linux Container</host>
  2342. <key>system.cpu.util[,nice]</key>
  2343. </item>
  2344. </graph_item>
  2345. <graph_item>
  2346. <sortorder>4</sortorder>
  2347. <drawtype>1</drawtype>
  2348. <color>999900</color>
  2349. <yaxisside>0</yaxisside>
  2350. <calc_fnc>2</calc_fnc>
  2351. <type>0</type>
  2352. <item>
  2353. <host>Template Linux Container</host>
  2354. <key>system.cpu.util[,iowait]</key>
  2355. </item>
  2356. </graph_item>
  2357. <graph_item>
  2358. <sortorder>5</sortorder>
  2359. <drawtype>1</drawtype>
  2360. <color>990000</color>
  2361. <yaxisside>0</yaxisside>
  2362. <calc_fnc>2</calc_fnc>
  2363. <type>0</type>
  2364. <item>
  2365. <host>Template Linux Container</host>
  2366. <key>system.cpu.util[,system]</key>
  2367. </item>
  2368. </graph_item>
  2369. <graph_item>
  2370. <sortorder>6</sortorder>
  2371. <drawtype>1</drawtype>
  2372. <color>000099</color>
  2373. <yaxisside>0</yaxisside>
  2374. <calc_fnc>2</calc_fnc>
  2375. <type>0</type>
  2376. <item>
  2377. <host>Template Linux Container</host>
  2378. <key>system.cpu.util[,user]</key>
  2379. </item>
  2380. </graph_item>
  2381. <graph_item>
  2382. <sortorder>7</sortorder>
  2383. <drawtype>1</drawtype>
  2384. <color>009900</color>
  2385. <yaxisside>0</yaxisside>
  2386. <calc_fnc>2</calc_fnc>
  2387. <type>0</type>
  2388. <item>
  2389. <host>Template Linux Container</host>
  2390. <key>system.cpu.util[,idle]</key>
  2391. </item>
  2392. </graph_item>
  2393. </graph_items>
  2394. </graph>
  2395. <graph>
  2396. <name>Memory usage</name>
  2397. <width>900</width>
  2398. <height>200</height>
  2399. <yaxismin>0.0000</yaxismin>
  2400. <yaxismax>100.0000</yaxismax>
  2401. <show_work_period>1</show_work_period>
  2402. <show_triggers>1</show_triggers>
  2403. <type>0</type>
  2404. <show_legend>1</show_legend>
  2405. <show_3d>0</show_3d>
  2406. <percent_left>0.0000</percent_left>
  2407. <percent_right>0.0000</percent_right>
  2408. <ymin_type_1>1</ymin_type_1>
  2409. <ymax_type_1>2</ymax_type_1>
  2410. <ymin_item_1>0</ymin_item_1>
  2411. <ymax_item_1>
  2412. <host>Template Linux Container</host>
  2413. <key>ct.memory.size[total]</key>
  2414. </ymax_item_1>
  2415. <graph_items>
  2416. <graph_item>
  2417. <sortorder>0</sortorder>
  2418. <drawtype>1</drawtype>
  2419. <color>BB0000</color>
  2420. <yaxisside>0</yaxisside>
  2421. <calc_fnc>2</calc_fnc>
  2422. <type>0</type>
  2423. <item>
  2424. <host>Template Linux Container</host>
  2425. <key>ct.memory.size[total]</key>
  2426. </item>
  2427. </graph_item>
  2428. <graph_item>
  2429. <sortorder>1</sortorder>
  2430. <drawtype>1</drawtype>
  2431. <color>00C800</color>
  2432. <yaxisside>0</yaxisside>
  2433. <calc_fnc>2</calc_fnc>
  2434. <type>0</type>
  2435. <item>
  2436. <host>Template Linux Container</host>
  2437. <key>ct.memory.size[available]</key>
  2438. </item>
  2439. </graph_item>
  2440. </graph_items>
  2441. </graph>
  2442. <graph>
  2443. <name>Swap usage</name>
  2444. <width>600</width>
  2445. <height>340</height>
  2446. <yaxismin>0.0000</yaxismin>
  2447. <yaxismax>0.0000</yaxismax>
  2448. <show_work_period>0</show_work_period>
  2449. <show_triggers>0</show_triggers>
  2450. <type>2</type>
  2451. <show_legend>1</show_legend>
  2452. <show_3d>0</show_3d>
  2453. <percent_left>0.0000</percent_left>
  2454. <percent_right>0.0000</percent_right>
  2455. <ymin_type_1>0</ymin_type_1>
  2456. <ymax_type_1>0</ymax_type_1>
  2457. <ymin_item_1>0</ymin_item_1>
  2458. <ymax_item_1>0</ymax_item_1>
  2459. <graph_items>
  2460. <graph_item>
  2461. <sortorder>0</sortorder>
  2462. <drawtype>0</drawtype>
  2463. <color>AA0000</color>
  2464. <yaxisside>0</yaxisside>
  2465. <calc_fnc>2</calc_fnc>
  2466. <type>0</type>
  2467. <item>
  2468. <host>Template Linux Container</host>
  2469. <key>ct.swap.size[used]</key>
  2470. </item>
  2471. </graph_item>
  2472. <graph_item>
  2473. <sortorder>1</sortorder>
  2474. <drawtype>0</drawtype>
  2475. <color>00AA00</color>
  2476. <yaxisside>0</yaxisside>
  2477. <calc_fnc>2</calc_fnc>
  2478. <type>2</type>
  2479. <item>
  2480. <host>Template Linux Container</host>
  2481. <key>ct.swap.size[total]</key>
  2482. </item>
  2483. </graph_item>
  2484. </graph_items>
  2485. </graph>
  2486. </graphs>
  2487. </zabbix_export>