mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-04 09:16:49 +00:00
30 lines
934 B
Markdown
30 lines
934 B
Markdown
---
|
|
layout: page
|
|
title: "Monitor server resources"
|
|
description: "Instructions how to integrate server resources within Home Assistant."
|
|
date: 2015-03-23 19:59
|
|
sidebar: false
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
---
|
|
|
|
<img src='/images/supported_brands/utilities-system-monitor.png' class='brand pull-right' />
|
|
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:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
sensor:
|
|
- platform: systemmonitor
|
|
resources:
|
|
- type: disk_use_percent
|
|
arg: /home
|
|
- type: memory_free
|
|
- type: process
|
|
arg: kodi
|
|
```
|
|
|
|
[Theodor Lindquist](https://github.com/theolind) has contributed the System monitoring platform.
|