home-assistant.io/source/components/sensor.systemmonitor.markdown
Fabian Affolter c62990c1bd minor changes
2015-06-02 09:48:32 +02:00

841 B

layout, title, description, date, sidebar, comments, sharing, footer
layout title description date sidebar comments sharing footer
page Monitor server resources Instructions how to integrate server resources within Home Assistant. 2015-03-23 19:59 false false true true

The system monitoring sensor platform to allow you to monitor disk usage, memory usage, CPU usage, and running processes. This platform has superseded the process component which is now considered deprecated.

To add this platform to your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: systemmonitor
    resources:
      - type: disk_use_percent
        arg: /home
      - type: memory_free
      - type: process
        arg: kodi

Theodor Lindquist has contributed the System monitoring platform.