4 instantiations of ExportMetricsServiceRequest
Aspire.Dashboard (3)
artifacts\obj\Aspire.Dashboard\Debug\net11.0\opentelemetry\proto\collector\metrics\v1\MetricsService.cs (2)
64private static readonly pb::MessageParser<ExportMetricsServiceRequest> _parser = new pb::MessageParser<ExportMetricsServiceRequest>(() => new ExportMetricsServiceRequest()); 100return new ExportMetricsServiceRequest(this);
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (1)
59var request = new ExportMetricsServiceRequest();
Aspire.Dashboard.Tests (1)
Integration\OtlpHttpServiceTests.cs (1)
478var request = new ExportMetricsServiceRequest();
29 references to ExportMetricsServiceRequest
Aspire.Dashboard (28)
artifacts\obj\Aspire.Dashboard\Debug\net11.0\opentelemetry\proto\collector\metrics\v1\MetricsService.cs (11)
49new pbr::GeneratedClrTypeInfo(typeof(global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest), global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest.Parser, new[]{ "ResourceMetrics" }, null, null, null, null), 59public sealed partial class ExportMetricsServiceRequest : pb::IMessage<ExportMetricsServiceRequest> 64private static readonly pb::MessageParser<ExportMetricsServiceRequest> _parser = new pb::MessageParser<ExportMetricsServiceRequest>(() => new ExportMetricsServiceRequest()); 68public static pb::MessageParser<ExportMetricsServiceRequest> Parser { get { return _parser; } } 92public ExportMetricsServiceRequest(ExportMetricsServiceRequest other) : this() { 99public ExportMetricsServiceRequest Clone() { 124return Equals(other as ExportMetricsServiceRequest); 129public bool Equals(ExportMetricsServiceRequest other) { 194public void MergeFrom(ExportMetricsServiceRequest other) {
artifacts\obj\Aspire.Dashboard\Debug\net11.0\opentelemetry\proto\collector\metrics\v1\MetricsServiceGrpc.cs (10)
69static readonly grpc::Marshaller<global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest> __Marshaller_opentelemetry_proto_collector_metrics_v1_ExportMetricsServiceRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::OpenTelemetry.Proto.Collector.Metrics.V1.ExportMetricsServiceRequest.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));
Model\TelemetryImportService.cs (1)
197var protobufRequest = OtlpJsonToProtobufConverter.ToProtobuf(exportRequest);
Otlp\Grpc\OtlpGrpcMetricsService.cs (1)
23public override Task<ExportMetricsServiceResponse> Export(ExportMetricsServiceRequest request, ServerCallContext context)
Otlp\Http\OtlpHttpEndpointsBuilder.cs (1)
64group.MapPost("metrics", static async (MessageBindable<ExportMetricsServiceRequest> request, OtlpMetricsService service) =>
Otlp\Http\OtlpJsonConverters.cs (1)
28[typeof(ExportMetricsServiceRequest)] = json =>
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
57public static ExportMetricsServiceRequest ToProtobuf(OtlpExportMetricsServiceRequestJson json) 59var request = new ExportMetricsServiceRequest();
Otlp\OtlpMetricsService.cs (1)
23public async Task<ExportMetricsServiceResponse> ExportAsync(ExportMetricsServiceRequest request)
Aspire.Dashboard.Tests (1)
Integration\OtlpHttpServiceTests.cs (1)
478var request = new ExportMetricsServiceRequest();