7 Commits
0.0.2 ... 0.1.1

Author SHA1 Message Date
12b204d206 fix typo 2023-05-23 15:59:41 +02:00
2d9372ea38 change schema 2023-05-23 15:57:50 +02:00
863644fa56 casting 2023-05-23 13:36:45 +02:00
41ea343be2 another fix 2023-05-23 13:28:14 +02:00
f8f9449c99 another fix 2023-05-23 13:26:48 +02:00
ab35b815fb fix 2023-05-23 13:19:49 +02:00
ec3fb5c72c fix 2023-05-23 13:17:12 +02:00
2 changed files with 40 additions and 29 deletions

View File

@ -17,29 +17,39 @@ create table variable_t (
variable_id varchar(16) not null, variable_id varchar(16) not null,
label varchar(128) not null unique, label varchar(128) not null unique,
unit varchar(16), unit varchar(16),
quantity varchar(32),
unique (app, converter_id, device_id, variable_id) unique (app, converter_id, device_id, variable_id)
); );
create table measurement_t ( create table measurement_t (
time timestamp without time zone not null, time timestamp without time zone not null,
application varchar(128) not null, variable integer references variable_t (id),
variable varchar(128) not null,
unit varchar(16),
value float value float
); );
select create_hypertable('measurement_t', 'time'); select create_hypertable('measurement_t', 'time');
insert into application_t (app_id, label) values('ku226', 'Kupferdreher Str. 226, Essen'); insert into application_t (app_id, label) values('ku226', 'Kupferdreher Str. 226, Essen');
insert into variable_t (app, converter_id, device_id, variable_id, label, unit) insert into variable_t (app, converter_id, device_id, variable_id, label, unit, quantity)
values ((select id from application_t where app_id = 'ku226'), '1', 'bhkw', 'u', 'BHKW Spannung', 'V'), values ((select id from application_t where app_id = 'ku226'), '1', 'bhkw', 'u', 'BHKW Spannung', 'V', 'voltage'),
((select id from application_t where app_id = 'ku226'), '1', 'bhkw', 'p', 'BHKW Leistung', 'W'), ((select id from application_t where app_id = 'ku226'), '1', 'bhkw', 'p', 'BHKW Leistung', 'W', 'power'),
((select id from application_t where app_id = 'ku226'), '1', 'bhkw', 'import', 'BHKW Energie Export', 'Wh'), ((select id from application_t where app_id = 'ku226'), '1', 'bhkw', 'import', 'BHKW Energie Export', 'Wh', 'energy'),
((select id from application_t where app_id = 'ku226'), '1', 'bhkw', 'export', 'BHKW Energie Import', 'Wh'), ((select id from application_t where app_id = 'ku226'), '1', 'bhkw', 'export', 'BHKW Energie Import', 'Wh', 'energy'),
((select id from application_t where app_id = 'ku226'), '1', 'pv', 'u', 'PV Spannung', 'V'), ((select id from application_t where app_id = 'ku226'), '1', 'pv', 'u', 'PV Spannung', 'V', 'voltage'),
((select id from application_t where app_id = 'ku226'), '1', 'pv', 'p', 'PV Leistung', 'W'), ((select id from application_t where app_id = 'ku226'), '1', 'pv', 'p', 'PV Leistung', 'W', 'power'),
((select id from application_t where app_id = 'ku226'), '1', 'pv', 'import', 'PV Energie Export', 'Wh'), ((select id from application_t where app_id = 'ku226'), '1', 'pv', 'import', 'PV Energie Export', 'Wh', 'energy'),
((select id from application_t where app_id = 'ku226'), '1', 'pv', 'export', 'PV Energie Import', 'Wh') ((select id from application_t where app_id = 'ku226'), '1', 'pv', 'export', 'PV Energie Import', 'Wh', 'energy'),
((select id from application_t where app_id = 'ku226'), '3', 'mains', 'import', 'Netz Energie Import', 'Wh', 'energy'),
((select id from application_t where app_id = 'ku226'), '1', 'w1', 'p', 'Wohnung 1 Leistung', 'W', 'power'),
((select id from application_t where app_id = 'ku226'), '1', 'w1', 'import', 'Wohnung 1 Energie Import', 'Wh', 'energy'),
((select id from application_t where app_id = 'ku226'), '1', 'w2', 'p', 'Wohnung 2 Leistung', 'W', 'power'),
((select id from application_t where app_id = 'ku226'), '1', 'w2', 'import', 'Wohnung 2 Energie Import', 'Wh', 'energy'),
((select id from application_t where app_id = 'ku226'), '1', 'w3', 'p', 'Wohnung 3 Leistung', 'W', 'power'),
((select id from application_t where app_id = 'ku226'), '1', 'w3', 'import', 'Wohnung 3 Energie Import', 'Wh', 'energy'),
((select id from application_t where app_id = 'ku226'), '1', 'w4', 'p', 'Wohnung 4 Leistung', 'W', 'power'),
((select id from application_t where app_id = 'ku226'), '1', 'w4', 'import', 'Wohnung 4 Energie Import', 'Wh', 'energy'),
((select id from application_t where app_id = 'ku226'), '1', 'w5', 'p', 'Wohnung 5 Leistung', 'W', 'power'),
((select id from application_t where app_id = 'ku226'), '1', 'w5', 'import', 'Wohnung 5 Energie Import', 'Wh', 'energy')
; ;
@ -49,4 +59,5 @@ insert into variable_t (app, converter_id, device_id, variable_id, label, unit)
grant select on application_t to preprocessor; grant select on application_t to preprocessor;
grant select on variable_t to preprocessor; grant select on variable_t to preprocessor;
grant insert on measurement_t to preprocessor; grant insert on measurement_t to preprocessor;
grant select on measurement_t to grafana;

View File

@ -46,7 +46,9 @@ class DbOp(object):
select select
a.label as application, a.label as application,
v.label as variable, v.label as variable,
v.unit as unit v.quantity as quantity,
v.unit as unit,
v.id as vid
from application_t a, variable_t v from application_t a, variable_t v
where a.app_id = %(appId)s and where a.app_id = %(appId)s and
v.app = a.id and v.app = a.id and
@ -60,10 +62,12 @@ class DbOp(object):
variable = { variable = {
'application': res[0], 'application': res[0],
'variable': res[1], 'variable': res[1],
'unit': res[2] 'quantity': res[2],
'unit': res[3],
'vid': res[4]
} }
logger.debug(f"{variable=}") logger.debug(f"{variable=}")
return application return variable
except Exception as e: except Exception as e:
logger.error(f"Error getting variable: {e}") logger.error(f"Error getting variable: {e}")
raise VariableNotFoundException(appId, converterId, deviceId, variableId) raise VariableNotFoundException(appId, converterId, deviceId, variableId)
@ -78,14 +82,12 @@ class DbOp(object):
with conn: with conn:
with conn.cursor() as cur: with conn.cursor() as cur:
cur.execute(""" cur.execute("""
insert into measurement_t (time, application, variable, value, unit) insert into measurement_t (time, variable, value)
values (now(), %(application)s, %(variable)s, %(value)s, %(unit)s values (now(), %(vid)s, %(value)s)
""", """,
{ {
'application': measurement['application'], 'vid': measurement['vid'],
'variable': measurement['variable'],
'value': measurement['value'], 'value': measurement['value'],
'unit': measurement['unit']
} }
) )
except Exception as e: except Exception as e:
@ -100,14 +102,14 @@ def splitTopic(topic):
except ValueError: except ValueError:
raise InvalidTopicException(topic) raise InvalidTopicException(topic)
r = rest.split('/') r = rest.split('/')
if (len(r) == 1: if (len(r) == 1):
deviceId = 'mains', deviceId = 'mains',
variableId = r[0] variableId = r[0]
elif (len(r) == 2: elif (len(r) == 2):
(deviceId, variableid) = r (deviceId, variableId) = r
else: else:
raise InvalidTopicException(topic) raise InvalidTopicException(topic)
return (appId, converterId, deviceId, variableid) return (appId, converterId, deviceId, variableId)
def mqttOnConnectCallback(client, userdata, flags, rc): def mqttOnConnectCallback(client, userdata, flags, rc):
logger.info("mqtt connected") logger.info("mqtt connected")
@ -124,12 +126,10 @@ def mqttOnMessageCallback(client, userdata, message):
(appId, converterId, deviceId, variableId) = splitTopic(topic) (appId, converterId, deviceId, variableId) = splitTopic(topic)
dbh = DbOp(config) dbh = DbOp(config)
variable = dbh.getVariable(appId, converterId, deviceId, variableid) variable = dbh.getVariable(appId, converterId, deviceId, variableId)
measurement = { measurement = {
"application": variable["application"], "vid": variable["vid"],
"variable": variable["variable"], "value": float(payload)
"unit": variable["unit"],
"value": payload
} }
logger.debug(f"{measurement=}") logger.debug(f"{measurement=}")