mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 09:38:39 +08:00
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
//
|
|
// 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
|
|
#include "opentelemetry/sdk/version/version.h"
|
|
#include "opentelemetry/trace/provider.h"
|
|
|
|
namespace milvus::tracer {
|
|
|
|
struct TraceConfig {
|
|
std::string exporter;
|
|
int sampleFraction;
|
|
std::string jaegerURL;
|
|
std::string otlpEndpoint;
|
|
|
|
int nodeID;
|
|
};
|
|
|
|
struct TraceContext {
|
|
const uint8_t* traceID;
|
|
const uint8_t* spanID;
|
|
uint8_t flag;
|
|
};
|
|
namespace trace = opentelemetry::trace;
|
|
|
|
void
|
|
initTelementry(TraceConfig* config);
|
|
|
|
std::shared_ptr<trace::Tracer>
|
|
GetTracer();
|
|
|
|
std::shared_ptr<trace::Span>
|
|
StartSpan(std::string name, TraceContext* ctx = nullptr);
|
|
|
|
} // namespace milvus::tracer
|