home-assistant.io/source/_components/sensor.vultr.markdown
Fabian Affolter c54442720f
Update config style and 'ha_release' (#3897)
* Update config style and 'ha_release'

* Minor changes
2017-11-05 15:29:40 +01:00

2.2 KiB

layout title description date sidebar comments sharing footer logo ha_release ha_category ha_iot_class
page Vultr Sensor Instructions on how to integrate Vultr sensor within Home Assistant. 2017-10-17 21:00 true false true true vultr.png 0.58 System Monitor Cloud Polling

The vultr sensor platform will allow you to view current bandwidth usage and pending charges against your Vultr subscription.

To use this sensor, you must set up your Vultr hub.

The following examples assume a subscription that has an ID of `123456` and a label of `Web Server`

Minimal configuration.yaml (produces sensor.vultr_web_server_current_bandwidth_used and sensor.vultr_web_server_pending_charges):

sensor:
  - platform: vultr
    subscription: 123456

{% configuration %} subscription: description: The Vultr subscription to monitor, this can be found in the URL when viewing a subscription. required: true type: string name: description: The name to give this sensor. required: false default: "Vultr {Vultr subscription label} {monitored condition name}" type: string monitored_conditions: description: List of items you want to monitor for each subscription. required: false detault: All conditions type: list keys: current_bandwidth_used: description: The current (invoice period) bandwidth usage in Gigabytes (GB). temperature: pending_charges: The current (invoice period) charges that have built up for this subscription. Value is in US Dollars (US$). {% endconfiguration %}

Full configuration.yaml using {} to format condition name (produces sensor.server_current_bandwidth_used and sensor.server_pending_charges):

sensor:
  - platform: vultr
    name: Server {}
    subscription: 123456
    monitored_conditions:
      - current_bandwidth_used
      - pending_charges

Custom configuration.yaml with only one condition monitored (produces sensor.web_server_bandwidth):

sensor:
  - platform: vultr
    name: Web Server Bandwidth
    subscription: 123456
    monitored_conditions:
      - current_bandwidth_used