Skip to content

Send data from Tealium EventStream to Monita

Tealium EventStream can deliver the events flowing through your Customer Data Hub to Monita using the standard Webhook connector.

  • An EventStream profile receiving events.
  • Your Monita property token and vendor names — see the Monita-side setup.
  1. In your Tealium profile, go to Sources/Connectors → Add Connector → Webhook and choose the Send Custom Request action.

  2. Configure the request:

    • Method: POST

    • URL: https://collect.monita.ai/api/v1/

    • Headers: token: <your property token>, Content-Type: application/json

    • Body, mapped from event attributes:

      {
      "s": "tealium",
      "dm": "tms",
      "e": "{{tealium_event}}",
      "vn": "Tealium EventStream",
      "u": "{{url}}",
      "do": "www.your-domain.com",
      "sid": "{{tealium_session_id}}",
      "cid": "{{customer_id}}",
      "dt": [
      {
      "event": "{{tealium_event}}",
      "order_total": "{{order_total}}"
      }
      ]
      }

      Required: the token header, vn and e. Put the attributes you want to validate inside dt — that’s what data validation alerts evaluate.

  3. Attach the connector to the event feed you want monitored (a broad feed is fine to start), then save and publish.

  1. Tealium’s connector logs should show 204 responses (401 = wrong or missing token header).
  2. In Monita, events appear in the property’s Visualisation view within a minute or two.