Integration
PAT token​
- Login with admin user,
- Go to [setting],
- Generate
PAT
with name, - Copy
PAT
token.
Collection​
API for import raw data​
- Python
- Typescript
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()
(under construction)
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.