Skip to content

Adding Jobs

Guide for developers who want to extend Mend with new job types.

This guide shows you how to add a new job type to the Mend processing engine.

  1. Define the job type in internal/models/job.go
  2. Create a processor in internal/processor/
  3. Add handler in internal/api/handlers/
  4. Register route in internal/api/routes/
  5. Update worker to handle new job type

Coming soon - detailed implementation guide.