3 instantiations of ExportMetricsServiceResponse
Aspire.Dashboard (3)
artifacts\obj\Aspire.Dashboard\Debug\net11.0\opentelemetry\proto\collector\metrics\v1\MetricsService.cs (2)
258private static readonly pb::MessageParser<ExportMetricsServiceResponse> _parser = new pb::MessageParser<ExportMetricsServiceResponse>(() => new ExportMetricsServiceResponse()); 294return new ExportMetricsServiceResponse(this);
Otlp\OtlpMetricsService.cs (1)
30return new ExportMetricsServiceResponse
28 references to ExportMetricsServiceResponse
Aspire.Dashboard (26)
artifacts\obj\Aspire.Dashboard\Debug\net11.0\opentelemetry\proto\collector\metrics\v1\MetricsService.cs (11)
50new pbr::GeneratedClrTypeInfo(typeof(global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse), global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse.Parser, new[]{ "PartialSuccess" }, null, null, null, null), 253public sealed partial class ExportMetricsServiceResponse : pb::IMessage<ExportMetricsServiceResponse> 258private static readonly pb::MessageParser<ExportMetricsServiceResponse> _parser = new pb::MessageParser<ExportMetricsServiceResponse>(() => new ExportMetricsServiceResponse()); 262public static pb::MessageParser<ExportMetricsServiceResponse> Parser { get { return _parser; } } 286public ExportMetricsServiceResponse(ExportMetricsServiceResponse other) : this() { 293public ExportMetricsServiceResponse Clone() { 329return Equals(other as ExportMetricsServiceResponse); 334public bool Equals(ExportMetricsServiceResponse other) { 407public void MergeFrom(ExportMetricsServiceResponse other) {
artifacts\obj\Aspire.Dashboard\Debug\net11.0\opentelemetry\proto\collector\metrics\v1\MetricsServiceGrpc.cs (10)
71static readonly grpc::Marshaller<global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse> __Marshaller_opentelemetry_proto_collector_metrics_v1_ExportMetricsServiceResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse.Parser)); 74static readonly grpc::Method<global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest, global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse> __Method_Export = new grpc::Method<global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest, global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse>( 92public virtual global::System.Threading.Tasks.Task<global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse> Export(global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest request, grpc::ServerCallContext context) 127public virtual global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse Export(global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) 132public virtual global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse Export(global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest request, grpc::CallOptions options) 137public virtual grpc::AsyncUnaryCall<global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse> ExportAsync(global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken)) 142public virtual grpc::AsyncUnaryCall<global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse> ExportAsync(global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest request, grpc::CallOptions options) 170serviceBinder.AddMethod(__Method_Export, serviceImpl == null ? null : new grpc::UnaryServerMethod<global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest, global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceResponse>(serviceImpl.Export));
Otlp\Grpc\OtlpGrpcMetricsService.cs (1)
23public override Task<ExportMetricsServiceResponse> Export(ExportMetricsServiceRequest request, ServerCallContext context)
Otlp\Http\OtlpJsonConverters.cs (2)
47[typeof(ExportMetricsServiceResponse)] = message => 49var json = OtlpProtobufToJsonConverter.ToJson((ExportMetricsServiceResponse)message);
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (1)
926public static OtlpExportMetricsServiceResponseJson ToJson(ExportMetricsServiceResponse response)
Otlp\OtlpMetricsService.cs (1)
23public async Task<ExportMetricsServiceResponse> ExportAsync(ExportMetricsServiceRequest request)
Aspire.Dashboard.Tests (2)
Integration\OtlpHttpServiceTests.cs (2)
486var response = ExportMetricsServiceResponse.Parser.ParseFrom(await responseMessage.Content.ReadAsByteArrayAsync().DefaultTimeout());