Hi,
seems to be a bug in the code. What version you are using?
Best regards,
Victor
seems to be a bug in the code. What version you are using?
Best regards,
Victor
We really need your input in this questionnaire
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
instance = $1;
if ($1 ~= "[0-9]+\\.([0-9]+)")
{
return %(true, instance, $1);
}
return true;
SubAgent = mqtt.nsm
[MQTT/Brokers/Office]
Hostname = mqtt.office.radensolutions.com
[MQTT/Brokers/Office/Events]
MQTT_METERHUB_RAW_DATA = "cmnd/5C:CF:7F:25:79:D6/#"
[MQTT/Brokers/Office/Metrics]
MeterHub.Telemetry.RSSI = "tele/5C:CF:7F:25:79:D6/RSSI"
MeterHub.Telemetry.Time = "tele/5C:CF:7F:25:79:D6/TIME"
30 23 * * 1-5
if ($1 == 1000000000)
return "1 Gbps";
if ($1 == 100000000)
return "100 Mbps";
if ($1 == 10000000)
return "10 Mbps";
switch($1)
{
case 1000000000: return "1 Gbps";
case 100000000: return "100 Mbps";
case 10000000: return "10 Mbps";
}
SELECT event_id,event_code,event_name,severity,source_object_id,event_timestamp,message FROM alarm_events WHERE alarm_id=? ORDER BY event_timestamp DESC LIMIT 200;
SELECT e.event_id,e.event_code,c.event_name,e.event_severity,e.event_source,e.event_timestamp,e.event_message
FROM event_log e,event_cfg c WHERE e.root_event_id=? AND c.event_code=e.event_code;