Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[prometheus] Fix collection output buffer management when its resized #5676

Merged
merged 7 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

* Fix collection output buffer management when its resized
([#5676](https://github.com/open-telemetry/opentelemetry-dotnet/pull/5676))

## 1.9.0-beta.1

Released 2024-Jun-14
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,13 +198,13 @@ private bool ExecuteCollect(bool openMetricsRequested)
private ExportResult OnCollect(Batch<Metric> metrics)
{
var cursor = 0;
var buffer = this.exporter.OpenMetricsRequested ? this.openMetricsBuffer : this.plainTextBuffer;
ref byte[] buffer = ref (this.exporter.OpenMetricsRequested ? ref this.openMetricsBuffer : ref this.plainTextBuffer);

try
{
if (this.exporter.OpenMetricsRequested)
{
cursor = this.WriteTargetInfo();
cursor = this.WriteTargetInfo(ref buffer);

this.scopes.Clear();

Expand Down Expand Up @@ -291,11 +291,11 @@ private ExportResult OnCollect(Batch<Metric> metrics)

if (this.exporter.OpenMetricsRequested)
{
this.previousOpenMetricsDataView = new ArraySegment<byte>(this.openMetricsBuffer, 0, cursor);
this.previousOpenMetricsDataView = new ArraySegment<byte>(buffer, 0, cursor);
}
else
{
this.previousPlainTextDataView = new ArraySegment<byte>(this.plainTextBuffer, 0, cursor);
this.previousPlainTextDataView = new ArraySegment<byte>(buffer, 0, cursor);
}

return ExportResult.Success;
Expand All @@ -315,21 +315,21 @@ private ExportResult OnCollect(Batch<Metric> metrics)
}
}

private int WriteTargetInfo()
private int WriteTargetInfo(ref byte[] buffer)
{
if (this.targetInfoBufferLength < 0)
{
while (true)
{
try
{
this.targetInfoBufferLength = PrometheusSerializer.WriteTargetInfo(this.openMetricsBuffer, 0, this.exporter.Resource);
this.targetInfoBufferLength = PrometheusSerializer.WriteTargetInfo(buffer, 0, this.exporter.Resource);

break;
}
catch (IndexOutOfRangeException)
{
if (!this.IncreaseBufferSize(ref this.openMetricsBuffer))
if (!this.IncreaseBufferSize(ref buffer))
{
throw;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,30 @@ public async Task PrometheusExporterMiddlewareIntegration_CanServeOpenMetricsAnd
await host.StopAsync();
}

[Fact]
public async Task PrometheusExporterMiddlewareIntegration_ALotOfMetrics()
CodeBlanch marked this conversation as resolved.
Show resolved Hide resolved
{
using var host = await StartTestHostAsync(
app => app.UseOpenTelemetryPrometheusScrapingEndpoint());

using var meter = new Meter(MeterName, MeterVersion);

for (var x = 0; x < 1000; x++)
{
var counter = meter.CreateCounter<double>("counter_double_" + x, unit: "By");
counter.Add(1);
}

using var client = host.GetTestClient();

using var response = await client.GetAsync("/metrics");
var text = await response.Content.ReadAsStringAsync();

Assert.NotEmpty(text);

await host.StopAsync();
}

private static async Task RunPrometheusExporterMiddlewareIntegrationTest(
string path,
Action<IApplicationBuilder> configure,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,45 @@
listener?.Dispose();
}

[Theory]
[InlineData("application/openmetrics-text")]
[InlineData("")]
public async Task PrometheusExporterHttpServerIntegration_LargePayload(string acceptHeader)
CodeBlanch marked this conversation as resolved.
Show resolved Hide resolved
{
using var meter = new Meter(MeterName, MeterVersion);

var attributes = new List<KeyValuePair<string, object>>();
var oneKb = new string('A', 1024);
for (var x = 0; x < 8500; x++)
{
attributes.Add(new KeyValuePair<string, object>(x.ToString(), oneKb));
}

var provider = BuildMeterProvider(meter, attributes, out var address);

for (var x = 0; x < 1000; x++)
{
var counter = meter.CreateCounter<double>("counter_double_" + x, unit: "By");
counter.Add(1);
}

using HttpClient client = new HttpClient();

if (!string.IsNullOrEmpty(acceptHeader))
{
client.DefaultRequestHeaders.Add("Accept", acceptHeader);
}

using var response = await client.GetAsync($"{address}metrics");

Assert.Equal(HttpStatusCode.OK, response.StatusCode);
var content = await response.Content.ReadAsStringAsync();
Assert.Contains("counter_double_999", content);
Assert.DoesNotContain('\0', content);

provider.Dispose();
}

private static void TestPrometheusHttpListenerUriPrefixOptions(string[] uriPrefixes)
{
using var exporter = new PrometheusExporter(new());
Expand All @@ -159,42 +198,9 @@
{
var requestOpenMetrics = acceptHeader.StartsWith("application/openmetrics-text");

Random random = new Random();
int retryAttempts = 5;
int port = 0;
string address = null;

MeterProvider provider = null;
using var meter = new Meter(MeterName, MeterVersion);

while (retryAttempts-- != 0)
{
port = random.Next(2000, 5000);
address = $"http://localhost:{port}/";

try
{
provider = Sdk.CreateMeterProviderBuilder()
.AddMeter(meter.Name)
.ConfigureResource(x => x.Clear().AddService("my_service", serviceInstanceId: "id1"))
.AddPrometheusHttpListener(options =>
{
options.UriPrefixes = new string[] { address };
})
.Build();

break;
}
catch
{
// ignored
}
}

if (provider == null)
{
throw new InvalidOperationException("HttpListener could not be started");
}
var provider = BuildMeterProvider(meter, [], out var address);

var tags = new KeyValuePair<string, object>[]
{
Expand Down Expand Up @@ -259,4 +265,46 @@

provider.Dispose();
}

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check warning on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Tabs and spaces should be used correctly

Check warning on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Code should not contain trailing whitespace

Check warning on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Tabs and spaces should be used correctly

Check warning on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Code should not contain trailing whitespace

Check warning on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Tabs and spaces should be used correctly

Check warning on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Code should not contain trailing whitespace

Check warning on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Tabs and spaces should be used correctly

Check warning on line 268 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Code should not contain trailing whitespace
private static MeterProvider BuildMeterProvider(Meter meter, IEnumerable<KeyValuePair<string, object>> attributes, out string address)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Tabs and spaces should be used correctly

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Static members should appear before non-static members

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Elements should have the same indentation

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Tabs and spaces should be used correctly

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Static members should appear before non-static members

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Elements should have the same indentation

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Tabs and spaces should be used correctly

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Static members should appear before non-static members

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Elements should have the same indentation

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Tabs and spaces should be used correctly

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Static members should appear before non-static members

Check warning on line 269 in test/OpenTelemetry.Exporter.Prometheus.HttpListener.Tests/PrometheusHttpListenerTests.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Elements should have the same indentation
{
Random random = new Random();
int retryAttempts = 5;
int port = 0;
string generatedAddress = null;
MeterProvider provider = null;

while (retryAttempts-- != 0)
{
port = random.Next(2000, 5000);
generatedAddress = $"http://localhost:{port}/";

try
{
provider = Sdk.CreateMeterProviderBuilder()
.AddMeter(meter.Name)
.ConfigureResource(x => x.Clear().AddService("my_service", serviceInstanceId: "id1").AddAttributes(attributes))
.AddPrometheusHttpListener(options =>
{
options.UriPrefixes = new string[] { generatedAddress };
})
.Build();

break;
}
catch
{
// ignored
}
}

address = generatedAddress;

if (provider == null)
{
throw new InvalidOperationException("HttpListener could not be started");
}

return provider;
}
}
Loading