Configuring the qryn polyglot backend

Enter the following account details in Odigos UI:

  • Name: Choose a name for this backend (e.g. qryn)
  • API Username: The HTTP Basic Auth username for your qryn instance
  • API Password: The HTTP Basic Auth password for your qryn instance
  • API URL: The API Endpoint for for your qryn instance (e.g. http://qryn.local:3100)

Adding a Destination to Odigos

Odigos makes it simple to add and configure destinations, allowing you to select the specific signals [traces/logs/metrics] that you want to send to each destination. There are two primary methods for configuring destinations in Odigos:

  1. Using the UI
    To add a destination via the UI, follow these steps:
    • Use the Odigos CLI to access the UI: Odigos UI
    odigos ui
    
  • In the left sidebar, navigate to the Destination page.

  • Click Add New Destination

  • Select qryn and follow the on-screen instructions.

  1. Using kubernetes manifests

Save the YAML below to a file (e.g., destination.yaml) and apply it using kubectl:

kubectl apply -f destination.yaml
apiVersion: odigos.io/v1alpha1
kind: Destination
metadata:
  name: qryn-oss-example
  namespace: odigos-system
spec:
  data:
    QRYN_OSS_URL: <API Url>
    # QRYN_OSS_USERNAME: <Basic auth username>
    # QRYN_OSS_RESOURCE_TO_TELEMETRY_CONVERSION: <Convert container attributes to labels [Yes, No]>
    # QRYN_OSS_ADD_EXPORTER_NAME: <Add exporter name to labels [Yes, No]>
    # Note: The commented fields above are optional.
  destinationName: qryn-oss
  # Uncomment the secretRef below if you are using the optional Secret.
  # secretRef:
  #   name: qryn-oss-secret

  signals:
  - TRACES
  - METRICS
  - LOGS
  type: qryn-oss

---
# The following Secret is optional. Uncomment the entire block if you need to use it.
# apiVersion: v1
# data:
#   QRYN_OSS_PASSWORD: <base64 Basic auth password>
# kind: Secret
# metadata:
#   name: qryn-oss-secret
#   namespace: odigos-system
# type: Opaque