-
Notifications
You must be signed in to change notification settings - Fork 786
/
Copy pathPrometheusExporterMiddleware.cs
104 lines (93 loc) · 3.78 KB
/
PrometheusExporterMiddleware.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// <copyright file="PrometheusExporterMiddleware.cs" company="OpenTelemetry Authors">
// Copyright The OpenTelemetry Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// </copyright>
using System;
using System.Diagnostics;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using OpenTelemetry.Exporter.Prometheus;
using OpenTelemetry.Internal;
using OpenTelemetry.Metrics;
namespace OpenTelemetry.Exporter
{
/// <summary>
/// ASP.NET Core middleware for exposing a Prometheus metrics scraping endpoint.
/// </summary>
internal sealed class PrometheusExporterMiddleware
{
private readonly PrometheusExporter exporter;
/// <summary>
/// Initializes a new instance of the <see cref="PrometheusExporterMiddleware"/> class.
/// </summary>
/// <param name="meterProvider"><see cref="MeterProvider"/>.</param>
/// <param name="next"><see cref="RequestDelegate"/>.</param>
public PrometheusExporterMiddleware(MeterProvider meterProvider, RequestDelegate next)
{
Guard.ThrowIfNull(meterProvider);
if (!meterProvider.TryFindExporter(out PrometheusExporter exporter))
{
throw new ArgumentException("A PrometheusExporter could not be found configured on the provided MeterProvider.");
}
this.exporter = exporter;
}
internal PrometheusExporterMiddleware(PrometheusExporter exporter)
{
this.exporter = exporter;
}
/// <summary>
/// Invoke.
/// </summary>
/// <param name="httpContext"> context.</param>
/// <returns>Task.</returns>
public async Task InvokeAsync(HttpContext httpContext)
{
Debug.Assert(httpContext != null, "httpContext should not be null");
var response = httpContext.Response;
try
{
var collectionResponse = await this.exporter.CollectionManager.EnterCollect().ConfigureAwait(false);
try
{
if (collectionResponse.View.Count > 0)
{
response.StatusCode = 200;
response.Headers.Add("Last-Modified", collectionResponse.GeneratedAtUtc.ToString("R"));
response.ContentType = "text/plain; charset=utf-8; version=0.0.4";
await response.Body.WriteAsync(collectionResponse.View.Array, 0, collectionResponse.View.Count).ConfigureAwait(false);
}
else
{
// It's not expected to have no metrics to collect, but it's not necessarily a failure, either.
response.StatusCode = 200;
PrometheusExporterEventSource.Log.NoMetrics();
}
}
finally
{
this.exporter.CollectionManager.ExitCollect();
}
}
catch (Exception ex)
{
PrometheusExporterEventSource.Log.FailedExport(ex);
if (!response.HasStarted)
{
response.StatusCode = 500;
}
}
this.exporter.OnExport = null;
}
}
}