> ## Documentation Index
> Fetch the complete documentation index at: https://docs.odigos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Axiom

> Configuring the Axiom backend (Managed)

### Getting Started

<img src="https://d15jtxgb40qetw.cloudfront.net/axiom.svg" alt="axiom" className="not-prose h-20" />

1. [Register](https://app.axiom.co/register)/[Login](https://app.axiom.co/login) to Axiom.
2. Navigate to the [Axiom Datasets](https://app.axiom.co/settings/datasets) page, create a dataset and copy its name.
3. Navigate to the [Axiom API Tokens](https://app.axiom.co/settings/api-tokens) page, and generate a new API Token.

### Configuring Destination Fields

<Accordion title="Supported Signals:">
  ✅ Traces
  ❌ Metrics
  ✅ Logs
  ❌ Profiles
</Accordion>

* **AXIOM\_DATASET** `string` : Dataset.
  * This field is required
* **AXIOM\_API\_TOKEN** `string` : Axiom API token.
  * This field is required

### Adding Destination to Odigos

There are two primary methods for configuring destinations in Odigos:

##### **Using the UI**

<Steps>
  <Step>
    Use the [Odigos CLI](https://docs.odigos.io/cli/odigos_ui) to access the UI

    ```bash theme={null}
    odigos ui
    ```
  </Step>

  <Step>
    Click on `Add Destination`, select `Axiom` and follow the on-screen instructions
  </Step>
</Steps>

##### **Using Kubernetes manifests**

<Steps>
  <Step>
    Save the YAML below to a file (e.g. `axiom.yaml`)

    ```yaml theme={null}
    apiVersion: odigos.io/v1alpha1
    kind: Destination
    metadata:
      name: axiom-example
      namespace: odigos-system
    spec:
      data:
        AXIOM_DATASET: <Dataset>
      destinationName: axiom
      secretRef:
        name: axiom-secret
      signals:
      - TRACES
      - LOGS
      type: axiom

    ---

    apiVersion: v1
    data:
      AXIOM_API_TOKEN: <Base64 Axiom API token>
    kind: Secret
    metadata:
      name: axiom-secret
      namespace: odigos-system
    type: Opaque
    ```
  </Step>

  <Step>
    Apply the YAML using `kubectl`

    ```bash theme={null}
    kubectl apply -f axiom.yaml
    ```
  </Step>
</Steps>
