gurento/kafka-consumer-filament

Filament UI package for gurento/kafka-consumer.

Maintainers

Package info

github.com/fglend/kafka-consumer-filament

pkg:composer/gurento/kafka-consumer-filament

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.1 2026-04-22 08:30 UTC

This package is not auto-updated.

Last update: 2026-04-23 06:43:17 UTC


README

gurento/kafka-consumer-filament is the Filament admin UI companion for gurento/kafka-consumer.

It provides a ready Kafka operations interface for:

  • managing topic configurations
  • viewing consume logs
  • running re-consume actions from UI

Compatible with Filament v4 and v5.

Installation

composer require gurento/kafka-consumer gurento/kafka-consumer-filament

Register Plugin

In your Filament panel provider:

use Gurento\KafkaConsumerFilament\Filament\Plugins\KafkaConsumerPlugin;

return $panel
    ->plugins([
        KafkaConsumerPlugin::make(),
    ]);

What It Registers

  • Kafka Topics resource
  • CRUD pages for topic mappings
  • Consume Logs relation manager
  • operations actions (for re-consume/health workflows depending on your setup)

Typical Workflow

  1. Open Kafka Topics in Filament.
  2. Create topic mapping:
    • topic name
    • target model class
    • upsert key
    • field mappings
  3. Run consumer command:
php artisan gurento:kafka-consume
  1. Monitor logs in the resource relation manager.
  2. Re-consume failed messages when needed.

Security and Access

This package only provides UI classes.

You should define policies/permissions in host app to restrict who can:

  • edit topic mappings
  • run replay actions
  • inspect payload/error logs

Troubleshooting

Resource not visible

  • Ensure plugin is added to the same panel you are using.
  • Run php artisan optimize:clear.

Class not found errors

  • Confirm both packages are installed.
  • Run composer dump-autoload.

License

MIT