Skip to main content

Cisco Distribution for OpenTelemetry

Project description

otel-py

PIP Published Version Apache License Coverage

Trace

This package provides OpenTelemetry-compliant tracing to Python applications for the collection of distributed tracing and performance metrics in Cisco Telescope.

Contents

Installation

Requirements

Python >=3.8, <4.0 pip3 >= 22.0

Install packages

To install Cisco OpenTelemetry Distribution simply run:

pip install cisco-telescope

Install dependencies

To install all supported instrumentation frameworks run:

telescope-bootstrap

Library initialization

Cisco OpenTelemetry Distribution is activated and instruments the supported libraries once the ciscoTracing.init() has returned.

To initialize the library, you'll need a cisco-token, which is taken from your Account tab on the Telescope console Settings page.

from cisco_telescope import tracing

tracing.init(
  service_name="<your-service-name>",
  cisco_token="<your-cisco-token>"
)

OpenTelemetry Collector Configuration

By default, Cisco OpenTelemetry Distribution exports data directly to Cisco Telescope's infrastructure backend. Existing OpenTelemetery Collector is supported, the following configuration can be applied

Configure custom trace exporter

Cisco OpenTelemetry Distribution supports the configuration of multiple custom exporters. Note that you will need to handle your exporter authorization. Example for creating OtlpGrpc Span exporter to local OpenTelemetry collector:

from cisco_telescope import tracing, options

tracing.init(
  service_name="<your-service-name>",
  exporters=[
    options.ExporterOptions(
      exporter_type="otlp-grpc",
      collector_endpoint="grpc://localhost:4317"
    ),
  ]
)

Configure custom OpenTelemetry collector to export trace data to Cisco Telescope's external collector.

collector.yaml ...

exporters:
  otlphttp:
    traces_endpoint: https://production.cisco-udp.com/trace-collector
    headers:
      authorization: Bearer <Your Telescope Token>
    compression: gzip


service:
  pipelines:
    traces:
      exporters: [otlphttp]

Existing OpenTelemetry Instrumentation

Notice: Only relevant if interested in streaming existing OpenTelemetry workloads. Cisco Telescope. supports native OpenTelemetery traces.

from opentelemetry import trace
from opentelemetry.sdk.resources import Resource
from opentelemetry.sdk.trace import TracerProvider
from opentelemetry.sdk.trace.export import BatchSpanProcessor

from opentelemetry.exporter.otlp.proto.http.trace_exporter import (
    OTLPSpanExporter as OTLPHTTPExporter,
)

provider = TracerProvider(resource=Resource.create())
trace.set_tracer_provider(provider)

http_exporter = OTLPHTTPExporter(
  endpoint="https://production.cisco-udp.com/trace-collector",
  headers= {
    "authorization": "Bearer <Your Telescope Token>",
  },
)

processor = BatchSpanProcessor(http_exporter)
provider.add_span_processor(processor)

Supported Runtimes

Cisco OpenTelemetry Distribution supports Python 3.6+

Supported Libraries

Cisco OpenTelemetry Python Distribution is extending Native OpenTelemetry, supported libraries available here.

Cisco OpenTelemetry Python Distribution provides out-of-the-box instrumentation (tracing) and advanced payload collections for many popular frameworks and libraries.

Library Extended Support Version
requests Fully supported
aiohttp Fully supported
grpc Client/Server Unary support

Configuration

Advanced options can be configured as a parameter to the init() method:

Parameter Env Type Default Description
cisco_token CISCO_TOKEN string - Cisco account token
service_name OTEL_SERVICE_NAME string application Application name that will be set for traces
debug CISCO_DEBUG string False Debug logs
payloads_enabled CISCO_PAYLOADS_ENABLED string True Debug logs

Exporter options

Parameter Env Type Default Description
collector_endpoint OTEL_COLLECTOR_ENDPOINT string https://production.cisco-udp.com/trace-collector The address of the trace collector to send traces to
type OTEL_EXPORTER_TYPE string otlp-http The exporter type to use (Currently only otlp-http is supported). Multiple exporter option available via init function see example below

Getting Help

If you have any issue around using the library or the product, please don't hesitate to:

  • Use the documentation.
  • Use the help widget inside the product.
  • Open an issue in GitHub.

License

Provided under the Apache 2.0. See LICENSE for details.

Copyright 2022, Cisco

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cisco-telescope-1.1.3.tar.gz (19.6 kB view details)

Uploaded Source

Built Distribution

cisco_telescope-1.1.3-py3-none-any.whl (24.3 kB view details)

Uploaded Python 3

File details

Details for the file cisco-telescope-1.1.3.tar.gz.

File metadata

  • Download URL: cisco-telescope-1.1.3.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/35.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/4.11.4 keyring/23.5.1 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for cisco-telescope-1.1.3.tar.gz
Algorithm Hash digest
SHA256 29604bbf124176d19005021fc4f370feb9f2d81c4d989e9ff79cda5b6b981d65
MD5 07f76018f98250f133399946a73608c1
BLAKE2b-256 e2de89208b4f6c94485303764aceeb6fdc3daff1f0f94b28c3986a4cc0c5e468

See more details on using hashes here.

File details

Details for the file cisco_telescope-1.1.3-py3-none-any.whl.

File metadata

  • Download URL: cisco_telescope-1.1.3-py3-none-any.whl
  • Upload date:
  • Size: 24.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/35.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/4.11.4 keyring/23.5.1 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for cisco_telescope-1.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 85a7cf2888c6b1c04f59da1d12709d5d48b9cd71359aea3c6b8824862b061dd9
MD5 ebcbcc96308c672a7424b4f4c2169eab
BLAKE2b-256 0d0cd243245262cd5b16a3e01df5c9db37d37b52a8d9f6e410549963d1b6f4fd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page