GithubHelp home page GithubHelp logo

isabella232 / opentelemetry-teamcity-plugin Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ajaybenno/opentelemetry-teamcity-plugin

0.0 0.0 0.0 466 KB

A TeamCity plugin that contains a build listener to send OpenTelemetry trace data to an external endpoint

License: Apache License 2.0

JavaScript 3.83% Java 96.09% CSS 0.09%

opentelemetry-teamcity-plugin's Introduction

TeamCity Build OpenTelemetry Exporter Plugin

A TeamCity plugin that sends build trace data to an OpenTelemetry collector endpoint.

This plugin helps you visualize how you can better optimize your TeamCity builds and their dependency trees, by exporting TeamCity build pipeline data automatically to existing OpenTelemetry collector such as Honeycomb, Zipkin or Jaeger.

trace_image.png

What is OpenTelemetry

From the OpenTelemetry docs:

You can use OpenTelemetry to instrument, generate, collect, and export telemetry data (metrics, logs, and traces) for analysis in order to understand your software's performance and behavior. Create and collect telemetry data from your services and software, then forward them to a variety of analysis tools. For more information about OpenTelemetry go to https://opentelemetry.io/.

How to use this plugin

Installing the plugin to TeamCity

  1. Build the plugin using the "Building" instructions below.
  2. In your TeamCity instance go to the configuration settings for the project which you want to start sending data for (the root project is a good candidate for sending everything!), and choose OpenTelemetry in the left menu
  3. Tick Enable, and enter the required settings
    1. If you are using honeycomb.io, use the following settings:
      1. Service: Honeycomb.io
      2. Api Key: The honeycomb.io api key
      3. Team: Your team name from honeycomb (as shown in the browser url)
      4. Dataset: The dataset you want to send data to
    2. If you are using Zipkin.io:
      1. Service: Zipkin
      2. Endpoint: The url of your zipkin instance (eg http://localhost:9411/)
    3. If you are using another service, use the following settings:
      1. Service: Custom
      2. Endpoint: The url of the service
      3. Headers: The service specific headers required
  4. Note that settings are inherited and can be overridden by child project settings
  5. Install the .zip using your TeamCity instance UI via Administration -> Plugins -> Upload. Restart if required.

Logging

To view logs from the plugin, add the following sections to the conf/teamcity-server-log4j.xml file in your teamcity installation:

Under Appenders:

    <DelegateAppender>
      <RollingFile name="OTEL.LOG" fileName="${sys:teamcity_logs}/teamcity-otel-plugin.log"
                   filePattern="${sys:teamcity_logs}/teamcity-otel-plugin.log.%i"
                   append="true" createOnDemand="true">
        <PatternLayout pattern="[%d] %6p - %30.30c - %m%n" charset="UTF-8"/>
        <SizeBasedTriggeringPolicy size="10 MB"/>
        <DefaultRolloverStrategy max="3" fileIndex="min"/>
      </RollingFile>
    </DelegateAppender>

Under Loggers:

    <Logger name="com.octopus.teamcity.opentelemetry" level="DEBUG">
      <AppenderRef ref="OTEL.LOG" />
    </Logger>

Local Development

Using Docker

For detailed instructions check the TeamCity docker hub docs.

  1. Ensure you have docker running
  2. Run docker pull jetbrains/teamcity-server
  3. Run
docker run -it --name teamcity-server-instance \
   -v <path-to-data-directory>:/data/teamcity_server/datadir \
   -v <path-to-logs-directory>:/opt/teamcity/logs  \
   -p <port-on-host>:8111 \
   jetbrains/teamcity-server
  1. Run docker pull jetbrains/teamcity-agent
  2. Run
docker run -it -e SERVER_URL="<url to TeamCity server>"  \
   -v <path to agent config folder>:/data/teamcity_agent/conf  \      
   jetbrains/teamcity-agent

Running Locally

You must have a TeamCity instance running. To run a TeamCity instance locally:

  1. Download the TeamCity distro for your OS from https://www.jetbrains.com/teamcity/download/#section=on-premises.
  2. Unzip the distro and place in a directory of your choosing.
  3. To run the default server, open terminal then cd in your TeamCity directory then run ./bin/teamcity-server.sh run. An alias these commands for repeated future can be made.
  4. In a separate terminal, to run the default agent, cd in your TeamCity directory then run ./buildAgent/bin/agent.sh run.
  5. Open localhost:8111 in a browser.
  6. On your first run create an admin login (this setup only needs to take place once due to the configuration mount). Once the server starts up, navigate to Agents->Unauthorized and authorise the agent that was started in a container alongside the server.
  7. (Optional) If attaching a remote debugger run in your TeamCity directory export TEAMCITY_SERVER_OPTS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8111 && $SCRIPT_PATH/bin/teamcity-server.sh run for the server and export TEAMCITY_SERVER_OPTS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8111 && $SCRIPT_PATH/buildAgent/bin/agent.sh run for the default agent.
  8. Configure the settings as per Installing the plugin to TeamCity above.
  9. To stop the TeamCity server and agent from running, in a separate terminal cd to your TeamCity directory and run ./bin/runAll.sh stop

Building

To build the plugin from code:

  1. Ensure your $JAVA_HOME points to a java11 JDK installation
  2. Install TeamCity
  3. Inside the root project folder run ./gradlew build. The gradlew script will download Gradle for you if it is not already installed.
  4. The plugin is available at <project_root>/build/distributions/Octopus.TeamCity.OpenTelemetry.<version>.zip.
  5. Copy to .zip to your TeamCity data_dir/plugins directory and restart TeamCity server OR install the .zip using your TeamCity instance UI.

Testing

JUnit tests have been added to package test folders.

To test the plugin from code:

  1. Ensure your $JAVA_HOME points to a java11 JDK installation
  2. Inside the root project folder run ./gradlew test. The gradlew script will download Gradle for you if it is not already installed.

Cleaning

To clean the project root directory of builds:

  1. Inside the root project folder run ./gradlew clean. The gradlew script will download Gradle for you if it is not already installed.

opentelemetry-teamcity-plugin's People

Contributors

cailyoung avatar casstait avatar dependabot[bot] avatar liam-mackie avatar matt-richardson avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.