ToolJet/docs/versioned_docs/version-3.16.0-LTS/tj-setup/observability/last9.md
Aditya Joshi 741e5df1d3
[docs]: Add Observability Docs (#14871)
* [docs]: Add documentation for setting up observability using Datadog

* Updated doc flow for observability using datadog

* Updated doc flow for observability using datadog

* [docs]: Add docs for setting up observability using New Relic

* [docs]: Add docs for observability setup using Grafana

* Add intro line for setting up observability using Grafana docs

* [docs]: Add changes to Observability docs

* [docs]: Add documentation for observability using Last9

* [docs]: Fixed typo on setup page

* [docs]: Updated setup from observability docs

* [docs]: Changes in Observability docs wrt comments

* [docs]: Added screenshot for observability
2026-01-13 11:30:58 +05:30

1.4 KiB
Raw Blame History

id title
last9 Last9

Last9 is an observability platform that provides analysis of metrics, traces, and logs. ToolJet integrates with Last9 using OpenTelemetry by exporting telemetry data directly to Last9s OTLP endpoints. This guide walks through setting up observability using Last9.

To use OpenTelemetry with Last9, the required OTLP endpoint must be enabled at the organization level by the Last9 team. Navigate to Integrations > OpenTelemetry, click Connect, and submit a request via Request OpenTelemetry Endpoint Setup.

Setting Up Observability Using Last9

Step 1: Get the Credentials From Last9

Navigate to Integrations > OpenTelemetry, click Connect and Copy the the following values:

  • Endpoint URL
  • Auth Header

Step 2: Set the Environment Variables in ToolJet

Set the following environment variables in your ToolJet instance to enable OpenTelemetry.

Replace <YOUR-LAST9-ENDPOINT> and <YOUR-LAST9-AUTH-HEADER> with the endpoint URL and authentication header obtained in Step 1.

ENABLE_OTEL=true
OTEL_SERVICE_NAME=tooljet

# Last9 Agent endpoints (container-to-container)
OTEL_EXPORTER_OTLP_TRACES=https://<YOUR-LAST9-ENDPOINT>/v1/traces
OTEL_EXPORTER_OTLP_METRICS=https://<YOUR-LAST9-ENDPOINT>/v1/metrics
OTEL_EXPORTER_OTLP_HEADERS=<YOUR-LAST9-AUTH-HEADER>

# Optional but useful while debugging
OTEL_LOG_LEVEL=debug

Your ToolJet instance will now begin streaming traces and metrics to Last9.