> ## 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.

# Gigapipe

> Configuring the Gigapipe backend (Managed)

### Getting Started

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

Access your Gigapipe account and generate a **Scoped Token** for Odigos

<Frame>
  <img src="https://i.imgur.com/zzmufhk.png" alt="Gigapipe Token" />
</Frame>

### Configuring Destination Fields

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

* **QRYN\_API\_SECRET** `string` : API Secret. The API Secret for your Gigapipe Account
  * This field is required
* **QRYN\_API\_KEY** `string` : API Key. The API Token for your Gigapipe Account
  * This field is required
* **QRYN\_URL** `string` : API Url. The API Endpoint for your Gigapipe Account
  * This field is required
  * Example: `https://your-account.gigapipe.com`
* **QRYN\_RESOURCE\_TO\_TELEMETRY\_CONVERSION** `boolean` : Convert container attributes to labels.
  * This field is optional and defaults to `True`
* **QRYN\_ADD\_EXPORTER\_NAME** `boolean` : Add exporter name to labels.
  * This field is optional and defaults to `True`

### 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 `Gigapipe` and follow the on-screen instructions
  </Step>
</Steps>

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

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

    ```yaml theme={null}
    apiVersion: odigos.io/v1alpha1
    kind: Destination
    metadata:
      name: qryn-example
      namespace: odigos-system
    spec:
      data:
        QRYN_API_KEY: <API Key>
        QRYN_URL: <API Url>
        # Note: The commented fields below are optional.
        # QRYN_RESOURCE_TO_TELEMETRY_CONVERSION: <Convert container attributes to labels (default: True)>
        # QRYN_ADD_EXPORTER_NAME: <Add exporter name to labels (default: True)>
      destinationName: qryn
      secretRef:
        name: qryn-secret
      signals:
      - TRACES
      - METRICS
      - LOGS
      type: qryn

    ---

    apiVersion: v1
    data:
      QRYN_API_SECRET: <Base64 API Secret>
    kind: Secret
    metadata:
      name: qryn-secret
      namespace: odigos-system
    type: Opaque
    ```
  </Step>

  <Step>
    Apply the YAML using `kubectl`

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