mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Set UTF-8 encoding and version for prometheus /metrics (#2993)
This commit is contained in:
parent
5143a5b5c5
commit
26dd1f8532
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ namespace esphome {
|
|||
namespace prometheus {
|
||||
|
||||
void PrometheusHandler::handleRequest(AsyncWebServerRequest *req) {
|
||||
AsyncResponseStream *stream = req->beginResponseStream("text/plain");
|
||||
AsyncResponseStream *stream = req->beginResponseStream("text/plain; version=0.0.4; charset=utf-8");
|
||||
|
||||
#ifdef USE_SENSOR
|
||||
this->sensor_type_(stream);
|
||||
|
|
Loading…
Reference in a new issue