Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richibrics/hassmonitormqtt
Home assistant component that integrates the python client of MonitorMqtt
https://github.com/richibrics/hassmonitormqtt
Last synced: about 2 months ago
JSON representation
Home assistant component that integrates the python client of MonitorMqtt
- Host: GitHub
- URL: https://github.com/richibrics/hassmonitormqtt
- Owner: richibrics
- Created: 2020-05-07T11:50:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-21T13:38:27.000Z (about 4 years ago)
- Last Synced: 2023-07-19T11:35:41.612Z (over 1 year ago)
- Language: Python
- Size: 493 KB
- Stars: 10
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HassMonitorMqtt
HassMonitorMQTT is an integration for [HomeAssistant](https://github.com/home-assistant/home-assistant) that receives system data from different computers (that work together as MQTT clients) and provides commands and sensors.
Client-side script for this integrations can be found [here](https://github.com/richibrics/PyMonitorMQTT)Available information:
* RAM in use (%)
* CPU in use (%)
* Hard Disk used space (%)
* CPU Temperature (°C)
* Battery Level (%)
* Charging status
* Timestamp of the data
* Running Operating SystemActions:
* Shutdown
* Reboot
* Lock## HomeAssistant with PyMonitorMQTT preview
![HomeAssistant Example](Home%20Assistant%20Monitors.png?raw=true "HomeAssistant Example")
## Getting Started
### Install the component
To install the component, copy the entire repo in your custom-component folder:```
$CONFIG_FOLDER$/custom-component/monitor-mqtt
```Now your configuration folder should look like this:
```
CONFIG_FOLDER/custom_components/monitor_mqtt/
├── binary_sensor.py
├── funcs.py
├── __init__.py
├── Home Assistant Monitors.png (YOU CAN DELETE THIS)
├── README.md
├── sensor.py
└── switch.py```
### Configure
In your configuration.yaml add the 'monitor-mqtt' component with all your clients:```
monitor_mqtt:
monitor_list:
- client_name: PcName1
- client_name: PcName2
```
where PcName1 and PcName2 are the client names that are chosen by the client (passed to the client script with -n argument)### Lovelace layout
[Here](lovelace_card.yaml) you can find my Lovelace preset for monitor-mqtt
## Authors
**Riccardo Briccola** - Project development - [Github Account](https://github.com/richibrics)
**Elupsus** - Error solver