Sign-up to catch a live replay of “Orchestrating Agentic AI Workflows” from DevWeek

Changelog

Updates and improvements to Inngest

February 12, 2025

Prometheus metrics export integration

You can now export your Inngest metrics to Prometheus. This enables you and your team to use Inngest's metrics in your existing monitoring and alerting systems.

Several metrics are now available to export, including:

  • inngest_function_run_scheduled_total
  • inngest_function_run_started_total
  • inngest_function_run_ended_total
  • Read the full list of metrics in the docs.

To get started, visit the new Prometheus page in the "Integrations" section of the Inngest dashboard and follow the instructions to get the scrape config for the environment that you want to export metrics from.

It's available on all paid plans today. Read more information in the docs.

February 12, 2025

Webhook management API

The new webhooks management API endpoints are now available as part of the Inngest REST API.

You can now create, update, and delete webhooks for your Inngest account, including updating transform functions. This enables you to:

  • Manage webhook transforms within your codebase, including adding unit tests for your transforms.
  • Programmatically create, update, and delete webhooks for customers or integrations.

To help you get started, we created a webhook transform sync demo repo that shows how you can test and sync transforms between your codebase and Inngest.

Read more information in the API docs.

January 28, 2025

Archive events

You can now archive events in your Inngest environment. This is useful if you want to hide old events that you no longer use.

Archiving events does not prevent them from being received, they only hide them from your dashboard. If an archived event is received, it will be unarchived automatically.

January 20, 2025

Postgres support for self-hosted Inngest (experimental)

Postgres support is now available for self-hosted Inngest. This enables you to use Postgres as your event storage backend, instead of the default SQLite. This will be marked as experimental until additional testing is completed and feedback is received.

Available in the Inngest CLI v1.4.0 with the --postgres-uri flag.

November 25, 2024

New inngest/function.cancelled event

A new system event has been added to allow you to write functions that run after other function runs are cancelled. This enables you to handle cancelled runs gracefully.