Observe

Description

This Observe destination can be used to send metrics, logs, and traces to an Observe account.

Supported Types

Logs
Metrics
Traces
Bindplane Collector

v1.41.0+

Prerequisites

By default, The Observe platform will not display metrics and logs. You can enable metrics and logs by selecting "Applications" and choosing "Manage" on the OpenTelemetry application. The manage page will let you toggle support for metrics and logs.

Configuration

Field
Description

Customer ID

A 12-digit number that identifies your account and is displayed in the URL you use to log into Observe. You can learn more here.

Token

A token with write-access to a Datastream in your Observe account. You can learn more here.

NOTE

The Observe platform relies on the "Timestamp" field for indexing logs. You can use the Parse Timestamp processor to parse your application's timestamps if they are not already parsed by your configured sources. Most Bindplane sources will handle timestamps correctly without additional configuration.

This destination supports the following retry and queuing settings:

Sending Queue
Persistent Queue
Retry on Failure

Example Configuration

This example configuration will forward metrics, traces, and logs to the account 165866210346 using the token we created in the Observe web interface.

Web Interface

Bindplane docs - Observe - image 1
Bindplane docs - Observe - image 2

Standalone Destination

apiVersion: bindplane.observiq.com/v1
kind: Destination
metadata:
  name: Observe
spec:
  type: observeinc
  parameters:
    - name: customer_id
      value: '165866210346'
    - name: token
      value: (sensitive)
      sensitive: true
    - name: retry_on_failure_enabled
      value: true
    - name: retry_on_failure_initial_interval
      value: 5
    - name: retry_on_failure_max_interval
      value: 30
    - name: retry_on_failure_max_elapsed_time
      value: 300
    - name: sending_queue_enabled
      value: true
    - name: sending_queue_num_consumers
      value: 10
    - name: sending_queue_queue_size
      value: 5000
    - name: persistent_queue_enabled
      value: true
    - name: persistent_queue_directory
      value: $OIQ_OTEL_COLLECTOR_HOME/storage

Last updated

Was this helpful?