Raritan PX2/PX3 JSON-RPC API
sensorpush.idl
1 /* SPDX-License-Identifier: BSD-3-Clause */
2 /*
3  * Copyright 2012 Raritan Inc. All rights reserved.
4  */
5 
6 #include "NumericSensor.idl"
7 #include "SensorLogger.idl"
8 
9 /** The datapush module contains the definition of the JSON-encoded datapush messages. The standard rules for enconding apply.
10 
11  \ref datapush_example
12 */
13 module datapush {
14  enumeration PowerLine {
15  L1, ///< Line 1
16  L2, ///< Line 2
17  L3, ///< Line 3
18  NEUTRAL, ///< Neutral
19  EARTH ///< Earth
20  };
21 
22  /** Device type */
23  enumeration DeviceType {
24  INLET, ///< Inlet
25  INLET_POLE, ///< Inlet Pole
26  OCP, ///< Overcurrent Protector
27  OCP_POLE, ///< Overcurrent Protector Pole
28  OUTLET, ///< Outlet
29  OUTLET_POLE, ///< Outlet Pole
30  WIRE, ///< Wire
31  WIRE_POLE, ///< Wire Pole
32  TRANSFER_SWITCH, ///< Transfer Switch
33  TRANSFER_SWITCH_POLE, ///< Transfer Switch Pole
34  EXTERNAL_SENSOR, ///< External Sensor
35  POWER_METER, ///< Power Meter
36  POWER_METER_POLE, ///< Power Meter Pole
37  PANEL_CIRCUIT, ///< Circuit in a PMC Panel
38  PANEL_CIRCUIT_POLE, ///< Circuit Pole in a PMC Panel
39  PDU, ///< PDU global
40  OUTLET_GROUP ///< Outlet group
41  };
42 
43  /** Device information */
44  structure Device {
45  DeviceType type; ///< Device type
46  string label; ///< Device label
47  string name; ///< Device name (i.e. user-configurable names for Outlets, Inlets, ...)
48  PowerLine line; ///< Power line (pole sensors only)
49  };
50 
51  /** Sensor information */
52  structure Sensor {
53  Device device; ///< Device information
54  string id; ///< Sensor identification
56  ///< Reading type (numeric or discrete)
58  ///< Metadata (if readingType is NUMERIC)
59  };
60 
61  /** One full log row (one timestamp, mulitple sensors) */
62  structure LogRow {
63  time timestamp; ///< UNIX timestamp (UTC)
65  ///< Log records (one per sensor, same order
66  ///< as in the sensor list)
67  };
68 
69  /** Message for pushing one full log record for all sensors */
71  string serialNumber; ///< Device serial number
72  string name; ///< Device name (user-configurable)
73 
74  vector<Sensor> sensors; ///< List of logged sensors
75  vector<LogRow> rows; ///< List of log rows
76  };
77 
78 }
Sensor logger interface.
Definition: SensorLogger.idl:31
A sensor with numeric readings.
Definition: NumericSensor.idl:17
The datapush module contains the definition of the JSON-encoded datapush messages.
Definition: assetmgrpush.idl:10
PowerLine
Definition: sensorpush.idl:14
DeviceType
Device type.
Definition: sensorpush.idl:23
@ PANEL_CIRCUIT
Circuit in a PMC Panel.
Definition: sensorpush.idl:37
@ EXTERNAL_SENSOR
External Sensor.
Definition: sensorpush.idl:34
@ WIRE_POLE
Wire Pole.
Definition: sensorpush.idl:31
@ OCP_POLE
Overcurrent Protector Pole.
Definition: sensorpush.idl:27
@ INLET_POLE
Inlet Pole.
Definition: sensorpush.idl:25
@ POWER_METER_POLE
Power Meter Pole.
Definition: sensorpush.idl:36
@ OUTLET_POLE
Outlet Pole.
Definition: sensorpush.idl:29
@ INLET
Inlet.
Definition: sensorpush.idl:24
@ OCP
Overcurrent Protector.
Definition: sensorpush.idl:26
@ POWER_METER
Power Meter.
Definition: sensorpush.idl:35
@ OUTLET_GROUP
Outlet group.
Definition: sensorpush.idl:40
@ PANEL_CIRCUIT_POLE
Circuit Pole in a PMC Panel.
Definition: sensorpush.idl:38
@ OUTLET
Outlet.
Definition: sensorpush.idl:28
@ PDU
PDU global.
Definition: sensorpush.idl:39
@ TRANSFER_SWITCH_POLE
Transfer Switch Pole.
Definition: sensorpush.idl:33
@ TRANSFER_SWITCH
Transfer Switch.
Definition: sensorpush.idl:32
@ WIRE
Wire.
Definition: sensorpush.idl:30
Sensors Model.
Definition: AccumulatingNumericSensor.idl:13
Device information.
Definition: sensorpush.idl:44
string label
Device label.
Definition: sensorpush.idl:46
DeviceType type
Device type.
Definition: sensorpush.idl:45
string name
Device name (i.e. user-configurable names for Outlets, Inlets, ...)
Definition: sensorpush.idl:47
PowerLine line
Power line (pole sensors only)
Definition: sensorpush.idl:48
One full log row (one timestamp, mulitple sensors)
Definition: sensorpush.idl:62
vector< sensors::Logger_2_3_7.Record > records
Log records (one per sensor, same order as in the sensor list)
Definition: sensorpush.idl:64
time timestamp
UNIX timestamp (UTC)
Definition: sensorpush.idl:63
Message for pushing one full log record for all sensors.
Definition: sensorpush.idl:70
vector< LogRow > rows
List of log rows.
Definition: sensorpush.idl:75
vector< Sensor > sensors
List of logged sensors.
Definition: sensorpush.idl:74
string serialNumber
Device serial number.
Definition: sensorpush.idl:71
string name
Device name (user-configurable)
Definition: sensorpush.idl:72
Sensor information.
Definition: sensorpush.idl:52
Device device
Device information.
Definition: sensorpush.idl:53
sensors::NumericSensor_4_0_4 MetaData metadata
Metadata (if readingType is NUMERIC)
Definition: sensorpush.idl:57
string id
Sensor identification.
Definition: sensorpush.idl:54
int readingtype
Reading type (numeric or discrete)
Definition: sensorpush.idl:55
Sensor log record.
Definition: SensorLogger.idl:127
Numeric sensor metadata.
Definition: NumericSensor.idl:40