Skip to content

Latest commit

 

History

History
117 lines (84 loc) · 4.37 KB

manual-instrumentation.md

File metadata and controls

117 lines (84 loc) · 4.37 KB

Manual instrumentation

This guide shows you how to use the Elastic Distribution of OpenTelemetry Python (EDOT Python) to manually instrument your Python application and send OpenTelemetry data to an Elastic Observability deployment.

This guide requires to have already added autoinstrumentation with OpenTelemetry to your application per Get started.

New to OpenTelemetry? If your are new to OpenTelemetry we encourage you to take a look at our get started documentation instead, which will introduce you to autoinstrumentation.

Configure EDOT Python

To configure EDOT Python, at a minimum you'll need your Elastic Observability cloud deployment's OTLP endpoint and authorization data to set a few OTLP_* environment variables that will be available when running EDOT Python:

export OTEL_RESOURCE_ATTRIBUTES=service.name=<app-name>
export OTEL_EXPORTER_OTLP_ENDPOINT=https://my-deployment.apm.us-west1.gcp.cloud.es.io
export OTEL_EXPORTER_OTLP_HEADERS="Authorization=Bearer P....l"

Refer to our get started page for more details.

Manually instrument your auto instrumented Python application

In this section we'll show how to add manual instrumentation to an already automatically instrumented application. A use case for this setup would be to trace something in particular while keeping the benefits of the simplicity of the automatic instrumentation doing the hard work for us.

As an example we'll use an application using the Flask framework that implements an endpoint mounted on /hello returning a friendly salute. This application is saved in a file named app.py that is the default module for Flask applications.

import random

from flask import Flask
from opentelemetry import trace

tracer = trace.get_tracer(__name__)

app = Flask(__name__)

@app.route("/hello")
def hello():
    choices = ["there", "world", "folks", "hello"]
    # create a span for the choice of the name, this may be a costly call in your real world application
    with tracer.start_as_current_span("choice") as span:
        choice = random.choice(choices)
        span.set_attribute("choice.value", choice)
    return f"Hello {choice}!"

We need to make sure to have Flask and the Flask OpenTelemetry instrumentation installed:

pip install flask
edot-bootstrap --action=install

And then we can run this application with the following command:

opentelemetry-instrument flask run

We may not only need to add a custom span to our application but also want to use a custom metric, like in the example below where we are tracking how many times we are getting one of the possible choices for our salutes.

import random

from flask import Flask
from opentelemetry import metrics, trace

tracer = trace.get_tracer(__name__)
meter = metrics.get_meter(__name__)

hello_counter = meter.create_counter(
    "hello.choice",
    description="The number of times a salute is chosen",
)

app = Flask(__name__)

@app.route("/hello")
def hello():
    choices = ["there", "world", "folks", "hello"]
    # create a span for the choice of the name, this may be a costly call in your real world application
    with tracer.start_as_current_span("choice") as span:
        choice = random.choice(choices)
        span.set_attribute("choice.value", choice)
    hello_counter.add(1, {"choice.value": choice})
    return f"Hello {choice}!"

Confirm that EDOT Python is working

To confirm that EDOT Python has successfully connected to Elastic:

  1. Go to APMTraces.
  2. You should see the name of the service to which you just added EDOT Python. It can take several minutes after initializing EDOT Python for the service to show up in this list.
  3. Click on the name in the list to see trace data.

Note

There may be no trace data to visualize unless you have used your application since initializing EDOT Python.

Next steps