Set charset in metrics content type (#15)
Send `Content-Type: text/plain; charset=utf-8; version=0.0.4` instead of `Content-Type: text/plain; version=0.0.4` so that special characters in names have a chance to work.
This commit is contained in:
parent
f6bc8ca90c
commit
822f0da2eb
2 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ export class MetricsRenderer {
|
||||||
const retryAfterWhileDiscovery = 15
|
const retryAfterWhileDiscovery = 15
|
||||||
const textContentType = 'text/plain; charset=utf-8'
|
const textContentType = 'text/plain; charset=utf-8'
|
||||||
const prometheusSpecVersion = '0.0.4'
|
const prometheusSpecVersion = '0.0.4'
|
||||||
const metricsContentType = `text/plain; version=${prometheusSpecVersion}`
|
const metricsContentType = `${textContentType}; version=${prometheusSpecVersion}`
|
||||||
|
|
||||||
function headers(contentType: string, headers: Record<string, string> = {}): Record<string, string> {
|
function headers(contentType: string, headers: Record<string, string> = {}): Record<string, string> {
|
||||||
return { ...headers, 'Content-Type': contentType }
|
return { ...headers, 'Content-Type': contentType }
|
||||||
|
|
|
@ -55,7 +55,7 @@ describe('Fastify HTTP adapter', () => {
|
||||||
return request(testServer.http)
|
return request(testServer.http)
|
||||||
.get('/metrics')
|
.get('/metrics')
|
||||||
.expect(200)
|
.expect(200)
|
||||||
.expect('Content-Type', 'text/plain; version=0.0.4')
|
.expect('Content-Type', 'text/plain; charset=utf-8; version=0.0.4')
|
||||||
.expect(
|
.expect(
|
||||||
[
|
[
|
||||||
'# TYPE homebridge_metric gauge',
|
'# TYPE homebridge_metric gauge',
|
||||||
|
|
Loading…
Reference in a new issue