JF91.AppMetrics.InfluxDB2.Net7
1.0.0
App.Metrics를 ASP WEB API에 쉽게 통합하여 수집된 메트릭을 InfluxDB2 서버에 보낼 수 있도록 이 패키지를 만들었습니다.
설정은 매우 간단합니다. Nuget 패키지를 설치하고, appsettings.json에 구성 섹션을 추가하고, 서비스를 program.cs에 삽입하기만 하면 됩니다.
지침을 주의 깊게 따르십시오.
너겟을 설치합니다:
dotnet add package JF91.AppMetricsInfluxDB2 --version 1.2.0
appsettings.json
에 추가하고 필요에 맞게 수정합니다. "MetricsOptions": {
"DefaultContextLabel": "MyCustomContext",
"Enabled": true
},
"MetricsWebTrackingOptions": {
"ApdexTrackingEnabled": true,
"ApdexTSeconds": 0.1,
"IgnoredHttpStatusCodes": [ 404 ],
"IgnoredRoutesRegexPatterns": [],
"OAuth2TrackingEnabled": true
},
"MetricEndpointsOptions": {
"MetricsEndpointEnabled": true,
"MetricsTextEndpointEnabled": true,
"PingEndpointEnabled": true,
"EnvironmentInfoEndpointEnabled": true
},
"MetricsReportingInfluxDb2Options": {
"InfluxDb2": {
"BaseUri": "http://127.0.0.1:8086",
"Organization": "metrics",
"Bucket": "metrics",
"Token": "changeme"
},
"HttpPolicy": {
"BackoffPeriod": "0:0:30",
"FailuresBeforeBackoff": 5,
"Timeout": "0:0:40"
},
"ReportInterval": "0:0:1"
}
launchSettings.json
에 추가합니다. "APPLICATION_NAME": "MyKickassApi"
builder.Build()
앞에 다음을 추가합니다. builder.Services.AddMetricsServices();
builder.WebHost.AddInfluxDb2AppMetrics(builder.Configuration);
builder.Build()
뒤에 다음을 추가합니다. app.UseRequestsCounterMiddleware();
app.UseRequestsDurationMiddleware();
app.UseResponsesSizeMiddleware();
app.UseResponsesApdexMiddleware();
app.UseMetricsAllMiddleware();
app.UseMetricsAllEndpoints();
app.Run()
앞에 이것을 추가하십시오: app.UseHttpStatusCodesCounterMiddleware();
1 - 인터셉터 미들웨어를 생성합니다.
2 - IMetrics
삽입;
public class MyNewMetricMiddleware
{
private readonly RequestDelegate _next;
private readonly IMetrics _metrics;
public MyNewMetricMiddleware(RequestDelegate next, IMetrics metrics)
{
_next = next;
_metrics = metrics;
}
public async Task InvokeAsync(HttpContext context)
{
try
{
await _next(context);
var tags = new MetricTags
(
new[] { "Tag1-Key", "Tag2-Key" },
new[] { "Tag1-Value, "Tag2-Value }
);
_metrics.Measure.Counter.Increment
(
new CounterOptions
{
Name = "my-new-metric",
Context = "my-new-context",
MeasurementUnit = Unit.Calls,
Tags = tags
}
);
}
catch (Exception ex)
{
}
}
}
3 - 앱 파이프라인에 미들웨어를 추가합니다.
builder.UseMiddleware();
1 - IMetrics
컨트롤러에 삽입합니다.
public WeatherForecastController(ILogger logger, IMetrics metrics)
{
_logger = logger;
_metrics = metrics;
}
2 - IMetrics
사용:
[HttpGet(Name = "GetWeatherForecast")]
public IEnumerable Get()
{
var tags = new MetricTags
(
new[] { "Tag1-Key", "Tag2-Key" },
new[] { "Tag1-Value, "Tag2-Value }
);
_metrics.Measure.Counter.Increment
(
new CounterOptions
{
Name = "my-new-metric",
Context = "my-new-context",
MeasurementUnit = Unit.Calls,
Tags = tags
}
);
return Enumerable.Range(1, 5).Select
(
index => new WeatherForecast
{
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
TemperatureC = Random.Shared.Next(-20, 55),
Summary = Summaries[Random.Shared.Next(Summaries.Length)]
}
)
.ToArray();
}