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