1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 03:12:20 +01:00

Add in area and device to the prometheus labels (#7692)

This commit is contained in:
Jordan Zucker
2024-10-29 18:03:10 -07:00
committed by GitHub
parent bac6880a1e
commit aae2ee2ecb
3 changed files with 208 additions and 24 deletions

View File

@@ -1,3 +1,8 @@
esphome:
name: livingroomdevice
friendly_name: Living Room Device
area: Living Room
wifi:
ssid: MySSID
password: password1
@@ -14,6 +19,9 @@ sensor:
update_interval: 60s
text_sensor:
- platform: version
name: "ESPHome Version"
hide_timestamp: true
- platform: template
id: template_text_sensor1
lambda: |-
@@ -24,6 +32,52 @@ text_sensor:
}
update_interval: 60s
binary_sensor:
- platform: template
id: template_binary_sensor1
lambda: |-
if (millis() > 10000) {
return true;
} else {
return false;
}
switch:
- platform: template
id: template_switch1
lambda: |-
if (millis() > 10000) {
return true;
} else {
return false;
}
optimistic: true
fan:
- platform: template
id: template_fan1
cover:
- platform: template
id: template_cover1
lambda: |-
if (millis() > 10000) {
return COVER_OPEN;
} else {
return COVER_CLOSED;
}
lock:
- platform: template
id: template_lock1
lambda: |-
if (millis() > 10000) {
return LOCK_STATE_LOCKED;
} else {
return LOCK_STATE_UNLOCKED;
}
optimistic: true
prometheus:
include_internal: true
relabel: