PostHog / plugin-server

Service to process and save PostHog events, supporting JS/TS plugins at that
https://posthog.com
8 stars 5 forks source link

Trigger plugin jobs via Celery #537

Closed yakkomajuri closed 3 years ago

yakkomajuri commented 3 years ago

Changes

Allows plugin jobs to be triggered via the PostHog UI. This needs a supporting PR to posthog that's coming soon.

How it works:

A few things were built in on the posthog side as well as here that aren't yet natively supported but will help us going forward. The most important of these is the job operation, which is currently just being dumped in the payload if devs want to do anything with it. In the future this will allow us to do things like start and stop longer running jobs like imports and exports.

Checklist

yakkomajuri commented 3 years ago

Addressed @neilkakkar