forked from zabbix/community-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
3378 lines (3378 loc) · 131 KB
/
sitemap.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://share.zabbix.com//templates/applications-1c-template-1c-enterprise/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-anti-virus-template-kaspersky-security-center-11/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-anti-virus-template-kaspersky/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-backup-template-arcserve-udp-vm-backup-jobs/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-backup-template-asigra-backup-snmp-traps/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-backup-template-backuppc-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-backup-template-nakivo-backup-replication/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-backup-template-restic-backup/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-backup-template-sap-backup-tenant-systemdb/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-backup-template-tsm-client-scheduler-service/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-backup-template-tsm-journal-service/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-backup-template-veeam-agents-for-microsoft-windows/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-backup-template-veeam-backup-replication-by-smtp/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-backup-template-veritas-symantec-backup-exec-server/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-cluster-template-corosync-status/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-cluster-template-oracle-exadata/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-clustered-file-systems-template-glusterfs-discovery/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-dns-template-app-powerdns-dnsdist/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-dns-template-bind-recursive-queries/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-dns-template-bind-stat/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-dns-template-knot-resolver/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-dns-template-net-dns-perf/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-dns-template-pihole-daemon-check/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-excel-export-template-nexus-3xxx/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-firewall-template-fail2ban/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-firewall-template-vipnet-ids-snmpv2/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-gitlab-template-gitlab-update-check/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-high-availability-ha-template-haproxy-using-socket/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-java-application-template-app-generic-java-jmx-with-metaspace/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-java-application-template-glassfish-webserver/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-java-application-template-jvm-and-g1-gc-monitoring-with-jmx/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-mail-servers-template-cisco-esa-ironport-additional-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-mail-servers-template-exchange-2010-client-access-performance-monitoring-rus-1/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-mail-servers-template-exchange-2010-client-access-performance-monitoring-rus/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-mail-servers-template-exchange-2016-services/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-mail-servers-template-exchange-server-2016-performance-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-mail-servers-template-fortinet-fortimail/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-mail-servers-template-mdaemon-fr/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-mail-servers-template-mdaemon-rus/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-mail-servers-template-monitor-axigen-with-zabbix/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-mail-servers-template-zimbra-collaboration/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-mail-servers-template-zimbra-zmcontrol-status/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-misc-template-lync-2013-mediation-role/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-monitoring-system-template-bcmstat-for-raspberry-pi/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-monitoring-system-template-get-nagiostats/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-monitoring-system-template-graylog-node-monitoring-using-zabbix/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-monitoring-system-template-junos-space/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-monitoring-system-template-ozeki-sms-gateway/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-monitoring-system-template-proximvision-nms/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-monitoring-system-template-zabbix-monitor-housekeeper/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-ntp-template-chrony-accuracy-1/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-ntp-template-chrony-accuracy-english/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-ntp-template-chrony-accuracy-japanese/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-ntp-template-chrony-accuracy/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-ntp-template-ntp-accuracy-japanese/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-ntp-template-ntp-accuracy/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-others-template-e2guardian-4-1-x/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-others-template-haproxy-v2-stats-via-prometheus/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-others-template-needrestart/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-others-template-okta-ad-agent-status/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-others-template-openvpn-for-thevpncompany/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-others-template-sap-process/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-others-template-tacacs-service/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-others-template-trassir-cctv-dvr-sdk/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-others-template-wireguard-vpn/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-others-template-zabbix-zookeper/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-queue-managers-template-activemq-jmx-discovery/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-queue-managers-template-activemq-jmx/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-queue-managers-template-kafka-jmx-discovery/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-security-template-canary-files-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-security-template-cve-2016-0728-check/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-security-template-devline-windows-monitoring-cctv/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-apache-2-web-server-http-item/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-cisco-ironport-email-and-web-security/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-citrix-licensing/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-citrix-xendesktop-7-15-delivery-controller/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-citrix-xendesktop-license-server/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-covid19-monitoring-updated/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-elasticsearch/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-emq-mqtt/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-eocortex-vms/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-exchange-2016/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-focco/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-hpe-oneview/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-internet-speed-test/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-lighttpd/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-lld-olt-zte/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-logstash/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-mariadb-database-partition-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-mdaemon/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-mqtt-mosquitto-broker-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-netbackup/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-nginx-plus/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-olt-zte-c320/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-pi-hole-api/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-plesk-obsidian-active/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-qbittorrent/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-rocket-chat-statistics/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-s-emby/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-secure64-dns-snmp/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-ups-hds/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-varnish/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-weblogic-health-check-jmx/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-wildfly-eap-jboss-discovery/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-template-zabbix-apt/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-tv-broadcasting-template-service-hls/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-tv-broadcasting-template-vizrt-viz-engine-snmp/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-apache-http-server/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-apache-solr-statistics-via-json/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-app-nginx-for-zabbix-3-4-x/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-domain-registration-expiration-and-ssl-certificates-check-lld/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-fcgi-stat-getter-monitor-php-fpm-without-nginx-proxy/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-microsoft-iis-7-5-8-0-8-5-and-10-services-ports-and-performance-counters/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-microsoft-iis-8-8-5-10-for-rus-server/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-nginx-for-zabbix-3-4-x/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-nginx-for-zabbix-4-0/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-nginx-stat-getter-simple-check-for-nginx-stats/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-ssllabs/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-zabbix-4-0-nginx-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/applications-web-servers-template-zabbix-4-0-php-fpm-pools-lld-http-agent/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/cloud-aws-template-aws-cloudwatch-via-docker-wrapper-with-http-agent/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/cloud-template-nextcloud-monitoring-api/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-apache-ignite-template-ignite-jmx-with-instancename/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-microsoft-sql-server-template-app-ms-sql-database-discovery-lld/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-microsoft-sql-server-template-app-ms-sql-instance-discovery-lld/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-mysql-template-mysql-windows-multiple-instances-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-oracle-template-3-0-for-pyora/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-oracle-template-oracle-db/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-oracle-template-zabbix-oci-dbaas/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-others-template-app-elasticsearch-cluster-by-zabbix-agent/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-others-template-clickhouse/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-others-template-sap-maxdb79-monitor/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-template-coleta-sinal-sfp-mikrotik/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-template-elasticsearch-cluster-by-http-for-zabbix-4-2/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-template-postgres-odbc-database-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-template-progress-datasul-totvs/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/databases-template-twemproxy-nutcracker/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-balabit-shell-control-box-snmp/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-big-ip-f5-snmp/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-bluecoat-proxyav/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-bluecoat-proxysg/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-checkpoint-vpn-1/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-fiberhome-2020/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-mcafee-email-gateway/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-mikrotik-routeros/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-mobotix-security-camera/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-nevis-proxy/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-quagga-bgp-sessions-monitor/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-rittal-pdu-7955/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-snmp-firewall-kerio-control-lld-versao-0-1/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-snmp-firewall-kerio/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-sophos-xg-firewall/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-speedtest-lan-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-appliances-template-speedtest-wan-isp-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-a10-template-a10-ax-series/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-alcatel-lucent-enterprise-template-alcatel-lucent-enterprise-omniswitch-aos-release-6-x/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-alcatel-lucent-enterprise-template-alcatel-lucent-enterprise-omniswitch-aos-release-8-x/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-arista-template-arista-snmpv2-bgp4/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-aruba-template-aruba-2930f-m-vsf-and-stacking-module/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-brocade-template-brocade-fc-3-0-1/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-brocade-template-brocade-icx-mlx-fcx/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-brocade-template-fiber-channel-switch-brocade-300/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-checkpoint-template-checkpoint-fw-1-interfaces/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-checkpoint-template-checkpoint-fw-1/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-checkpoint-template-checkpoint/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-ap-cisco-wap4410n-e/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-1900/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-2960/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-3500/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-6500/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-7200/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-7513/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-7600-health-snmp/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-7600/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-asa-515/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-asa-discovery/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-asa/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-asr-9k/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-asr1006/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-asr9k-health/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-asr9k-optical-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-bgp-snmp/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-configuration/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-ip-sla-discovery-1/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-ip-sla-discovery/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-ipsec-vpn-discovering/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-memory-and-cpu/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-nexus-9k-temperature/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-sg200-26p/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-sg300-and-sg200/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-sg500-48p/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-sg500x-48p/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-sge2000p-complete-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-sge2010-sge2010p/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-snmp-ipsec/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-snmp-memory/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-snmp-v3-interface-discovery/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-cisco-total/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-for-cisco-optical-sensors-with-autodiscovery/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-generic-cisco/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-lacp-ports-monitoring/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-sg220-26/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-cisco-template-sg350xg-2f10/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-citrix-netscaler-template-basics-plus-ha/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-d-link-template-d-link-des3026/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-d-link-template-d-link-dgs-1100-08v2-snmpv2/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-d-link-template-d-link-dgs-1100-10-me-rev-a1/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-d-link-template-d-link-dgs-1100/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-d-link-template-d-link-dgs-1210-52-rev-b/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-d-link-template-d-link-dgs-1210-52-rev-c/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-d-link-template-d-link-dgs-3120-xx/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-d-link-template-des-1210-28/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-d-link-template-des-3526/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-d-link-template-zabbix-2-2-d-link-dgs-3200-snmp/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-datacom-template-dm2500/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-datacom-template-dm4610-olt/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-datacom-template-dmos-hardware-monitor/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-datacom-template-dmos/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-dell-template-force-c150/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-eltex-template-eltex-lte-8x/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-eltex-template-eltex-mes/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-eltex-template-mes3124f-1/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-eltex-template-mes3124f/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-eltex-template-snmp-array-network-secure-access-gateway/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-extreme-template-extreme-exos/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-extreme-template-extreme-x450a/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-fortigate-template-fortianalyzer/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-fortigate-template-fortigate-100d-200b-60c-30d-1/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-fortigate-template-fortigate-100d-200b-60c-30d/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-fortigate-template-fortigate-100d/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-fortigate-template-fortigate-ha-status/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-fortigate-template-fortigate-snmp-v2019/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-fortigate-template-fortigate-snmp/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-fortigate-template-fortinet-all-discovery/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-fortigate-template-fortiswitch-124e-poe/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-fortigate-template-snmp-fortigate-wifi-access-point/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-fortigate-template-snmp-fortinet-antivirus-and-webfilter/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-generic-template-bgpv4-snmp/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-generic-template-module-etherlike-mib-snmpv3/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-generic-template-module-generic-snmpv3/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-generic-template-module-interfaces-snmpv3/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-generic-template-snmpv2-interfaces-packets-per-second/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-h3c-template-h3c-wx3510h-discovery/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-hp-template-3com-baseline-2226-sfp-plus-snmpv2/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-hp-template-3com/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-hp-template-hp-1920-16g/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-hp-template-hp-1920-24g/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-hp-template-hp-2920-xxg/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-hp-template-hp-5100-gbic/</loc>
<lastmod>2022-07-22T03:33:13+03:00</lastmod>
</url>
<url>
<loc>https://share.zabbix.com//templates/network-devices-hp-template-hp-a5120-switch-snmp-v3/</loc>