RunIntegration
v0.0.1

Event represents each individual run of an integration. This is a noisy event.

Consumer / Producer Diagram

RunIntegration Schema (avsc)
{
  "type": "record",
  "name": "integration.RunIntegrations",
  "fields": [
    {
      "name": "idempotencyKey",
      "type": "string"
    },
    {
      "name": "pluginID",
      "type": "string"
    },
    {
      "name": "orgID",
      "type": ["null", "string"],
      "default": null
    },
    {
      "name": "appID",
      "type": ["null", "string"],
      "default": null
    },
    {
      "name": "pluginName",
      "type": ["null", "string"],
      "default": null
    },
    {
      "name": "timestamp",
      "type": [
        "null",
        {
          "type": "long",
          "logicalType": "timestamp-millis"
        }
      ],
      "default": null
    },
    {
      "name": "cacheHit",
      "type": ["null", "boolean"],
      "default": null
    },
    {
      "name": "outboundRequestMade",
      "type": ["null", "boolean"],
      "default": null
    },
    {
      "name": "eventMetadata",
      "type": ["null", "string"],
      "default": null
    }
  ]
}
Edit this pageLast updated on 2025/1/8