-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
solariot.py
executable file
·654 lines (530 loc) · 22.6 KB
/
solariot.py
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
#!/usr/bin/env python3
# Copyright (c) 2017 Dennis Mellican
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
from SungrowModbusTcpClient import SungrowModbusTcpClient
from SungrowModbusWebClient import SungrowModbusWebClient
from pymodbus.payload import BinaryPayloadDecoder
from pymodbus.client.sync import ModbusTcpClient
from pymodbus.constants import Endian
from influxdb import InfluxDBClient
from importlib import import_module
from threading import Thread
from prometheus_client import start_http_server, Gauge
import paho.mqtt.client as mqtt
import datetime
import requests
import argparse
import logging
import dweepy
import json
import time
import sys
import re
MIN_SIGNED = -2147483648
MAX_UNSIGNED = 4294967295
requests.packages.urllib3.disable_warnings()
# Load in the config module
parser = argparse.ArgumentParser()
parser.add_argument("-c", "--config", default="config",
help="Python module to load as our config")
parser.add_argument("-v", "--verbose", action="count", default=0,
help="Level of verbosity 0=ERROR 1=INFO 2=DEBUG")
parser.add_argument("--one-shot", action="store_true",
help="Run solariot just once then exit, useful for cron based execution")
args = parser.parse_args()
if args.verbose == 0:
log_level = logging.WARNING
elif args.verbose == 1:
log_level = logging.INFO
else:
log_level = logging.DEBUG
logging.basicConfig(level=log_level)
try:
config = import_module(args.config)
logging.info(f"Loaded config {config.model}")
except ModuleNotFoundError:
parser.error(f"Unable to locate {args.config}.py")
# SMA datatypes and their register lengths
# S = Signed Number, U = Unsigned Number, STR = String
sma_moddatatype = {
"S16": 1,
"U16": 1,
"S32": 2,
"U32": 2,
"U64": 4,
"STR16": 8,
"STR32": 16,
}
# Load the modbus register map for the inverter
modmap_file = f"modbus-{config.model}"
try:
modmap = import_module(modmap_file)
except ModuleNotFoundError:
logging.error(f"Unable to locate {modmap_file}.py")
sys.exit(1)
# This will try the Sungrow client otherwise will default to the standard library.
client_payload = {
"host": config.inverter_ip,
"timeout": config.timeout,
"RetryOnEmpty": True,
"retries": 3,
"port": config.inverter_port,
}
if "sungrow-" in config.model:
if config.inverter_port == 8082:
logging.info("Creating SungrowModbusWebClient")
client = SungrowModbusWebClient.SungrowModbusWebClient(
**client_payload)
else:
logging.info("Creating SungrowModbusTcpClient")
client = SungrowModbusTcpClient.SungrowModbusTcpClient(
**client_payload)
else:
logging.info("Creating ModbusTcpClient")
client = ModbusTcpClient(**client_payload)
logging.info("Connecting")
client.connect()
client.close()
logging.info("Connected")
# Configure MQTT
if hasattr(config, "mqtt_server"):
mqtt_client = mqtt.Client(getattr(config, "mqtt_client_name", "pv_data"))
if hasattr(config, "mqtt_username") and hasattr(config, "mqtt_password"):
mqtt_client.username_pw_set(config.mqtt_username, config.mqtt_password)
if config.mqtt_port == 8883:
mqtt_client.tls_set()
mqtt_client.connect(config.mqtt_server, port=config.mqtt_port)
logging.info("Configured MQTT Client")
else:
mqtt_client = None
logging.info("No MQTT configuration detected")
if hasattr(config, "prometheus"):
class PrometheusPublisher(object):
def __init__(self, port):
self.publishport = port
self.metric_mappings = {}
start_http_server(self.publishport)
logging.info(
f"prometheus: http server started on port {self.publishport}")
def publish_status(self, metrics):
for key in metrics.keys():
if isinstance(metrics[key], str):
# skipped because gagues dont handle strings
logging.debug(
f"prometheus: key {key} skipped(was a string)")
continue
elif not key in self.metric_mappings.keys():
logging.info(
f"prometheus: key {key} doesnt have a gauge. making one now")
self.metric_mappings[key] = Gauge('solar_' + key, key)
self.metric_mappings[key].set(metrics[key])
def Clear_status(self):
for key in self.metric_mappings.keys():
self.metric_mappings[key].set(0)
promport = getattr(config, "prometheus_port", 8000)
prom_client = PrometheusPublisher(promport)
logging.info("Configured Prometheus Client")
else:
logging.info("No Prometheus configuration detected")
prom_client = None
# Configure InfluxDB
if hasattr(config, "influxdb_ip"):
flux_client = InfluxDBClient(
config.influxdb_ip,
config.influxdb_port,
config.influxdb_user,
config.influxdb_password,
config.influxdb_database,
ssl=config.influxdb_ssl,
verify_ssl=config.influxdb_verify_ssl,
)
logging.info("Configured InfluxDB Client")
else:
flux_client = None
logging.info("No InfluxDB configuration detected")
# Configure PVOutput
if hasattr(config, "pvoutput_api"):
class PVOutputPublisher(object):
def __init__(self, api_key, system_id, metric_mappings, rate_limit=60, status_url="https://pvoutput.org/service/r2/addstatus.jsp"):
self.api_key = api_key
self.system_id = system_id
self.status_url = status_url
self.metric_mappings = metric_mappings
self.rate_limit = rate_limit
self.latest_run = None
@property
def headers(self):
return {
"X-Pvoutput-Apikey": self.api_key,
"X-Pvoutput-SystemId": self.system_id,
"Content-Type": "application/x-www-form-urlencoded",
"cache-control": "no-cache",
}
def publish_status(self, metrics):
"""
See https://pvoutput.org/help.html#api-addstatus
Post the following values:
* v1 - Energy Generation
* v2 - Power Generation
* v3 - Energy Consumption
* v4 - Power Consumption
* v5 - Temperature
* v6 - Voltage
* c1 - Cumulative Flag
* n - Net Flag
* v7 - Extended Value v7
* v8 - Extended Value v8
* v9 - Extended Value v9
* v10 - Extended Value v10
* v11 - Extended Value v11
* v12 - Extended Value v12
* m1 - Text Message 1
"""
at_least_one_of = set(["v1", "v2", "v3", "v4"])
now = datetime.datetime.now()
if self.latest_run:
# Spread out our publishes over the hour based on the rate limit
time_diff = (now - self.latest_run).total_seconds()
if time_diff < (3600 / self.rate_limit):
return "skipped"
parameters = {
"d": now.strftime("%Y%m%d"),
"t": now.strftime("%H:%M")
}
# Standard Values
if getattr(config, "pvoutput_cumulative", True) is True:
parameters['c1'] = 1
if self.metric_mappings.get("Energy Generation") in metrics and getattr(config, "pvoutput_power_only", False) is False:
parameters["v1"] = metrics[self.metric_mappings.get("Energy Generation")]
if self.metric_mappings.get("Power Generation") in metrics:
parameters["v2"] = metrics[self.metric_mappings.get(
"Power Generation")]
if self.metric_mappings.get("Energy Consumption") in metrics and getattr(config, "pvoutput_power_only", False) is False:
parameters["v3"] = metrics[self.metric_mappings.get(
"Energy Consumption")]
if self.metric_mappings.get("Power Consumption") in metrics:
parameters["v4"] = metrics[self.metric_mappings.get(
"Power Consumption")]
if self.metric_mappings.get("Temperature") in metrics:
parameters["v5"] = metrics[self.metric_mappings.get(
"Temperature")]
if self.metric_mappings.get("Voltage") in metrics:
parameters["v6"] = metrics[self.metric_mappings.get("Voltage")]
# Extended Values
if self.metric_mappings.get("Extended Value v7") in metrics:
parameters["v7"] = metrics[self.metric_mappings.get("Extended Value v7")]
if self.metric_mappings.get("Extended Value v8") in metrics:
parameters["v8"] = metrics[self.metric_mappings.get("Extended Value v8")]
if self.metric_mappings.get("Extended Value v9") in metrics:
parameters["v9"] = metrics[self.metric_mappings.get("Extended Value v9")]
if self.metric_mappings.get("Extended Value v10") in metrics:
parameters["v10"] = metrics[self.metric_mappings.get("Extended Value v10")]
if self.metric_mappings.get("Extended Value v11") in metrics:
parameters["v11"] = metrics[self.metric_mappings.get("Extended Value v11")]
if self.metric_mappings.get("Extended Value v12") in metrics:
parameters["v12"] = metrics[self.metric_mappings.get("Extended Value v12")]
# Text Message String truncated to PVOutput's max of 30 Characters
if self.metric_mappings.get("Text Message 1") in metrics:
parameters["m1"] = str(metrics[self.metric_mappings.get("Text Message 1")])[:30]
if not at_least_one_of.intersection(parameters.keys()):
raise RuntimeError(
"Metrics => PVOutput mapping failed, please review metric names and update")
response = requests.post(
url=self.status_url, headers=self.headers, params=parameters)
if response.status_code != requests.codes.ok:
raise RuntimeError(response.text)
logging.debug("Successfully posted status update to PVOutput")
self.latest_run = now
pvoutput_client = PVOutputPublisher(
config.pvoutput_api,
config.pvoutput_sid,
modmap.pvoutput,
rate_limit=config.pvoutput_rate_limit,
)
logging.info("Configured PVOutput Client")
else:
pvoutput_client = None
logging.info("No PVOutput configuration detected")
# Inverter Scanning
inverter = {}
bus = json.loads(modmap.scan)
def load_registers(register_type, start, count=100):
try:
if register_type == "read":
rr = client.read_input_registers(
int(start),
count=count,
unit=config.slave,
)
elif register_type == "holding":
rr = client.read_holding_registers(
int(start),
count=count,
unit=config.slave,
)
else:
raise RuntimeError(f"Unsupported register type: {type}")
except Exception as err:
logging.warning(
"No data. Try increasing the timeout or scan interval.")
return False
if rr.isError():
logging.warning("Modbus connection failed")
return False
if not hasattr(rr, 'registers'):
logging.warning("No registers returned")
return
if len(rr.registers) != count:
logging.warning(
f"Mismatched number of registers read {len(rr.registers)} != {count}")
return
overflow_regex = re.compile(
r"(?P<register_name>[a-zA-Z0-9_\.]+)_overflow$")
divide_regex = re.compile(
r"(?P<register_name>[a-zA-Z0-9_]+)_(?P<divide_by>[0-9\.]+)$")
for num in range(0, count):
run = int(start) + num + 1
if register_type == "read" and modmap.read_register.get(str(run)):
register_name = modmap.read_register.get(str(run))
register_value = rr.registers[num]
# Check if the modbus map has an '_overflow' on the end
# If so the value 'could' be negative (65535 - x) where (-x) is the actual number
# So a value of '64486' actually represents '-1049'
# We rely on a second '_indicator' register to tell is if it's actually negative or not, otherwise it's ambigious!
should_overflow = overflow_regex.match(register_name)
if should_overflow:
register_name = should_overflow["register_name"]
# Find the indicator register value
indicator_name = f"{register_name}_indicator"
for reg_num, reg_name in modmap.read_register.items():
if reg_name == indicator_name:
indicator_register = int(reg_num)
break
else:
indicator_register = None
if indicator_register is not None:
# Given register '5084' and knowing start of '5000' we can assume the index
# Of our indicator value is 5084 - 5000 - 1 (because of the 'off by 1')
indicator_value = rr.registers[indicator_register -
int(start) - 1]
if indicator_value == 65535:
# We are in overflow
register_value = -1 * (65535 - register_value)
# Check if the modbus map has an '_10' or '_100' etc on the end
# If so, we divide by that and drop it from the name
should_divide = divide_regex.match(register_name)
if should_divide:
register_name = should_divide["register_name"]
register_value = float(register_value) / \
float(should_divide["divide_by"])
# Set the final register name and value, any adjustments above included
inverter[register_name] = register_value
elif register_type == "holding" and modmap.holding_register.get(str(run)):
register_name = modmap.holding_register.get(str(run))
register_value = rr.registers[num]
inverter[register_name] = register_value
return True
# Function for polling data from the target and triggering writing to log file if set
def load_sma_register(registers):
# Request each register from datasets, omit first row which contains only column headers
for thisrow in registers:
name = thisrow[0]
startPos = thisrow[1]
type = thisrow[2]
format = thisrow[3]
# If the connection is somehow not possible (e.g. target not responding)
# show a error message instead of excepting and stopping
try:
received = client.read_input_registers(
address=startPos,
count=sma_moddatatype[type],
unit=config.slave
)
except Exception:
thisdate = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
logging.error(
f"{thisdate}: Connection not possible, check settings or connection")
return
message = BinaryPayloadDecoder.fromRegisters(
received.registers, endian=Endian.Big)
# Provide the correct result depending on the defined datatype
if type == "S32":
interpreted = message.decode_32bit_int()
elif type == "U32":
interpreted = message.decode_32bit_uint()
elif type == "U64":
interpreted = message.decode_64bit_uint()
elif type == "STR16":
interpreted = message.decode_string(16)
elif type == "STR32":
interpreted = message.decode_string(32)
elif type == "S16":
interpreted = message.decode_16bit_int()
elif type == "U16":
interpreted = message.decode_16bit_uint()
else:
# If no data type is defined do raw interpretation of the delivered data
interpreted = message.decode_16bit_uint()
# Check for "None" data before doing anything else
if ((interpreted == MIN_SIGNED) or (interpreted == MAX_UNSIGNED)):
displaydata = None
else:
# Put the data with correct formatting into the data table
if format == "FIX3":
displaydata = float(interpreted) / 1000
elif format == "FIX2":
displaydata = float(interpreted) / 100
elif format == "FIX1":
displaydata = float(interpreted) / 10
else:
displaydata = interpreted
logging.debug(f"************** {name} = {displaydata}")
inverter[name] = displaydata
# Add timestamp
inverter["00000 - Timestamp"] = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
def publish_prometheus(inverter):
result = prom_client.publish_status(inverter)
if result:
logging.info("Published to prometheus")
def publish_influx(metrics):
target = flux_client.write_points([metrics])
logging.info("Published to InfluxDB")
return target
def publish_dweepy(inverter):
result = dweepy.dweet_for(config.dweepy_uuid, inverter)
logging.info("Published to dweet.io")
return result
def publish_mqtt(inverter):
# After a while you'll need to reconnect, so just reconnect before each publish
mqtt_client.reconnect()
result = mqtt_client.publish(
config.mqtt_topic, json.dumps(inverter).replace('"', '\"'))
result.wait_for_publish()
if result.rc != mqtt.MQTT_ERR_SUCCESS:
# See https://github.com/eclipse/paho.mqtt.python/blob/master/src/paho/mqtt/client.py#L149 for error code mapping
logging.error(
f"Failed to publish to MQTT with error code: {result.rc}")
else:
logging.info("Published to MQTT")
return result
def publish_pvoutput(inverter):
result = pvoutput_client.publish_status(inverter)
if result == "skipped":
logging.info("Skipping PVOutput to stay under the rate limit")
else:
logging.info("Published to PVOutput")
return result
def save_json(inverter, append_log):
try:
# Default to one line per file.
# If the config.append_log value is true, then open the file in append mode.
# We will also need newlines if we are in append mode. Add that as a suffix
file_mode = 'w'
suffix = ''
if append_log is True:
file_mode = 'a'
suffix = '\n'
f = open(config.json_file, file_mode)
f.write(json.dumps(inverter)+suffix)
f.close()
except Exception as err:
logging.error("Error writing telemetry to file: %s" % err)
return
logging.info("Inverter telemetry written to %s file." % config.json_file)
# Core monitoring loop
def scrape_inverter():
""" Connect to the inverter and scrape the metrics """
client.connect()
if "sungrow-" in config.model:
for i in bus["read"]:
if not load_registers("read", i["start"], int(i["range"])):
return False
for i in bus["holding"]:
if not load_registers("holding", i["start"], int(i["range"])):
return False
# Sungrow inverter specifics:
# Work out if the grid power is being imported or exported
if config.model == "sungrow-sh5k":
try:
if inverter["grid_import_or_export"] == 65535:
export_power = (65535 - inverter["export_power"]) * -1
inverter["export_power"] = export_power
except Exception:
pass
try:
inverter["timestamp"] = "%s/%s/%s %s:%02d:%02d" % (
inverter["day"],
inverter["month"],
inverter["year"],
inverter["hour"],
inverter["minute"],
inverter["second"],
)
except Exception:
pass
elif "sma-" in config.model:
load_sma_register(modmap.sma_registers)
else:
raise RuntimeError(
f"Unsupported inverter model detected: {config.model}")
client.close()
logging.info(inverter)
return True
while True:
# Scrape the inverter
success = scrape_inverter()
if not success:
# reset counters otherwise prometheus will keep on reporting whatever was pushed last
if prom_client is not None:
prom_client.Clear_status()
logging.warning("Failed to scrape inverter, sleeping until next scan")
time.sleep(config.scan_interval)
continue
# Optionally publish the metrics if enabled
if mqtt_client is not None:
t = Thread(target=publish_mqtt, args=(inverter,))
t.start()
if hasattr(config, "dweepy_uuid"):
t = Thread(target=publish_dweepy, args=(inverter,))
t.start()
if prom_client is not None:
t = Thread(target=publish_prometheus, args=(inverter,))
t.start()
if flux_client is not None:
metrics = {
"measurement": "Sungrow",
"tags": {
"location": "Gabba",
},
"fields": inverter,
}
t = Thread(target=publish_influx, args=(metrics,))
t.start()
if pvoutput_client is not None:
t = Thread(target=publish_pvoutput, args=(inverter,))
t.start()
if hasattr(config, "json_file"):
t = Thread(target=save_json, args=(inverter, config.append_log))
t.start()
if args.one_shot:
logging.info("Exiting due to --one-shot")
break
# Sleep until the next scan
time.sleep(config.scan_interval)