opentelemetry-java-instrume.../examples/distro
jason plumb 9336bf0ecb
updates the examples to use latest otel (#2081)
2021-01-19 10:13:43 -08:00
..
agent Add example of creating custom vendor distribution (#1621) 2020-11-21 11:00:53 -08:00
custom updates the examples to use latest otel (#2081) 2021-01-19 10:13:43 -08:00
gradle/wrapper Add example of creating custom vendor distribution (#1621) 2020-11-21 11:00:53 -08:00
instrumentation updates the examples to use latest otel (#2081) 2021-01-19 10:13:43 -08:00
smoke-tests Update vendor distro example to 0.12 (#1875) 2020-12-10 10:25:33 +02:00
README.md Update README.md (#1743) 2020-11-23 20:17:43 +02:00
build.gradle updates the examples to use latest otel (#2081) 2021-01-19 10:13:43 -08:00
gradlew Add example of creating custom vendor distribution (#1621) 2020-11-21 11:00:53 -08:00
gradlew.bat Add example of creating custom vendor distribution (#1621) 2020-11-21 11:00:53 -08:00
settings.gradle Add example of creating custom vendor distribution (#1621) 2020-11-21 11:00:53 -08:00

README.md

Introduction

This repository serves as a collection of examples of extending functionality of OpenTelemetry Java instrumentation agent. It demonstrates how to repackage the aforementioned agent adding custom functionality. For every extension point provided by OpenTelemetry Java instrumentation, this repository contains an example of its usage.

General structure

This repository has four main submodules:

  • custom contains all custom functionality, SPI and other extensions
  • agent contains the main repackaging functionality and, optionally, an entry point to the agent, if one wishes to customize that
  • instrumentation contains custom instrumentations added by vendor
  • smoke-tests contains simple tests to verify that resulting agent builds and applies correctly

Extensions examples