mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
- Implemented MonitorUtil for managing monitor secrets and populating them in monitor steps and tests. - Created StackTraceParser to parse and structure stack traces from various programming languages. - Developed SyslogParser to handle and parse syslog messages in both RFC 5424 and RFC 3164 formats.
42 lines
1.3 KiB
Protocol Buffer
42 lines
1.3 KiB
Protocol Buffer
// Copyright 2019, OpenTelemetry Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
syntax = "proto3";
|
|
|
|
package opentelemetry.proto.collector.trace.v1;
|
|
|
|
import "./traces.proto";
|
|
|
|
option java_multiple_files = true;
|
|
option java_package = "io.opentelemetry.proto.collector.trace.v1";
|
|
option java_outer_classname = "TraceServiceProto";
|
|
option go_package = "go.opentelemetry.io/proto/otlp/collector/trace/v1";
|
|
|
|
service TraceService {
|
|
rpc Export(ExportTraceServiceRequest) returns (ExportTraceServiceResponse) {}
|
|
}
|
|
|
|
message ExportTraceServiceRequest {
|
|
repeated opentelemetry.proto.trace.v1.ResourceSpans resource_spans = 1;
|
|
}
|
|
|
|
message ExportTraceServiceResponse {
|
|
ExportTracePartialSuccess partial_success = 1;
|
|
}
|
|
|
|
message ExportTracePartialSuccess {
|
|
int64 rejected_spans = 1;
|
|
string error_message = 2;
|
|
}
|