Welcome to mirror list, hosted at ThFree Co, Russian Federation.

template_os_aix.yaml « aix « os « templates - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b33edbe4fe866e186c400725bbbc38dbba660272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
zabbix_export:
  version: '6.4'
  date: '2022-08-23T13:26:34Z'
  template_groups:
    -
      uuid: 846977d1dfed4968bc5f8bdb363285bc
      name: 'Templates/Operating systems'
  templates:
    -
      uuid: 7e6bb0931a72459db9514aa924b420bc
      template: 'AIX by Zabbix agent'
      name: 'AIX by Zabbix agent'
      description: |
        Official AIX template. Requires agent of Zabbix 4.0.0 or newer.
        
        You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/
        
        Template tooling version used: 0.42
      groups:
        -
          name: 'Templates/Operating systems'
      items:
        -
          uuid: 4c80c15f5741464882aa238f27bec1bd
          name: 'Host name of Zabbix agent running'
          key: agent.hostname
          delay: 1h
          history: 7d
          trends: '0'
          value_type: CHAR
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1d
          tags:
            -
              tag: component
              value: system
        -
          uuid: 05849e0fb6504d339f2aebe159427bec
          name: 'Zabbix agent ping'
          key: agent.ping
          history: 7d
          description: 'The agent always returns 1 for this item. It could be used in combination with nodata() for availability check.'
          valuemap:
            name: 'Zabbix agent ping status'
          tags:
            -
              tag: component
              value: system
        -
          uuid: fe4731720ba64eebbf125929e499209b
          name: 'Version of Zabbix agent running'
          key: agent.version
          delay: 1h
          history: 7d
          trends: '0'
          value_type: CHAR
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1d
          tags:
            -
              tag: component
              value: application
        -
          uuid: 2c2d08ab5833493ba45ebfe5154f04c1
          name: 'Number of running processes'
          key: 'proc.num[,,run]'
          history: 7d
          description: 'Number of processes in running state.'
          tags:
            -
              tag: component
              value: os
            -
              tag: component
              value: processes
          triggers:
            -
              uuid: 458180bc0f14468386429964f877cce7
              expression: 'avg(/AIX by Zabbix agent/proc.num[,,run],5m)>30'
              name: 'Too many processes running'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: performance
        -
          uuid: 7c64480f840a4778bde5278e1c0a083f
          name: 'Number of processes'
          key: 'proc.num[]'
          history: 1w
          description: 'Total number of processes in any state.'
          tags:
            -
              tag: component
              value: os
            -
              tag: component
              value: processes
          triggers:
            -
              uuid: 874ef8fe4a6445ff971800d2d9a50541
              expression: 'avg(/AIX by Zabbix agent/proc.num[],5m)>300'
              name: 'Too many processes'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: performance
        -
          uuid: 4a15778222a24f129b8ae7c240a32ded
          name: 'Interrupts per second'
          key: system.cpu.intr
          history: 1w
          units: ips
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 4f8665f48aff4fa39e85639fed7b71c5
          name: 'Processor load (1 min average per core)'
          key: 'system.cpu.load[percpu,avg1]'
          history: 1w
          value_type: FLOAT
          description: 'The processor load is calculated as system CPU load divided by number of CPU cores.'
          tags:
            -
              tag: component
              value: cpu
          triggers:
            -
              uuid: fdbedf15fe474fd18c045c62cf8cc7d6
              expression: 'avg(/AIX by Zabbix agent/system.cpu.load[percpu,avg1],5m)>5'
              name: 'Processor load is too high'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: performance
        -
          uuid: 6fa2275f1f83456abfe786c8565c7a2d
          name: 'Processor load (5 min average per core)'
          key: 'system.cpu.load[percpu,avg5]'
          history: 1w
          value_type: FLOAT
          description: 'The processor load is calculated as system CPU load divided by number of CPU cores.'
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 02210ac2faaa4f7bb74e995726706abc
          name: 'Processor load (15 min average per core)'
          key: 'system.cpu.load[percpu,avg15]'
          history: 1w
          value_type: FLOAT
          description: 'The processor load is calculated as system CPU load divided by number of CPU cores.'
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 1ad486947da9428abdebcecb83ca3d8b
          name: 'Context switches per second'
          key: system.cpu.switches
          history: 1w
          units: sps
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: f4d10d49fa3c4dababf03d2cb80f044c
          name: 'Host name'
          key: system.hostname
          delay: 1h
          history: 1w
          trends: '0'
          value_type: CHAR
          description: 'System host name.'
          inventory_link: NAME
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1d
          tags:
            -
              tag: component
              value: os
          triggers:
            -
              uuid: d1e70b7f465447a3ab575b3fd28755a1
              expression: 'last(/AIX by Zabbix agent/system.hostname,#1)<>last(/AIX by Zabbix agent/system.hostname,#2)'
              name: 'Hostname was changed'
              priority: INFO
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: aebc5bb0264a4f55985c96445964dfc4
          name: 'Host local time'
          key: system.localtime
          history: 1w
          units: unixtime
          tags:
            -
              tag: component
              value: os
        -
          uuid: 081f8986446d43e7a3b72f7084576600
          name: 'CPU available physical processors in the shared pool'
          key: 'system.stat[cpu,app]'
          history: 1w
          value_type: FLOAT
          units: '%'
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 6a97d56a6c2e45e1b10b97e2395ff30d
          name: 'CPU entitled capacity consumed'
          key: 'system.stat[cpu,ec]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 142f33d7b2c3469c9664fedf4f053616
          name: 'CPU idle time'
          key: 'system.stat[cpu,id]'
          history: 1w
          value_type: FLOAT
          units: '%'
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 752c952fb18e4a0e8e5e3415b107b9f1
          name: 'CPU logical processor utilization'
          key: 'system.stat[cpu,lbusy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 748f1316a33b48658b11dca8f45cfcce
          name: 'CPU number of physical processors consumed'
          key: 'system.stat[cpu,pc]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 2647132edb6647ca9ef43a00ca09ecbd
          name: 'CPU system time'
          key: 'system.stat[cpu,sy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: e990898ddbb74c7b9a8c1c67cb9544cf
          name: 'CPU user time'
          key: 'system.stat[cpu,us]'
          history: 1w
          value_type: FLOAT
          units: '%'
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 2cd7a00570ad487d9cdf39fd198b2c0b
          name: 'CPU iowait time'
          key: 'system.stat[cpu,wa]'
          history: 1w
          value_type: FLOAT
          units: '%'
          tags:
            -
              tag: component
              value: cpu
          triggers:
            -
              uuid: c030cc99975d4fe3911789e58bbd5050
              expression: 'avg(/AIX by Zabbix agent/system.stat[cpu,wa],5m)>20'
              name: 'Disk I/O is overloaded'
              priority: WARNING
              description: 'OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system.'
              tags:
                -
                  tag: scope
                  value: performance
        -
          uuid: 6748e4c87589472ca1474f3c7b729e0c
          name: 'Amount of data transferred'
          key: 'system.stat[disk,bps]'
          history: 1w
          value_type: FLOAT
          units: B
          tags:
            -
              tag: component
              value: storage
        -
          uuid: bf0180d8f109451db616749990a113a6
          name: 'Number of transfers'
          key: 'system.stat[disk,tps]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: storage
        -
          uuid: 3e1af0261f6a421d8ca554f8eb222716
          name: 'Processor units is entitled to receive'
          key: 'system.stat[ent]'
          delay: 1h
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 0fe71698a3c74c93a8cb3a937dc7226c
          name: 'Kernel thread context switches'
          key: 'system.stat[faults,cs]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: a1e13d2dbd8b4086974ea32a2cd743b1
          name: 'Device interrupts'
          key: 'system.stat[faults,in]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 883c7a12b1d54f4d8189ca0d9cc43102
          name: 'System calls'
          key: 'system.stat[faults,sy]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: f027ed1c43464d4ab9a13d4b9f647e7e
          name: 'Length of the swap queue'
          key: 'system.stat[kthr,b]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: memory
        -
          uuid: 6795c2b6914d4303bf30c71c7405ff7d
          name: 'Length of the run queue'
          key: 'system.stat[kthr,r]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: cpu
        -
          uuid: 12142f133863448c9c937c671e183bbb
          name: 'Active virtual pages'
          key: 'system.stat[memory,avm]'
          history: 1w
          tags:
            -
              tag: component
              value: memory
        -
          uuid: 3b4a5ff768654ff5a87b955684a0d7b5
          name: 'Free real memory'
          key: 'system.stat[memory,fre]'
          history: 1w
          tags:
            -
              tag: component
              value: memory
        -
          uuid: bf890bf5cd1748a5af9528a111ba43c4
          name: 'File page-ins per second'
          key: 'system.stat[page,fi]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: memory
        -
          uuid: 19c4f7132b6c46aa9522bd46da3e8f03
          name: 'File page-outs per second'
          key: 'system.stat[page,fo]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: memory
        -
          uuid: 9ff3f7faa76c414aae7c5babb91fe065
          name: 'Pages freed (page replacement)'
          key: 'system.stat[page,fr]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: memory
        -
          uuid: 6009d8a0fc2f486db979b226eb975e78
          name: 'Pages paged in from paging space'
          key: 'system.stat[page,pi]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: memory
        -
          uuid: 26fb1471e08c4c46800e4887d8bccd80
          name: 'Pages paged out to paging space'
          key: 'system.stat[page,po]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: memory
        -
          uuid: 83b1456726d448d6a756e03c0ec02342
          name: 'Pages scanned by page-replacement algorithm'
          key: 'system.stat[page,sr]'
          history: 1w
          value_type: FLOAT
          tags:
            -
              tag: component
              value: memory
        -
          uuid: d0ef675d313849269890d06c7e003c9e
          name: 'System information'
          key: system.uname
          delay: 1h
          history: 1w
          trends: '0'
          value_type: CHAR
          description: 'The information as normally returned by ''uname -a''.'
          inventory_link: OS
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1d
          tags:
            -
              tag: component
              value: os
          triggers:
            -
              uuid: 3a736e64211744aea480a60b2c48a036
              expression: 'last(/AIX by Zabbix agent/system.uname,#1)<>last(/AIX by Zabbix agent/system.uname,#2)'
              name: 'Host information was changed'
              priority: INFO
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: 2e0ff86c992c4a098af8cb1bee0f0001
          name: 'System uptime'
          key: system.uptime
          delay: 10m
          history: 1w
          units: uptime
          tags:
            -
              tag: component
              value: os
          triggers:
            -
              uuid: 03a2cd88b6a64d3ea4c9bb2abbc4ae2d
              expression: 'change(/AIX by Zabbix agent/system.uptime)<0'
              name: 'Server has just been restarted'
              priority: INFO
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: 980a59760ef9481298ed35322841f939
          name: 'Number of logged in users'
          key: system.users.num
          history: 1w
          description: 'Number of users who are currently logged in.'
          tags:
            -
              tag: component
              value: os
        -
          uuid: 4771d6d33c2247d6843198152a7065a8
          name: 'Checksum of /etc/passwd'
          key: 'vfs.file.cksum[/etc/passwd,sha256]'
          delay: 1h
          history: 1w
          trends: '0'
          value_type: CHAR
          tags:
            -
              tag: component
              value: security
          triggers:
            -
              uuid: c75ee957fd6c43b2aba9919d5e1af4a1
              expression: 'last(/AIX by Zabbix agent/vfs.file.cksum[/etc/passwd,sha256],#1)<>last(/AIX by Zabbix agent/vfs.file.cksum[/etc/passwd,sha256],#2)'
              name: '/etc/passwd has been changed'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: security
        -
          uuid: 6d4d9deab17b42f4a953c5210acac6f1
          name: 'Available memory'
          key: 'vm.memory.size[available]'
          history: 1w
          units: B
          description: 'Available memory is defined as free+cached+buffers memory.'
          tags:
            -
              tag: component
              value: memory
          triggers:
            -
              uuid: 80b6406fb8474fa9801e9dffb2ccd368
              expression: 'last(/AIX by Zabbix agent/vm.memory.size[available])<20M'
              name: 'Lack of available memory on server'
              priority: AVERAGE
              tags:
                -
                  tag: scope
                  value: capacity
                -
                  tag: scope
                  value: performance
        -
          uuid: 57d30ccd5db64dc8b9498a36efe768e9
          name: 'Total memory'
          key: 'vm.memory.size[total]'
          delay: 1h
          history: 1w
          units: B
          tags:
            -
              tag: component
              value: memory
        -
          uuid: 304a3e9bb7594c83b027a32c34aeab28
          name: 'Zabbix agent availability'
          type: INTERNAL
          key: 'zabbix[host,agent,available]'
          history: 7d
          description: 'Monitoring agent availability status'
          valuemap:
            name: zabbix.host.available
          tags:
            -
              tag: component
              value: system
          triggers:
            -
              uuid: f0b9ecafede8476b94fd8dcab74cea87
              expression: 'max(/AIX by Zabbix agent/zabbix[host,agent,available],{$AGENT.TIMEOUT})=0'
              name: 'Zabbix agent is not available'
              event_name: 'Zabbix agent is not available (for {$AGENT.TIMEOUT})'
              priority: AVERAGE
              description: 'For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.'
              manual_close: 'YES'
              tags:
                -
                  tag: scope
                  value: availability
      discovery_rules:
        -
          uuid: 409cce8967b4494bbcc5193a26c69b06
          name: 'Network interface discovery'
          key: net.if.discovery
          delay: 1h
          filter:
            conditions:
              -
                macro: '{#IFNAME}'
                value: '@Network interfaces for discovery'
                formulaid: A
          description: 'Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery".'
          item_prototypes:
            -
              uuid: df9710a48eaa4a72911de3971b37c596
              name: 'Interface {#IFNAME}: Incoming network traffic'
              key: 'net.if.in[{#IFNAME}]'
              history: 1w
              units: bps
              preprocessing:
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
                -
                  type: MULTIPLIER
                  parameters:
                    - '8'
              tags:
                -
                  tag: component
                  value: network
                -
                  tag: interface
                  value: '{#IFNAME}'
            -
              uuid: 0704fb302aa94f73bedade3a998a0fa3
              name: 'Interface {#IFNAME}: Outgoing network traffic'
              key: 'net.if.out[{#IFNAME}]'
              history: 1w
              units: bps
              preprocessing:
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
                -
                  type: MULTIPLIER
                  parameters:
                    - '8'
              tags:
                -
                  tag: component
                  value: network
                -
                  tag: interface
                  value: '{#IFNAME}'
          graph_prototypes:
            -
              uuid: 366a988491344fd487561d02ed499fe0
              name: 'Interface {#IFNAME}: Network traffic'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'AIX by Zabbix agent'
                    key: 'net.if.in[{#IFNAME}]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'AIX by Zabbix agent'
                    key: 'net.if.out[{#IFNAME}]'
        -
          uuid: 4a0b17decdf1449d9463cf00720a843d
          name: 'Mounted filesystem discovery'
          key: vfs.fs.discovery
          delay: 1h
          filter:
            conditions:
              -
                macro: '{#FSTYPE}'
                value: '@File systems for discovery'
                formulaid: A
          description: 'Discovery of file systems of different types as defined in global regular expression "File systems for discovery".'
          item_prototypes:
            -
              uuid: ee5ae5de6f7b40b4a9b064bdc733de91
              name: '{#FSNAME}: Free inodes, %'
              key: 'vfs.fs.inode[{#FSNAME},pfree]'
              history: 1w
              value_type: FLOAT
              units: '%'
              tags:
                -
                  tag: component
                  value: filesystem
                -
                  tag: filesystem
                  value: '{#FSNAME}'
              trigger_prototypes:
                -
                  uuid: 6ce467d05e8745409a177799bed34bb3
                  expression: 'last(/AIX by Zabbix agent/vfs.fs.inode[{#FSNAME},pfree])<20'
                  name: '{#FSNAME}: Free inodes is less than 20%'
                  priority: WARNING
                  tags:
                    -
                      tag: scope
                      value: capacity
                    -
                      tag: scope
                      value: performance
            -
              uuid: 13e212598f744a7fa535c23731190c61
              name: '{#FSNAME}: Free disk space'
              key: 'vfs.fs.size[{#FSNAME},free]'
              history: 1w
              units: B
              tags:
                -
                  tag: component
                  value: filesystem
                -
                  tag: filesystem
                  value: '{#FSNAME}'
            -
              uuid: 428b0314dd574df1970dd2cae7e8889b
              name: '{#FSNAME}: Free disk space, %'
              key: 'vfs.fs.size[{#FSNAME},pfree]'
              history: 1w
              value_type: FLOAT
              units: '%'
              tags:
                -
                  tag: component
                  value: filesystem
                -
                  tag: filesystem
                  value: '{#FSNAME}'
              trigger_prototypes:
                -
                  uuid: 74a1fc62bfe24b7eabe4e244c70dc384
                  expression: 'last(/AIX by Zabbix agent/vfs.fs.size[{#FSNAME},pfree])<20'
                  name: '{#FSNAME}: Free disk space is less than 20%'
                  priority: WARNING
                  tags:
                    -
                      tag: scope
                      value: capacity
                    -
                      tag: scope
                      value: performance
            -
              uuid: 6f6c92bc72014612b2efb92d12d8c425
              name: '{#FSNAME}: Total disk space'
              key: 'vfs.fs.size[{#FSNAME},total]'
              delay: 1h
              history: 1w
              units: B
              tags:
                -
                  tag: component
                  value: filesystem
                -
                  tag: filesystem
                  value: '{#FSNAME}'
            -
              uuid: 915e72271f134684b2d10d05d4035962
              name: '{#FSNAME}: Used disk space'
              key: 'vfs.fs.size[{#FSNAME},used]'
              history: 1w
              units: B
              tags:
                -
                  tag: component
                  value: filesystem
                -
                  tag: filesystem
                  value: '{#FSNAME}'
          graph_prototypes:
            -
              uuid: 460b553fcd924b6abbde0b00a5525445
              name: '{#FSNAME}: Disk space usage'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'AIX by Zabbix agent'
                    key: 'vfs.fs.size[{#FSNAME},total]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'AIX by Zabbix agent'
                    key: 'vfs.fs.size[{#FSNAME},free]'
      tags:
        -
          tag: class
          value: os
        -
          tag: target
          value: aix
      macros:
        -
          macro: '{$AGENT.TIMEOUT}'
          value: 3m
          description: 'Timeout after which agent is considered unavailable. Works only for agents reachable from Zabbix server/proxy (passive mode).'
      dashboards:
        -
          uuid: 873e38e16ef94f2b9b743a3251db0fbb
          name: 'System performance'
          pages:
            -
              widgets:
                -
                  type: GRAPH_CLASSIC
                  width: '12'
                  height: '5'
                  fields:
                    -
                      type: INTEGER
                      name: source_type
                      value: '0'
                    -
                      type: GRAPH
                      name: graphid
                      value:
                        host: 'AIX by Zabbix agent'
                        name: 'CPU load'
                -
                  type: GRAPH_CLASSIC
                  x: '12'
                  width: '12'
                  height: '5'
                  fields:
                    -
                      type: INTEGER
                      name: source_type
                      value: '0'
                    -
                      type: GRAPH
                      name: graphid
                      value:
                        host: 'AIX by Zabbix agent'
                        name: 'CPU jumps'
                -
                  type: GRAPH_CLASSIC
                  'y': '5'
                  width: '12'
                  height: '5'
                  fields:
                    -
                      type: INTEGER
                      name: source_type
                      value: '0'
                    -
                      type: GRAPH
                      name: graphid
                      value:
                        host: 'AIX by Zabbix agent'
                        name: 'CPU utilization'
                -
                  type: GRAPH_CLASSIC
                  x: '12'
                  'y': '5'
                  width: '12'
                  height: '5'
                  fields:
                    -
                      type: INTEGER
                      name: source_type
                      value: '0'
                    -
                      type: GRAPH
                      name: graphid
                      value:
                        host: 'AIX by Zabbix agent'
                        name: 'Memory usage'
      valuemaps:
        -
          uuid: 4a25a6b3d6e4482ab2a748c79cb55524
          name: zabbix.host.available
          mappings:
            -
              value: '0'
              newvalue: 'not available'
            -
              value: '1'
              newvalue: available
            -
              value: '2'
              newvalue: unknown
        -
          uuid: f2885fb5e52946f8bce8eb96a60f433a
          name: 'Zabbix agent ping status'
          mappings:
            -
              value: '1'
              newvalue: Up
  graphs:
    -
      uuid: a3a5bc3b07f34793bb1c8cfc688ba8a9
      name: 'CPU jumps'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'AIX by Zabbix agent'
            key: system.cpu.switches
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'AIX by Zabbix agent'
            key: system.cpu.intr
    -
      uuid: 260417d4613d405986406c272f54a5aa
      name: 'CPU load'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'AIX by Zabbix agent'
            key: 'system.cpu.load[percpu,avg1]'
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'AIX by Zabbix agent'
            key: 'system.cpu.load[percpu,avg5]'
        -
          sortorder: '2'
          color: F63100
          item:
            host: 'AIX by Zabbix agent'
            key: 'system.cpu.load[percpu,avg15]'
    -
      uuid: a2eeb8269edf4de7ac13b7ceb1260b75
      name: 'CPU utilization'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'AIX by Zabbix agent'
            key: 'system.stat[cpu,ec]'
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'AIX by Zabbix agent'
            key: 'system.stat[cpu,pc]'
        -
          sortorder: '2'
          color: F63100
          item:
            host: 'AIX by Zabbix agent'
            key: 'system.stat[cpu,wa]'
        -
          sortorder: '3'
          color: A54F10
          item:
            host: 'AIX by Zabbix agent'
            key: 'system.stat[cpu,sy]'
        -
          sortorder: '4'
          color: FC6EA3
          item:
            host: 'AIX by Zabbix agent'
            key: 'system.stat[cpu,us]'
        -
          sortorder: '5'
          color: 6C59DC
          item:
            host: 'AIX by Zabbix agent'
            key: 'system.stat[cpu,id]'
    -
      uuid: 2664343cd69444e0a16850083845838f
      name: 'Memory usage'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'AIX by Zabbix agent'
            key: 'vm.memory.size[available]'