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

template_net_morningstar_prostar_mppt_snmp.yaml « morningstar_prostar_mppt_snmp « morningstar « net « templates - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73d4f5b028be62702fa1e0c6604949453bd22b7a (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
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
zabbix_export:
  version: '6.4'
  date: '2022-08-16T10:54:42Z'
  template_groups:
    -
      uuid: 36bff6c29af64692839d077febfc7079
      name: 'Templates/Network devices'
  templates:
    -
      uuid: b84324c2a40a496dbbb379bbf5dde8d5
      template: 'Morningstar ProStar MPPT SNMP'
      name: 'Morningstar ProStar MPPT SNMP'
      description: |
        MIBs used:
        PROSTAR-MPPT
        
        Template tooling version used: 0.42
      groups:
        -
          name: 'Templates/Network devices'
      items:
        -
          uuid: a517a7aafbab426eb6ced8d5f57c1fa4
          name: 'Array: Sweep Pmax'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.64.0
          key: 'array.sweep_pmax[arrayMaxPowerSweep.0]'
          history: 7d
          value_type: FLOAT
          units: W
          description: |
            MIB: PROSTAR-MPPT
            Array Max. Power (sweep)
             Description:Array Max. Power (last sweep)
             Scaling Factor:1.0
             Units:W
             Range:[0.0, 500]
             Modbus address:0x003E
          tags:
            -
              tag: component
              value: array
        -
          uuid: 7714c76013e341f8b6753cc5a50a960f
          name: 'Array: Sweep Vmp'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.63.0
          key: 'array.sweep_vmp[arrayVmp.0]'
          history: 7d
          value_type: FLOAT
          units: V
          description: |
            MIB: PROSTAR-MPPT
            Array Vmp
              Description:Array Max. Power Point Voltage
              Scaling Factor:1.0
              Units:V
              Range:[0.0, 5000.0]
              Modbus address:0x003D
          tags:
            -
              tag: component
              value: array
        -
          uuid: 379ab969ad784968a1090ff98f5801ff
          name: 'Array: Sweep Voc'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.65.0
          key: 'array.sweep_voc[arrayVoc.0]'
          history: 7d
          value_type: FLOAT
          units: V
          description: |
            MIB: PROSTAR-MPPT
            Array Voc
             Description:Array Open Circuit Voltage
             Scaling Factor:1.0
             Units:V
             Range:[0.0, 80.0]
             Modbus address:0x003F
          tags:
            -
              tag: component
              value: array
        -
          uuid: 41a1118e1be3417daa79faace733d861
          name: 'Array: Voltage'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.31.0
          key: 'array.voltage[arrayVoltage.0]'
          history: 7d
          value_type: FLOAT
          units: V
          description: |
            MIB: PROSTAR-MPPT
            Array Voltage
              Description:Array Voltage
              Scaling Factor:1.0
              Units:V
              Range:[0, 80]
              Modbus address:0x0013
          tags:
            -
              tag: component
              value: array
        -
          uuid: fe5c3b724e894573acdaf522a2213adb
          name: 'Battery: Battery Voltage discovery'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.30.0
          key: 'battery.voltage.discovery[batteryTerminalVoltage.0]'
          delay: 15m
          history: '0'
          value_type: FLOAT
          units: V
          description: 'MIB: PROSTAR-MPPT'
          tags:
            -
              tag: component
              value: battery
            -
              tag: component
              value: discovery
            -
              tag: component
              value: raw
        -
          uuid: ed1d54fce0904b7c9d0895a094f55108
          name: 'Battery: Charge Current'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.33.0
          key: 'charge.current[chargeCurrent.0]'
          history: 7d
          value_type: FLOAT
          units: A
          description: |
            MIB: PROSTAR-MPPT
            Charge Current
              Description:Charge Current
              Scaling Factor:1.0
              Units:A
              Range:[0, 40]
              Modbus address:0x0010
          tags:
            -
              tag: component
              value: battery
        -
          uuid: 1b1b61995c0d4d89a7f9ad4e14c3541f
          name: 'Battery: Charge State'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.45.0
          key: 'charge.state[chargeState.0]'
          history: 7d
          value_type: FLOAT
          description: |
            MIB: PROSTAR-MPPT
            Charge State
              Description:Control State
              Modbus address:0x0021
            
              0: Start
              1: NightCheck
              2: Disconnect
              3: Night
              4: Fault
              5: BulkMppt
              6: Absorption
              7: Float
              8: Equalize
              9: Slave
              10: Fixed
          valuemap:
            name: 'ProStar MPPT charge state'
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1h
          tags:
            -
              tag: component
              value: battery
          triggers:
            -
              uuid: fe4863fdd4d64e1c977328bd3d0f687f
              expression: 'last(/Morningstar ProStar MPPT SNMP/charge.state[chargeState.0])={$CHARGE.STATE.CRIT}'
              name: 'Battery: Device charge in critical state'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 4d064e4877474d72b85c9cdfb7b09dad
              expression: 'last(/Morningstar ProStar MPPT SNMP/charge.state[chargeState.0])={$CHARGE.STATE.WARN}'
              name: 'Battery: Device charge in warning state'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              dependencies:
                -
                  name: 'Battery: Device charge in critical state'
                  expression: 'last(/Morningstar ProStar MPPT SNMP/charge.state[chargeState.0])={$CHARGE.STATE.CRIT}'
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: 009eb72ff6674da49d1dd85a6f9459cf
          name: 'Counter: Charge Amp-hours'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.49.0
          key: 'counter.charge_amp_hours[ahChargeResettable.0]'
          history: 7d
          value_type: FLOAT
          units: Ah
          description: |
            MIB: PROSTAR-MPPT
            Ah Charge (Resettable)
             Description:Ah Charge (Resettable)
             Scaling Factor:0.1
             Units:Ah
             Range:[0.0, 4294967294]
             Modbus addresses:H=0x0026 L=0x0027
          preprocessing:
            -
              type: MULTIPLIER
              parameters:
                - '0.1'
          tags:
            -
              tag: component
              value: counter
        -
          uuid: 4a53a2211a1249d59369ad65762ffe47
          name: 'Counter: Charge KW-hours'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.51.0
          key: 'counter.charge_kw_hours[kwhChargeResettable.0]'
          history: 7d
          value_type: FLOAT
          units: '!kWh'
          description: |
            MIB: PROSTAR-MPPT
            kWh Charge (Resettable)
            Description:Kilowatt Hours Charge (Resettable)
            Scaling Factor:1.0
            Units:kWh
            Range:[0.0, 65535]
            Modbus address:0x002A
          tags:
            -
              tag: component
              value: counter
        -
          uuid: c72ef851c2d240c9835c1703cec49fd6
          name: 'Counter: Load Amp-hours'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.56.0
          key: 'counter.load_amp_hours[ahLoadResettable.0]'
          history: 7d
          value_type: FLOAT
          units: Ah
          description: |
            MIB: PROSTAR-MPPT
            Description:Ah Load (Resettable)
            Scaling Factor:0.1
            Units:Ah
            Range:[0.0, 4294967294]
            Modbus addresses:H=0x0032 L=0x0033
          preprocessing:
            -
              type: MULTIPLIER
              parameters:
                - '0.1'
          tags:
            -
              tag: component
              value: counter
        -
          uuid: 29a7d76472fb4025bc78fbeab273e955
          name: 'Load: Current'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.34.0
          key: 'load.current[loadCurrent.0]'
          history: 7d
          value_type: FLOAT
          units: A
          description: |
            MIB: PROSTAR-MPPT
            Load Current
             Description:Load Current
             Scaling Factor:1.0
             Units:A
             Range:[0, 60]
             Modbus address:0x0016
          tags:
            -
              tag: component
              value: load
        -
          uuid: ae927b5cba5b43f5a2136fd3ee71b63d
          name: 'Load: State'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.53.0
          key: 'load.state[loadState.0]'
          history: 7d
          value_type: FLOAT
          description: |
            MIB: PROSTAR-MPPT
            Load State
             Description:Load State
             Modbus address:0x002E
            
             0: Start
            1: Normal
            2: LvdWarning
            3: Lvd
            4: Fault
            5: Disconnect
            6: NormalOff
            7: Override
            8: NotUsed
          valuemap:
            name: 'ProStar MPPT load state'
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1h
          tags:
            -
              tag: component
              value: load
          triggers:
            -
              uuid: a88025c5e5a748e3a6dfa01685ba075b
              expression: 'last(/Morningstar ProStar MPPT SNMP/load.state[loadState.0])={$LOAD.STATE.CRIT:"lvd"} or last(/Morningstar ProStar MPPT SNMP/load.state[loadState.0])={$LOAD.STATE.CRIT:"fault"}'
              name: 'Load: Device load in critical state'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 9ab107b39b874fed83d09e7c1964a699
              expression: 'last(/Morningstar ProStar MPPT SNMP/load.state[loadState.0])={$LOAD.STATE.WARN:"lvdWarning"}  or last(/Morningstar ProStar MPPT SNMP/load.state[loadState.0])={$LOAD.STATE.WARN:"override"}'
              name: 'Load: Device load in warning state'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              dependencies:
                -
                  name: 'Load: Device load in critical state'
                  expression: 'last(/Morningstar ProStar MPPT SNMP/load.state[loadState.0])={$LOAD.STATE.CRIT:"lvd"} or last(/Morningstar ProStar MPPT SNMP/load.state[loadState.0])={$LOAD.STATE.CRIT:"fault"}'
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: 47894752dd1d41f1aa882387acf6dc3a
          name: 'Load: Voltage'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.32.0
          key: 'load.voltage[loadVoltage.0]'
          history: 7d
          value_type: FLOAT
          units: V
          description: |
            MIB: PROSTAR-MPPT
            Load Voltage
             Description:Load Voltage
             Scaling Factor:1.0
             Units:V
             Range:[0, 80]
             Modbus address:0x0014
          tags:
            -
              tag: component
              value: load
        -
          uuid: d44cb5d7db31402dae79275a9148817d
          name: 'Status: Alarms'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.59.0
          key: 'status.alarms[alarms.0]'
          history: 1h
          trends: '0'
          value_type: TEXT
          description: |
            MIB: PROSTAR-MPPT
            Description:Alarms
            Modbus addresses:H=0x0038 L=0x0039
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1h
            -
              type: JAVASCRIPT
              parameters:
                - |
                  var FIELDS = [
                    'rtsOpen',
                    'rtsShorted',
                    'rtsDisconnected',
                    'heatsinkTempSensorOpen',
                    'heatsinkTempSensorShorted',
                    'heatsinkTempLimit',
                    'inductorTempSensorOpen',
                    'inductorTempSensorShorted',
                    'inductorTempLimit',
                    'currentLimit',
                    'currentMeasurementError',
                    'batterySenseOutOfRange',
                    'batterySenseDisconnected',
                    'uncalibrated',
                    'tb5v',
                    'fp10SupplyOutOfRange',
                    'unused',
                    'mosfetOpen',
                    'arrayCurrentOffset',
                    'loadCurrentOffset',
                    'p33SupplyOutOfRange',
                    'p12SupplyOutOfRange',
                    'hightInputVoltageLimit',
                    'controllerReset',
                    'loadLvd',
                    'logTimeout',
                    'eepromAccessFailure'
                  ];
                  
                  var flags = parseInt(value.replace(/\x20/g, ''), 16),
                    result = [];
                  
                  for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {
                      if (flags & f) {
                          result.push(FIELDS[i]);
                      }
                  }
                  
                  return result.length ? result.join('\n') : 'No alarms';
          tags:
            -
              tag: component
              value: status
          triggers:
            -
              uuid: a2d0ab5150dd4bad8b5ec4f2c6aa13f8
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","arrayCurrentOffset")=2'
              name: 'Status: Device has "arrayCurrentOffset" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: cc6a15f16fd8470a9dcd9a9e01cba61c
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","batterySenseDisconnected")=2'
              name: 'Status: Device has "batterySenseDisconnected" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 55d4726d9b9047c79cf690353d950797
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","batterySenseOutOfRange")=2'
              name: 'Status: Device has "batterySenseOutOfRange" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 7f015198395042219666cde4458d407c
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","controllerReset")=2'
              name: 'Status: Device has "controllerReset" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 48339339e5a7465fbc67266998c9a8fe
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","currentLimit")=2'
              name: 'Status: Device has "currentLimit" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: c88074037099498c896bb4793e04fea3
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","currentMeasurementError")=2'
              name: 'Status: Device has "currentMeasurementError" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: cecd8ee17e5143ffb46495e927750c82
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","eepromAccessFailure")=2'
              name: 'Status: Device has "eepromAccessFailure" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 4affa15e1c1c42459ea8dd6820d1c008
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","fp10SupplyOutOfRange")=2'
              name: 'Status: Device has "fp10SupplyOutOfRange" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 41e4225072a3468696cfb534c65b9736
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","heatsinkTempLimit")=2'
              name: 'Status: Device has "heatsinkTempLimit" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 5d269997a57d44ceb545e751e8e2d919
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","heatsinkTempSensorOpen")=2'
              name: 'Status: Device has "heatsinkTempSensorOpen" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: a8342a4e2fff40a7b830086dec303fd9
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","heatsinkTempSensorShorted")=2'
              name: 'Status: Device has "heatsinkTempSensorShorted" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 32e5b7ae81ce4ebea9b05ff7ab411e5a
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","hightInputVoltageLimit")=2'
              name: 'Status: Device has "hightInputVoltageLimit" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: c10d27c1d9d54b8981a639e7bf0dfc02
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","inductorTempLimit")=2'
              name: 'Status: Device has "inductorTempLimit" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 9f80959684b34b6498a1634097cd0d22
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","inductorTempSensorOpen")=2'
              name: 'Status: Device has "inductorTempSensorOpen" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: cc735ddcc98e4c099bb770e2b2a171b5
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","inductorTempSensorShorted")=2'
              name: 'Status: Device has "inductorTempSensorShorted" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 217935cd6c7547bc95f5af51b3e643d4
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","loadCurrentOffset")=2'
              name: 'Status: Device has "loadCurrentOffset" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: cb05261f120240bf944b304ffc4979e6
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","loadLvd")=2'
              name: 'Status: Device has "loadLvd" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 1ed1de932e084ce5ba03747bdd8ca4e5
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","logTimeout")=2'
              name: 'Status: Device has "logTimeout" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 8824f80f1ef245508d6d0d660e3cabf1
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","mosfetOpen")=2'
              name: 'Status: Device has "mosfetOpen" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 59569aaebf32403c9fd310f6b26845b0
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","p12SupplyOutOfRange")=2'
              name: 'Status: Device has "p12SupplyOutOfRange" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 4775d3a7b843455eb404661c070be092
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","p33SupplyOutOfRange")=2'
              name: 'Status: Device has "p33SupplyOutOfRange" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 2015d2b876564ad79699a23fc6b60f07
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","rtsDisconnected")=2'
              name: 'Status: Device has "rtsDisconnected" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: cce1eb2bee094a3b9a993ec2d60d182b
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","rtsShorted")=2'
              name: 'Status: Device has "rtsShorted" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 7a07b757660a4c9a879ac03a94832720
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","tb5v")=2'
              name: 'Status: Device has "tb5v" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 39205fc6d2cd4888994cccb016b4b2f8
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.alarms[alarms.0],#3,"like","uncalibrated")=2'
              name: 'Status: Device has "uncalibrated" alarm flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: 8fbb5c650fa040c892a1d10a17fbbf14
          name: 'Status: Array Faults'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.46.0
          key: 'status.array_faults[arrayFaults.0]'
          history: 1h
          trends: '0'
          value_type: TEXT
          description: |
            MIB: PROSTAR-MPPT
            Description:Array Faults
            Modbus address:0x0022
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1h
            -
              type: JAVASCRIPT
              parameters:
                - |
                  var FIELDS = [
                    'overcurrent',
                    'mosfetSShorted',
                    'software',
                    'batteryHvd',
                    'arrayHvd',
                    'customSettingsEdit',
                    'rtsShorted',
                    'rtsNoLongerValid',
                    'localTempSensorDamaged',
                    'batteryLowVoltageDisconnect',
                    'slaveTimeout',
                    'dipSwitchChanged',
                  ];
                  
                  var flags = parseInt(value.replace(/\x20/g, ''), 16),
                    result = [];
                  
                  for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {
                      if (flags & f) {
                          result.push(FIELDS[i]);
                      }
                  }
                  
                  return result.length ? result.join('\n') : 'No faults';
          tags:
            -
              tag: component
              value: status
          triggers:
            -
              uuid: 8322f8ca8e2e462a8799dc399f17ba27
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","arrayHvd")=2'
              name: 'Status: Device has "arrayHvd" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 6a138cd2af754bb3a22173e8da28b254
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","batteryHvd")=2'
              name: 'Status: Device has "batteryHvd" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 8e42cf21ec10409da840021bfd26f74c
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","batteryLowVoltageDisconnect")=2'
              name: 'Status: Device has "batteryLowVoltageDisconnect" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: d1112d9828064a879d56626ac6339dbf
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","customSettingsEdit")=2'
              name: 'Status: Device has "customSettingsEdit" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 75a67f17a33e41eea34585fade6319ef
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","dipSwitchChanged")=2'
              name: 'Status: Device has "dipSwitchChanged" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 4502112383524f0499ea13e6f83ce789
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","localTempSensorDamaged")=2'
              name: 'Status: Device has "localTempSensorDamaged" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: f1489dc1f8574895bd233b14ce080748
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","mosfetSShorted")=2'
              name: 'Status: Device has "mosfetSShorted" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 4ea903d3e8644ddaa5309eaa9715b894
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","overcurrent")=2'
              name: 'Status: Device has "overcurrent" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: e12a29ec16ea423cb69ca4ce460f201b
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","rtsNoLongerValid")=2'
              name: 'Status: Device has "rtsNoLongerValid" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 3ec4307bb2c444fc8eca27f9b7a136e2
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","rtsShorted")=2'
              name: 'Status: Device has "rtsShorted" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 915c00d98e144ee7a9a2d50d0bd474c0
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","slaveTimeout")=2'
              name: 'Status: Device has "slaveTimeout" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 9aac314eef594a8d86fd4b88308428e5
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.array_faults[arrayFaults.0],#3,"like","software")=2'
              name: 'Status: Device has "software" array faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: 712a9b442bec4e89acf4ee5d5bf26fb8
          name: 'Status: Uptime (hardware)'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.2.1.25.1.1.0
          key: status.hw.uptime
          history: 7d
          units: uptime
          description: 'The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.'
          preprocessing:
            -
              type: CHECK_NOT_SUPPORTED
              parameters:
                - ''
              error_handler: CUSTOM_VALUE
              error_handler_params: '0'
            -
              type: MULTIPLIER
              parameters:
                - '0.01'
          tags:
            -
              tag: component
              value: status
        -
          uuid: fb4d2147a8224b599ad908eca1b019e4
          name: 'Status: Load Faults'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.54.0
          key: 'status.load_faults[loadFaults.0]'
          history: 1h
          trends: '0'
          value_type: TEXT
          description: |
            MIB: PROSTAR-MPPT
            Description:Array Faults
            Modbus address:0x0022
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1h
            -
              type: JAVASCRIPT
              parameters:
                - |
                  var FIELDS = [
                    'externalShortCircuit',
                    'overcurrent',
                    'mosfetShorted',
                    'software',
                    'loadHvd',
                    'highTempDisconnect',
                    'dipSwitchChanged',
                    'customSettingsEdit'
                  ];
                  
                  var flags = parseInt(value.replace(/\x20/g, ''), 16),
                    result = [];
                  
                  for (var i = 0, f = 1 << 31 >>> 0, l = FIELDS.length; i < l; i++, f >>>= 1) {
                      if (flags & f) {
                          result.push(FIELDS[i]);
                      }
                  }
                  
                  return result.length ? result.join('\n') : 'No faults';
          tags:
            -
              tag: component
              value: status
          triggers:
            -
              uuid: 93750f768ba94f1bb9302fc17c76faeb
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.load_faults[loadFaults.0],#3,"like","customSettingsEdit")=2'
              name: 'Status: Device has "customSettingsEdit" load faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 456e2c36369f4519b2c80bcfe1acb4b0
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.load_faults[loadFaults.0],#3,"like","dipSwitchChanged")=2'
              name: 'Status: Device has "dipSwitchChanged" load faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 359df17c40684187b7ae92c8aa0c9624
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.load_faults[loadFaults.0],#3,"like","externalShortCircuit")=2'
              name: 'Status: Device has "externalShortCircuit" load faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 6dadf09064304f4381ad9ed0436e562a
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.load_faults[loadFaults.0],#3,"like","highTempDisconnect")=2'
              name: 'Status: Device has "highTempDisconnect" load faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: bc41145ae8074290913a47cc3fd11e1e
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.load_faults[loadFaults.0],#3,"like","loadHvd")=2'
              name: 'Status: Device has "loadHvd" load faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 8c8a7021928e4bf78b6309574e298876
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.load_faults[loadFaults.0],#3,"like","mosfetShorted")=2'
              name: 'Status: Device has "mosfetShorted" load faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: b7d3f05837bd4d788d14f1aaf18b0482
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.load_faults[loadFaults.0],#3,"like","overcurrent")=2'
              name: 'Status: Device has "overcurrent" load faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 801728740c1948b1a751469e6443daab
              expression: 'count(/Morningstar ProStar MPPT SNMP/status.load_faults[loadFaults.0],#3,"like","software")=2'
              name: 'Status: Device has "software" load faults flag'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: 526ee94df484462a9264e57d92954e64
          name: 'Status: Uptime (network)'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.2.1.1.3.0
          key: status.net.uptime
          history: 7d
          units: uptime
          description: 'The time (in hundredths of a second) since the network management portion of the system was last re-initialized.'
          preprocessing:
            -
              type: MULTIPLIER
              parameters:
                - '0.01'
          tags:
            -
              tag: component
              value: status
          triggers:
            -
              uuid: 59cbcaaee8304b38a1144b3abf40bd9d
              expression: 'nodata(/Morningstar ProStar MPPT SNMP/status.net.uptime,5m)=1'
              name: 'Status: Failed to fetch data'
              event_name: 'Status: Failed to fetch data (or no data for 5m)'
              priority: WARNING
              description: 'Zabbix has not received data for items for the last 5 minutes.'
              manual_close: 'YES'
              tags:
                -
                  tag: scope
                  value: availability
        -
          uuid: 20ce95acdff6486684461f10579a73b4
          name: 'Battery: Target Voltage'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.48.0
          key: 'target.voltage[targetVoltage.0]'
          history: 7d
          value_type: FLOAT
          units: V
          description: |
            MIB: PROSTAR-MPPT
            Target Voltage
             Description:Target Regulation Voltage
             Scaling Factor:1.0
             Units:V
             Range:[0.0, 80.0]
             Modbus address:0x0024
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1h
          tags:
            -
              tag: component
              value: battery
        -
          uuid: 9a87cdcf65184059be334e986bcf801d
          name: 'Temperature: Ambient'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.40.0
          key: 'temp.ambient[ambientTemperature.0]'
          history: 7d
          value_type: FLOAT
          units: C
          description: |
            MIB: PROSTAR-MPPT
            Ambient Temperature
             Description:Ambient Temperature
             Scaling Factor:1.0
             Units:deg C
             Range:[-128, 127]
             Modbus address:0x001C
          tags:
            -
              tag: component
              value: temperature
        -
          uuid: 1a8e79f49e86429abc80dd29598299ee
          name: 'Temperature: Battery'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.39.0
          key: 'temp.battery[batteryTemperature.0]'
          history: 7d
          value_type: FLOAT
          units: C
          description: |
            MIB: PROSTAR-MPPT
            Battery Temperature
              Description:Battery Temperature
              Scaling Factor:1.0
              Units:deg C
              Range:[-128, 127]
              Modbus address:0x001B
          tags:
            -
              tag: component
              value: temperature
          triggers:
            -
              uuid: c74e1d3be1c24bde986bbce068db4bb8
              expression: 'min(/Morningstar ProStar MPPT SNMP/temp.battery[batteryTemperature.0],5m)>{$BATTERY.TEMP.MAX.CRIT}'
              name: 'Temperature: Critically high battery temperature'
              event_name: 'Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 0c2180ae5deb41adb503e37bf91c34e2
              expression: 'max(/Morningstar ProStar MPPT SNMP/temp.battery[batteryTemperature.0],5m)<{$BATTERY.TEMP.MIN.CRIT}'
              name: 'Temperature: Critically low battery temperature'
              event_name: 'Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: HIGH
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 1ab91d781c734f1eb2b9552f6dee9370
              expression: 'min(/Morningstar ProStar MPPT SNMP/temp.battery[batteryTemperature.0],5m)>{$BATTERY.TEMP.MAX.WARN}'
              name: 'Temperature: High battery temperature'
              event_name: 'Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              dependencies:
                -
                  name: 'Temperature: Critically high battery temperature'
                  expression: 'min(/Morningstar ProStar MPPT SNMP/temp.battery[batteryTemperature.0],5m)>{$BATTERY.TEMP.MAX.CRIT}'
              tags:
                -
                  tag: scope
                  value: notice
            -
              uuid: 6ec855dc6a5c42a79f1f40e14655418a
              expression: 'max(/Morningstar ProStar MPPT SNMP/temp.battery[batteryTemperature.0],5m)<{$BATTERY.TEMP.MIN.WARN}'
              name: 'Temperature: Low battery temperature'
              opdata: 'Current value: {ITEM.LASTVALUE1}'
              priority: WARNING
              dependencies:
                -
                  name: 'Temperature: Critically low battery temperature'
                  expression: 'max(/Morningstar ProStar MPPT SNMP/temp.battery[batteryTemperature.0],5m)<{$BATTERY.TEMP.MIN.CRIT}'
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: 7d0cf28c0d334154971738df11775d1f
          name: 'Temperature: Heatsink'
          type: SNMP_AGENT
          snmp_oid: 1.3.6.1.4.1.33333.5.38.0
          key: 'temp.heatsink[heatsinkTemperature.0]'
          history: 7d
          value_type: FLOAT
          units: C
          description: |
            MIB: PROSTAR-MPPT
            Heatsink Temperature
             Description:Heatsink Temperature
             Scaling Factor:1.0
             Units:deg C
             Range:[-128, 127]
             Modbus address:0x001A
          tags:
            -
              tag: component
              value: temperature
      discovery_rules:
        -
          uuid: 1a21c30663c74c23b60e6ad72e228681
          name: 'Battery voltage discovery'
          type: DEPENDENT
          key: battery.voltage.discovery
          delay: '0'
          description: 'Discovery for battery voltage triggers'
          item_prototypes:
            -
              uuid: c02c73a349ec4a6b8557e142c4866148
              name: 'Battery: Voltage{#SINGLETON}'
              type: SNMP_AGENT
              snmp_oid: 1.3.6.1.4.1.33333.5.30.0
              key: 'battery.voltage[batteryTerminalVoltage.0{#SINGLETON}]'
              history: 7d
              value_type: FLOAT
              units: V
              description: |
                MIB: PROSTAR-MPPT
                Battery Terminal Voltage
                Description:Battery  Terminal Voltage
                Scaling Factor:1.0
                Units:V
                Range:[0.0, 80.0]
                Modbus address:0x0012
              tags:
                -
                  tag: component
                  value: battery
              trigger_prototypes:
                -
                  uuid: 402f73ca5b8d412689a7e715223e890d
                  expression: 'min(/Morningstar ProStar MPPT SNMP/battery.voltage[batteryTerminalVoltage.0{#SINGLETON}],5m)>{#VOLTAGE.MAX.CRIT}'
                  name: 'Battery: Critically high battery voltage'
                  event_name: 'Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)'
                  opdata: 'Current value: {ITEM.LASTVALUE1}'
                  priority: HIGH
                  tags:
                    -
                      tag: scope
                      value: capacity
                -
                  uuid: 753a0d25832d434186f586f895124f31
                  expression: 'max(/Morningstar ProStar MPPT SNMP/battery.voltage[batteryTerminalVoltage.0{#SINGLETON}],5m)<{#VOLTAGE.MIN.CRIT}'
                  name: 'Battery: Critically low battery voltage'
                  event_name: 'Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)'
                  opdata: 'Current value: {ITEM.LASTVALUE1}'
                  priority: HIGH
                  tags:
                    -
                      tag: scope
                      value: capacity
                -
                  uuid: 66e1fdfbfa5740dfa8945626f7f8be78
                  expression: 'min(/Morningstar ProStar MPPT SNMP/battery.voltage[batteryTerminalVoltage.0{#SINGLETON}],5m)>{#VOLTAGE.MAX.WARN}'
                  name: 'Battery: High battery voltage'
                  event_name: 'Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)'
                  opdata: 'Current value: {ITEM.LASTVALUE1}'
                  priority: WARNING
                  dependencies:
                    -
                      name: 'Battery: Critically high battery voltage'
                      expression: 'min(/Morningstar ProStar MPPT SNMP/battery.voltage[batteryTerminalVoltage.0{#SINGLETON}],5m)>{#VOLTAGE.MAX.CRIT}'
                  tags:
                    -
                      tag: scope
                      value: capacity
                -
                  uuid: c9f3d03ce06641eb9b184f511a3a0341
                  expression: 'max(/Morningstar ProStar MPPT SNMP/battery.voltage[batteryTerminalVoltage.0{#SINGLETON}],5m)<{#VOLTAGE.MIN.WARN}'
                  name: 'Battery: Low battery voltage'
                  event_name: 'Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)'
                  opdata: 'Current value: {ITEM.LASTVALUE1}'
                  priority: WARNING
                  dependencies:
                    -
                      name: 'Battery: Critically low battery voltage'
                      expression: 'max(/Morningstar ProStar MPPT SNMP/battery.voltage[batteryTerminalVoltage.0{#SINGLETON}],5m)<{#VOLTAGE.MIN.CRIT}'
                  tags:
                    -
                      tag: scope
                      value: capacity
          graph_prototypes:
            -
              uuid: 480e4c11060a4e34851b48bf7b9c5bb1
              name: 'Voltage: Battery/Load{#SINGLETON}'
              graph_items:
                -
                  drawtype: GRADIENT_LINE
                  color: 1A7C11
                  item:
                    host: 'Morningstar ProStar MPPT SNMP'
                    key: 'battery.voltage[batteryTerminalVoltage.0{#SINGLETON}]'
                -
                  sortorder: '1'
                  drawtype: GRADIENT_LINE
                  color: 2774A4
                  item:
                    host: 'Morningstar ProStar MPPT SNMP'
                    key: 'load.voltage[loadVoltage.0]'
          master_item:
            key: 'battery.voltage.discovery[batteryTerminalVoltage.0]'
          preprocessing:
            -
              type: JAVASCRIPT
              parameters:
                - |
                  var v_range = [
                        [[0, 18], [12, 15, 11.5, 15.5]],
                        [[18, 36], [24, 30, 23, 31]],
                        [[36, 99], [48, 60, 46, 62]],
                    ],
                    result = [];
                  
                  for (var idx in v_range) {
                      if (v_range[idx][0][0] < value && value <= v_range[idx][0][1]) {
                          result = [{
                              '{#VOLTAGE.MIN.WARN}': parseInt({$VOLTAGE.MIN.WARN}) || v_range[idx][1][0],
                              '{#VOLTAGE.MAX.WARN}': parseInt({$VOLTAGE.MAX.WARN}) || v_range[idx][1][1],
                              '{#VOLTAGE.MIN.CRIT}': parseInt({$VOLTAGE.MIN.CRIT}) || v_range[idx][1][2],
                              '{#VOLTAGE.MAX.CRIT}': parseInt({$VOLTAGE.MAX.CRIT}) || v_range[idx][1][3],
                              '{#SINGLETON}': ''
                          }];
                          break;
                      }
                  }
                  
                  return JSON.stringify(result);
      tags:
        -
          tag: class
          value: power
        -
          tag: target
          value: morningstar
      macros:
        -
          macro: '{$BATTERY.TEMP.MAX.CRIT}'
          value: '60'
          description: 'Battery high temperature critical value'
        -
          macro: '{$BATTERY.TEMP.MAX.WARN}'
          value: '45'
          description: 'Battery high temperature warning value'
        -
          macro: '{$BATTERY.TEMP.MIN.CRIT}'
          value: '-20'
          description: 'Battery low temperature critical value'
        -
          macro: '{$BATTERY.TEMP.MIN.WARN}'
          value: '0'
          description: 'Battery low temperature warning value'
        -
          macro: '{$CHARGE.STATE.CRIT}'
          value: '4'
          description: fault
        -
          macro: '{$CHARGE.STATE.WARN}'
          value: '2'
          description: disconnect
        -
          macro: '{$LOAD.STATE.CRIT:"fault"}'
          value: '4'
          description: fault
        -
          macro: '{$LOAD.STATE.CRIT:"lvd"}'
          value: '3'
          description: lvd
        -
          macro: '{$LOAD.STATE.WARN:"disconnect"}'
          value: '5'
          description: disconnect
        -
          macro: '{$LOAD.STATE.WARN:"lvdWarning"}'
          value: '2'
          description: lvdWarning
        -
          macro: '{$LOAD.STATE.WARN:"override"}'
          value: '7'
          description: override
        -
          macro: '{$VOLTAGE.MAX.CRIT}'
        -
          macro: '{$VOLTAGE.MAX.WARN}'
        -
          macro: '{$VOLTAGE.MIN.CRIT}'
        -
          macro: '{$VOLTAGE.MIN.WARN}'
      valuemaps:
        -
          uuid: 1703c3aeb1b24641821e1c6d2cb4c8b7
          name: 'ProStar MPPT charge state'
          mappings:
            -
              value: '0'
              newvalue: Start
            -
              value: '1'
              newvalue: NightCheck
            -
              value: '2'
              newvalue: Disconnect
            -
              value: '3'
              newvalue: Night
            -
              value: '4'
              newvalue: Fault
            -
              value: '5'
              newvalue: BulkMppt
            -
              value: '6'
              newvalue: Absorption
            -
              value: '7'
              newvalue: Float
            -
              value: '8'
              newvalue: Equalize
            -
              value: '9'
              newvalue: Slave
            -
              value: '10'
              newvalue: Fixed
        -
          uuid: b5403a0805a54b9294f69a1e11a438b1
          name: 'ProStar MPPT load state'
          mappings:
            -
              value: '0'
              newvalue: Start
            -
              value: '1'
              newvalue: Normal
            -
              value: '2'
              newvalue: LvdWarning
            -
              value: '3'
              newvalue: Lvd
            -
              value: '4'
              newvalue: Fault
            -
              value: '5'
              newvalue: Disconnect
            -
              value: '6'
              newvalue: NormalOff
            -
              value: '7'
              newvalue: Override
            -
              value: '8'
              newvalue: NotUsed
  triggers:
    -
      uuid: ca65a39c019046c29a522a6ca93ceb75
      expression: '(last(/Morningstar ProStar MPPT SNMP/status.hw.uptime)>0 and last(/Morningstar ProStar MPPT SNMP/status.hw.uptime)<10m) or (last(/Morningstar ProStar MPPT SNMP/status.hw.uptime)=0 and last(/Morningstar ProStar MPPT SNMP/status.net.uptime)<10m)'
      name: 'Status: Device has been restarted'
      event_name: 'Status: Device has been restarted (uptime < 10m)'
      priority: INFO
      description: 'Uptime is less than 10 minutes.'
      manual_close: 'YES'
      tags:
        -
          tag: scope
          value: notice
  graphs:
    -
      uuid: 0662dc480c2b487e9f9afc389166a15b
      name: 'Array: Voltage'
      graph_items:
        -
          drawtype: GRADIENT_LINE
          color: 1A7C11
          item:
            host: 'Morningstar ProStar MPPT SNMP'
            key: 'array.sweep_vmp[arrayVmp.0]'
        -
          sortorder: '1'
          drawtype: GRADIENT_LINE
          color: 2774A4
          item:
            host: 'Morningstar ProStar MPPT SNMP'
            key: 'array.sweep_voc[arrayVoc.0]'
        -
          sortorder: '2'
          drawtype: GRADIENT_LINE
          color: F63100
          item:
            host: 'Morningstar ProStar MPPT SNMP'
            key: 'array.voltage[arrayVoltage.0]'
    -
      uuid: 94bbfd8a60a8412998ff617011db9372
      name: 'Current: Charge/Load'
      graph_items:
        -
          drawtype: GRADIENT_LINE
          color: 1A7C11
          item:
            host: 'Morningstar ProStar MPPT SNMP'
            key: 'charge.current[chargeCurrent.0]'
        -
          sortorder: '1'
          drawtype: GRADIENT_LINE
          color: 2774A4
          item:
            host: 'Morningstar ProStar MPPT SNMP'
            key: 'load.current[loadCurrent.0]'
    -
      uuid: 02652b1251244702bf28f691e72ba27e
      name: 'Temperature: Ambient/Battery/Heatsink'
      graph_items:
        -
          drawtype: GRADIENT_LINE
          color: 1A7C11
          item:
            host: 'Morningstar ProStar MPPT SNMP'
            key: 'temp.ambient[ambientTemperature.0]'
        -
          sortorder: '1'
          drawtype: GRADIENT_LINE
          color: 2774A4
          item:
            host: 'Morningstar ProStar MPPT SNMP'
            key: 'temp.battery[batteryTemperature.0]'
        -
          sortorder: '2'
          drawtype: GRADIENT_LINE
          color: F63100
          item:
            host: 'Morningstar ProStar MPPT SNMP'
            key: 'temp.heatsink[heatsinkTemperature.0]'