PyMonitorMQTT | Python computer monitor that sends real time information via MQTT

PyMonitorMQTT

Ram Sensor

This sensor reports informatin about RAM/Swap usage

Compatibility

Data and Topics

.../ram/physical_memory/percentage basic

Send percentage of used memory [%]

.../ram/swap_memory/percentage basic

Send percentage of used swap memory [%]

.../ram/physical_memory/total advanced

Send total physical memory [Bytes]

.../ram/physical_memory/available advanced

Send the memory that can be given instantly to processes without the system going into swap [Bytes]

.../ram/physical_memory/free advanced

Send the memory that isn't being used at all (zeroed) that is readily available [Bytes]

.../ram/physical_memory/used advanced

Send used memory [Bytes]

.../ram/swap_memory/total advanced

Send total swap memory [Bytes]

.../ram/swap_memory/used advanced

Send used swap memory [Bytes]

.../ram/swap_memory/free advanced

Send free swap memory [Bytes]

Configuration

custom_topics optional
List of String List of topics to which the sensor will send the data.
If the sensor sends to a single topic, you will have to put one topic in the list.
If the sensor sends to more than one topic, you can register more topics; each topic in the list will be assigned in the same order as topics are added from the single sensor (order that you can check in the each individual sensor file).
formatted_values optional default: False
Boolean If set to True, data will be sent in a more readable way, with the unit of measure and with K, M, G and T sizes. Topics with the unit of measure in square brackets are those involved with this option
advanced_information optional default: False
Boolean If set to True, extra information will be sent. You can check in the upper paragaraph if this sensor has 'advanced' topics.