Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zipkin exporter #471

Merged
merged 48 commits into from
Mar 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
8fd81b0
zipkin changes
lalitb Dec 18, 2020
a532b72
reformat
lalitb Dec 18, 2020
861da22
fix cmake format
lalitb Dec 18, 2020
586d5c9
fix build
lalitb Dec 18, 2020
babbc5d
remove formats
lalitb Dec 18, 2020
5570d18
remove console debugs
lalitb Dec 18, 2020
1039f4c
remove debug
lalitb Dec 18, 2020
fd5a5b6
Update exporters/zipkin/CMakeLists.txt
lalitb Dec 21, 2020
d4f22e3
fix endpoint
lalitb Dec 21, 2020
0fbe3af
add noop response
lalitb Dec 22, 2020
6d3e445
Merge branch 'master' into zipkin
lalitb Dec 22, 2020
cdf5dc4
fix nullptr for http errors
lalitb Dec 22, 2020
19d789f
remove otlp stuff
lalitb Dec 22, 2020
84b0458
fix sync mode
lalitb Dec 28, 2020
93beff6
merge conflict
lalitb Jan 18, 2021
81049c7
merge conflict
lalitb Jan 26, 2021
791e2a1
fixes
lalitb Jan 27, 2021
aff76e2
fix
lalitb Jan 27, 2021
dcc758b
fix
lalitb Jan 27, 2021
b3e96c7
fix spell
lalitb Jan 27, 2021
4c97dc7
fix
lalitb Jan 27, 2021
3806ee2
fix
lalitb Jan 27, 2021
0125752
fix
lalitb Jan 27, 2021
ae0a1a0
fix
lalitb Jan 27, 2021
8c351c1
review fix
lalitb Jan 29, 2021
b2cfa8e
Merge branch 'main' into zipkin
lalitb Jan 29, 2021
803eaa3
Merge branch 'main' into zipkin
lalitb Feb 1, 2021
7283a85
fix
lalitb Feb 12, 2021
67d6793
Merge branch 'main' into zipkin
lalitb Feb 12, 2021
5764899
fix
lalitb Feb 12, 2021
18390cf
fix
lalitb Feb 12, 2021
590bbcf
Merge branch 'main' into zipkin
lalitb Feb 15, 2021
b54304d
fix
lalitb Feb 15, 2021
ad1506e
Merge branch 'zipkin' of github.com:lalitb/opentelemetry-cpp into zipkin
lalitb Feb 15, 2021
7450085
Merge branch 'main' into zipkin
lalitb Feb 15, 2021
11ffb1e
Merge branch 'main' into zipkin
lalitb Feb 18, 2021
e6e333f
Merge branch 'main' into zipkin
lalitb Feb 23, 2021
d4c7217
Merge branch 'main' into zipkin
lalitb Feb 24, 2021
653d084
fix annotations as per specs
lalitb Feb 25, 2021
e0057f3
Merge branch 'zipkin' of github.com:lalitb/opentelemetry-cpp into zipkin
lalitb Feb 25, 2021
6c89e4f
Merge branch 'main' into zipkin
lalitb Mar 2, 2021
0eb9ce4
Merge branch 'main' into zipkin
lalitb Mar 2, 2021
4633712
Update exporters/zipkin/include/opentelemetry/exporters/zipkin/zipkin…
lalitb Mar 3, 2021
359a385
Update exporters/zipkin/include/opentelemetry/exporters/zipkin/zipkin…
lalitb Mar 3, 2021
051fccf
fix comments
lalitb Mar 3, 2021
acb1040
add changelog
lalitb Mar 3, 2021
f97e6ca
fix md
lalitb Mar 3, 2021
fa6826a
fix
lalitb Mar 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Increment the:

## [Unreleased]

* [EXPORTER] Added Zipkin Exporter. ([#471](https://github.com/open-telemetry/opentelemetry-cpp/pull/471))

## [0.2.0] 2021-03-02

* [SDK] Added `ForceFlush` to `TracerProvider`. ([#588](https://github.com/open-telemetry/opentelemetry-cpp/pull/588)).
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ if(WITH_STL)
endif()

option(WITH_OTLP "Whether to include the OpenTelemetry Protocol in the SDK" OFF)
option(WITH_ZIPKIN "Whether to include the Zipkin exporter in the SDK" OFF)

option(WITH_PROMETHEUS "Whether to include the Prometheus Client in the SDK"
OFF)
Expand Down
18 changes: 18 additions & 0 deletions exporters/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Copyright 2021, OpenTelemetry Authors
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Somehow I haven't noticed this before...
Do we need to include the actual year, or we can do something simpler like https://github.com/open-telemetry/opentelemetry-dotnet/blob/381908c089aac4fa9a2056d6bbf465b9853b81b8/src/OpenTelemetry/AssemblyInfo.cs#L2?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure where I copied from. Have fixed it now. Thanks for the comment.

#
# 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.

if(WITH_OTLP)
add_subdirectory(otlp)
endif()
Expand All @@ -9,6 +23,10 @@ if(WITH_PROMETHEUS)
add_subdirectory(prometheus)
endif()

if(WITH_ZIPKIN)
add_subdirectory(zipkin)
endif()

if(WITH_ELASTICSEARCH)
add_subdirectory(elasticsearch)
endif()
Expand Down
31 changes: 31 additions & 0 deletions exporters/zipkin/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Copyright 2021, 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.

include_directories(include)
find_package(CURL)
lalitb marked this conversation as resolved.
Show resolved Hide resolved
if(CURL_FOUND)
add_definitions(-DWITH_CURL)
endif()
add_library(zipkin_trace_exporter src/zipkin_exporter.cc src/recordable.cc)
if(BUILD_TESTING)
add_executable(zipkin_recordable_test test/zipkin_recordable_test.cc)

target_link_libraries(zipkin_recordable_test ${GTEST_BOTH_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT} zipkin_trace_exporter)

gtest_add_tests(
TARGET zipkin_recordable_test
TEST_PREFIX exporter.
TEST_LIST zipkin_recordable_test)
endif() # BUILD_TESTING
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
* Copyright The 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.
*/

#pragma once

#include "nlohmann/json.hpp"
#include "opentelemetry/sdk/trace/recordable.h"
#include "opentelemetry/version.h"

OPENTELEMETRY_BEGIN_NAMESPACE
namespace exporter
{
namespace zipkin
{
using ZipkinSpan = nlohmann::json;

enum class TransportFormat
{
kJson,
kProtobuf
};

class Recordable final : public sdk::trace::Recordable
{
public:
const ZipkinSpan &span() const noexcept { return span_; }

void SetIds(trace::TraceId trace_id,
trace::SpanId span_id,
trace::SpanId parent_span_id) noexcept override;

void SetAttribute(nostd::string_view key,
const opentelemetry::common::AttributeValue &value) noexcept override;

void AddEvent(nostd::string_view name,
core::SystemTimestamp timestamp,
const common::KeyValueIterable &attributes) noexcept override;

void AddLink(const opentelemetry::trace::SpanContext &span_context,
const common::KeyValueIterable &attributes) noexcept override;

void SetStatus(trace::StatusCode code, nostd::string_view description) noexcept override;

void SetName(nostd::string_view name) noexcept override;

void SetStartTime(opentelemetry::core::SystemTimestamp start_time) noexcept override;

virtual void SetSpanKind(opentelemetry::trace::SpanKind span_kind) noexcept override;

void SetDuration(std::chrono::nanoseconds duration) noexcept override;

private:
ZipkinSpan span_;
};
} // namespace zipkin
} // namespace exporter
OPENTELEMETRY_END_NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
/*
* Copyright The 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.
*/

#pragma once

#include "opentelemetry/exporters/zipkin/recordable.h"
#include "opentelemetry/ext/http/client/http_client_factory.h"
#include "opentelemetry/ext/http/common/url_parser.h"
#include "opentelemetry/sdk/trace/exporter.h"
#include "opentelemetry/sdk/trace/span_data.h"

#include "nlohmann/json.hpp"

OPENTELEMETRY_BEGIN_NAMESPACE
namespace exporter
{
namespace zipkin
{

const std::string kZipkinEndpointDefault = "http://localhost:9411/api/v2/spans";

/**
* Struct to hold Zipkin exporter options.
*/
struct ZipkinExporterOptions
{
// The endpoint to export to. By default the OpenTelemetry Collector's default endpoint.
std::string endpoint = kZipkinEndpointDefault;
TransportFormat format = TransportFormat::kJson;
std::string service_name = "default-service";
std::string ipv4;
std::string ipv6;
};

namespace trace_sdk = opentelemetry::sdk::trace;
namespace http_client = opentelemetry::ext::http::client;

/**
* The Zipkin exporter exports span data in JSON format as expected by Zipkin
*/
class ZipkinExporter final : public trace_sdk::SpanExporter
{
public:
/**
* Create a ZipkinExporter using all default options.
*/
ZipkinExporter();

/**
* Create a ZipkinExporter using the given options.
*/
explicit ZipkinExporter(const ZipkinExporterOptions &options);

/**
* Create a span recordable.
* @return a newly initialized Recordable object
*/
std::unique_ptr<trace_sdk::Recordable> MakeRecordable() noexcept override;

/**
* Export a batch of span recordables in JSON format.
* @param spans a span of unique pointers to span recordables
*/
trace_sdk::ExportResult Export(
const nostd::span<std::unique_ptr<trace_sdk::Recordable>> &spans) noexcept override;

/**
* Shut down the exporter.
* @param timeout an optional timeout, default to max.
*/
bool Shutdown(
std::chrono::microseconds timeout = std::chrono::microseconds::max()) noexcept override
{
return true;
}

private:
void InitializeLocalEndpoint();

private:
// The configuration options associated with this exporter.
bool isShutdown_ = false;
ZipkinExporterOptions options_;
std::shared_ptr<http_client::HttpClientSync> http_client_;
opentelemetry::ext::http::common::UrlParser url_parser_;
nlohmann::json local_end_point_;
};
} // namespace zipkin
} // namespace exporter
OPENTELEMETRY_END_NAMESPACE
Loading