Skip to content

Commit

Permalink
Rename the project to opentelemetry-cpp-fluentd
Browse files Browse the repository at this point in the history
  • Loading branch information
zurex committed Sep 10, 2024
1 parent 22e7fe2 commit f7256f4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion exporters/fluentd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cmake_minimum_required(VERSION 3.12)
##
set(MAIN_PROJECT OFF)
if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
project(opentelemetry-fluentd)
project(opentelemetry-cpp-fluentd)
set(MAIN_PROJECT ON)
endif()

Expand Down
2 changes: 1 addition & 1 deletion exporters/fluentd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ To use the library from a CMake project, you can locate it directly with
```cmake
# CMakeLists.txt
find_package(opentelemetry-cpp CONFIG REQUIRED)
find_package(opentelemetry-fluentd CONFIG REQUIRED)
find_package(opentelemetry-cpp-fluentd CONFIG REQUIRED)
...
target_include_directories(foo PRIVATE ${OPENTELEMETRY_CPP_FLUENTD_INCLUDE_DIRS})
target_link_libraries(foo PRIVATE ${OPENTELEMETRY_CPP_LIBRARIES} ${OPENTELEMETRY_CPP_FLUENTD_LIBRARY_DIRS})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
# OPENTELEMETRY_CPP_FLUENTD_VERSION - Version of opentelemetry-cpp-fluentd.
#
# ::
# opentelemetry-cpp-fluentd::trace - Imported target of opentelemetry-fluentd::trace
# opentelemetry-cpp::logs - Imported target of opentelemetry-fluentd::logs
# opentelemetry-cpp-fluentd::trace - Imported target of oopentelemetry-cpp-fluentd::trace
# opentelemetry-cpp::logs - Imported target of opentelemetry-cpp-fluentd::logs

# =============================================================================
# Copyright 2020 opentelemetry.
Expand Down Expand Up @@ -49,8 +49,8 @@ set(_OPENTELEMETRY_CPP_FLUENTD_LIBRARIES_TEST_TARGETS
logs)

foreach(_TEST_TARGET IN LISTS _OPENTELEMETRY_CPP_FLUENTD_LIBRARIES_TEST_TARGETS)
if(TARGET opentelemetry-fluentd::${_TEST_TARGET})
list(APPEND OPENTELEMETRY_CPP_FLUENTD_LIBRARIES opentelemetry-fluentd::${_TEST_TARGET})
if(TARGET opentelemetry-cpp-fluentd::${_TEST_TARGET})
list(APPEND OPENTELEMETRY_CPP_FLUENTD_LIBRARIES opentelemetry-cpp-fluentd::${_TEST_TARGET})
else()
message("Target not found: " ${_TEST_TARGET})
endif()
Expand Down
2 changes: 1 addition & 1 deletion exporters/fluentd/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "opentelemetry-fluentd",
"name": "opentelemetry-cpp-fluentd",
"version-semver": "2.0.0",
"description": "mdsd/fluentd exporter for OpenTelemetry C++",
"homepage": "https://github.com/niande-xbox/opentelemetry-cpp-contrib/tree/main/exporters/fluentd",
Expand Down

0 comments on commit f7256f4

Please sign in to comment.