Clone this repo:
  1. 71e9444 Documentation for tracelibcpp by wahidw · 4 years, 3 months ago cherry f-release g-release h-release i-release j-release master
  2. 96cdd8a Replacing committers by czichy · 4 years, 5 months ago
  3. 00fbdee Replacing Heikki with Timo as committer by czichy · 4 years, 6 months ago bronze
  4. d226edf Add release yaml by Roni Riska · 5 years ago
  5. 8a185f9 Merge "Add new license claim" by Roni Riska · 5 years ago

RIC tracing helper library

The library includes a function for creating a configured tracer instance. It hides the underlaying tracer implementation from the application.

Usage

Create a global tracer

    #include <opentracing/tracer.h>
    #include <tracelibcpp/tracelibcpp.hpp>

    opentracing::Tracer::InitGlobal(tracelibcpp::createTracer("my-service-name"));

Span context propagation between different software components in RIC is using a TextMap carrier and JSON format serialization. The opentracing C++ Readme gives examples how span context inject and extract with textmap can be done. Serialization to JSON can be done with any JSON library.

Configuration

The trace library currently supports only Jaeger C++ client tracer implementation. The configuration is done using environment variables:

environment variablevaluesdefault
TRACING_ENABLED1, true, 0, falsefalse
TRACING_JAEGER_SAMPLER_TYPEconst, propabilistic, ratelimitingconst
TRACING_JAEGER_SAMPLER_PARAMfloat0.001
TRACING_JAEGER_AGENT_ADDRIP addr + port127.0.0.1:6831
TRACING_JAEGER_LOG_LEVELall, error, nonenone

Meaning of the configuration variables is described in Jaeger web pages. By default a no-op tracer is created.

Requires

cmake gcc/c++ opentracing-cpp version 1.5.0

Build

mkdir build cd build cmake .. make

Unit testing

To run unit tests the project needs to be configured with testing option cmake -DWITH_TESTING=ON .. make check Or with output CTEST_OUTPUT_ON_FAILURE=1 make check

Coverage

Unit testing generates also coverage data. To get that in html format run commands, assuming you are building in build dir under the tracelibcpp

lcov -c --no-external --base-directory $(dirname $PWD)  --directory . --output-file cov.info
genhtml cov.info

Binary package support

Binary packages of the libary can be created with make package target, or with the Dockerfile in the ci directory.

The Docker build executes unit tests and compiles binary packages which can then be exported from the container by running it and giving the target directory as a command line argument. The target directory must mounted to the container.

# Build the container
docker build -t tracelibcpp -f ci/Dockerfile .
# Export binary packages to /tmp
docker run -v /tmp:/tmp tracelibcpp /tmp

License

See LICENSES.txt file.