Skip to main content

Connect your Plain app to Plain Cloud via OTLP export.

Project description

plain.connect

Connect your Plain app to Plain Cloud via OTLP export.

Overview

You can use plain.connect to export traces, metrics, and logs from your Plain app to Plain Cloud. The framework already instruments itself with OpenTelemetry spans and histograms — plain.connect activates them by providing the OTLP exporters and bridges Python's logging module into OTLP log records.

Set one environment variable and your app starts pushing telemetry:

PLAIN_CONNECT_EXPORT_TOKEN=your-token

If CONNECT_EXPORT_TOKEN is not set, the package is a no-op — safe to install without configuration.

Settings

Setting Default Description
CONNECT_EXPORT_URL "https://ingest.plainframework.com" OTLP ingest endpoint (override to use a custom endpoint)
CONNECT_EXPORT_TOKEN "" Auth token for the export endpoint
CONNECT_TRACE_SAMPLE_RATE 1.0 Probability of exporting a trace (0.0–1.0)
CONNECT_EXPORT_LOGS True Set to False to disable OTLP log export
CONNECT_LOG_LEVEL "INFO" Minimum severity exported via OTLP logs (level name or int)

All settings can be set via PLAIN_-prefixed environment variables or in app/settings.py.

Sampling

By default, all traces are exported. To reduce volume, set a sample rate:

CONNECT_TRACE_SAMPLE_RATE = 0.1  # Export 10% of traces

Metrics are not affected by sampling — histograms aggregate in-process and export periodically regardless of the trace sample rate.

What gets exported

Traces — HTTP request spans and database query spans instrumented by the framework.

Metrics — OTel histograms like db.client.query.duration, aggregated and pushed every 60 seconds.

Logs — Records from the plain and app loggers, plus anything propagating to the root logger, are bridged into OTLP log records and exported with trace_id / span_id set from the active span. The minimum severity is controlled by CONNECT_LOG_LEVEL (default INFO); the root logger's level is widened to that floor when needed so libraries using getLogger(__name__) reach the exporter. To prevent feedback loops, two sources are skipped on the export path: the opentelemetry namespace, and any record emitted from inside the OTLP exporter's background thread (e.g. urllib3 connection errors raised by the exporter's own HTTP call). Your application's urllib3 logs are exported normally.

Observer coexistence

If plain.observer is also installed, both work simultaneously. plain.connect handles production export while observer provides the local dev toolbar and admin trace viewer. Observer detects the existing TracerProvider and layers its sampler and span processor on top.

FAQs

Do I need plain.observer to use plain.connect?

No. plain.connect works independently. Observer is for local dev tooling; plain.connect is for production export.

What happens if the export endpoint is unreachable?

The OTLP exporters batch and retry automatically. If the endpoint is down, telemetry is dropped after retries — it does not block your application.

Does this add latency to requests?

No. Trace spans are exported in a background thread via BatchSpanProcessor. Metrics are flushed periodically by a background thread. Neither blocks request handling.

Installation

# app/settings.py
INSTALLED_PACKAGES = [
    "plain.connect",
    # ...
]

Place plain.connect before plain.observer in INSTALLED_PACKAGES so it sets up the TracerProvider first.

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

plain_connect-0.3.4.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

plain_connect-0.3.4-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

Details for the file plain_connect-0.3.4.tar.gz.

File metadata

  • Download URL: plain_connect-0.3.4.tar.gz
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plain_connect-0.3.4.tar.gz
Algorithm Hash digest
SHA256 d889c684705059406359af720100ddd17362cff570c8584cc44aba46422747b0
MD5 a3f0900de974c1da9555a9d6e5cd20e8
BLAKE2b-256 74b5993f6b1b37f210071b5c4ba7459e5c7d405a5d6ebd094e69e4f65b8e2e3d

See more details on using hashes here.

File details

Details for the file plain_connect-0.3.4-py3-none-any.whl.

File metadata

  • Download URL: plain_connect-0.3.4-py3-none-any.whl
  • Upload date:
  • Size: 12.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plain_connect-0.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 c4254b8813eac4f623d746f508c90c2f4bce3bcec2e3c6272d0f204fc1857a15
MD5 824909a91fd0c8c83044bcc652174bf8
BLAKE2b-256 ba6058520ca89567f4ad03fa8174bfe6ba14d04a255a9f63140cf43aa11e1458

See more details on using hashes here.

Supported by

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