Skip to main content
Version: 15.2.14 🔚

Integration

PAT token​

  • Login with admin user,
  • Go to [setting],
  • Generate PAT with name,
  • Copy PAT token.

Collection​

API for import raw data​

headers["authorization"] = "pat " + token
url = "http://localhost:8000"
event_data = {
'code': event_code, # raw topic name
'data': data # raw topic data
}

response = requests.post(url + 'pipeline/data', data=json.dumps(event_data), headers=headers)
return response.json()
info

Or use /pipeline/data/async, it returns once data saved and trigger pipelines processing asynchronously.

Third Party BI​

info

Connect BI to Presto or storage directly.