3 writes to PartialSuccess
Aspire.Dashboard (3)
artifacts\obj\Aspire.Dashboard\Debug\net11.0\opentelemetry\proto\collector\metrics\v1\MetricsService.cs (2)
413PartialSuccess = new global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsPartialSuccess(); 464PartialSuccess = new global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsPartialSuccess();
Otlp\OtlpMetricsService.cs (1)
32PartialSuccess = new ExportMetricsPartialSuccess
14 references to PartialSuccess
Aspire.Dashboard (13)
artifacts\obj\Aspire.Dashboard\Debug\net11.0\opentelemetry\proto\collector\metrics\v1\MetricsService.cs (8)
341if (!object.Equals(PartialSuccess, other.PartialSuccess)) return false; 349if (partialSuccess_ != null) hash ^= PartialSuccess.GetHashCode(); 384output.WriteMessage(PartialSuccess); 397size += 1 + pb::CodedOutputStream.ComputeMessageSize(PartialSuccess); 415PartialSuccess.MergeFrom(other.PartialSuccess); 466input.ReadMessage(PartialSuccess);
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (5)
929if (response.PartialSuccess is not null && (response.PartialSuccess.RejectedDataPoints > 0 || !string.IsNullOrEmpty(response.PartialSuccess.ErrorMessage))) 933RejectedDataPoints = response.PartialSuccess.RejectedDataPoints, 934ErrorMessage = response.PartialSuccess.ErrorMessage
Aspire.Dashboard.Tests (1)
Integration\OtlpHttpServiceTests.cs (1)
491Assert.Equal(0, response.PartialSuccess.RejectedDataPoints);