├── Broker ├── AmqpLibFactory.php ├── BlackholePublisher.php ├── FactoryInterface.php ├── PeclFactory.php ├── Publisher.php └── UrlParserTrait.php ├── CHANGELOG.md ├── Command └── SwarrotCommand.php ├── DataCollector └── SwarrotDataCollector.php ├── DependencyInjection ├── Compiler │ └── ProviderCompilerPass.php ├── Configuration.php └── SwarrotExtension.php ├── Event └── MessagePublishedEvent.php ├── LICENSE ├── Processor ├── Ack │ └── AckProcessorConfigurator.php ├── Doctrine │ ├── ConnectionProcessorConfigurator.php │ └── ObjectManagerProcessorConfigurator.php ├── ExceptionCatcher │ └── ExceptionCatcherProcessorConfigurator.php ├── Insomniac │ └── InsomniacProcessorConfigurator.php ├── InstantRetry │ └── InstantRetryProcessorConfigurator.php ├── MaxExecutionTime │ └── MaxExecutionTimeProcessorConfigurator.php ├── MaxMessages │ └── MaxMessagesProcessorConfigurator.php ├── MemoryLimit │ └── MemoryLimitProcessorConfigurator.php ├── ProcessorConfiguratorEnableAware.php ├── ProcessorConfiguratorExtrasAware.php ├── ProcessorConfiguratorInterface.php ├── Retry │ └── RetryProcessorConfigurator.php ├── ServicesResetter │ └── ServicesResetterProcessorConfigurator.php └── SignalHandler │ └── SignalHandlerProcessorConfigurator.php ├── README.md ├── Resources ├── config │ ├── collector.xml │ └── swarrot.xml └── views │ └── Collector │ └── collector.html.twig ├── SwarrotBundle.php └── composer.json /Broker/AmqpLibFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Broker/AmqpLibFactory.php -------------------------------------------------------------------------------- /Broker/BlackholePublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Broker/BlackholePublisher.php -------------------------------------------------------------------------------- /Broker/FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Broker/FactoryInterface.php -------------------------------------------------------------------------------- /Broker/PeclFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Broker/PeclFactory.php -------------------------------------------------------------------------------- /Broker/Publisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Broker/Publisher.php -------------------------------------------------------------------------------- /Broker/UrlParserTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Broker/UrlParserTrait.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Command/SwarrotCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Command/SwarrotCommand.php -------------------------------------------------------------------------------- /DataCollector/SwarrotDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/DataCollector/SwarrotDataCollector.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/ProviderCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/DependencyInjection/Compiler/ProviderCompilerPass.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/SwarrotExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/DependencyInjection/SwarrotExtension.php -------------------------------------------------------------------------------- /Event/MessagePublishedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Event/MessagePublishedEvent.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /Processor/Ack/AckProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/Ack/AckProcessorConfigurator.php -------------------------------------------------------------------------------- /Processor/Doctrine/ConnectionProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/Doctrine/ConnectionProcessorConfigurator.php -------------------------------------------------------------------------------- /Processor/Doctrine/ObjectManagerProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/Doctrine/ObjectManagerProcessorConfigurator.php -------------------------------------------------------------------------------- /Processor/ExceptionCatcher/ExceptionCatcherProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/ExceptionCatcher/ExceptionCatcherProcessorConfigurator.php -------------------------------------------------------------------------------- /Processor/Insomniac/InsomniacProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/Insomniac/InsomniacProcessorConfigurator.php -------------------------------------------------------------------------------- /Processor/InstantRetry/InstantRetryProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/InstantRetry/InstantRetryProcessorConfigurator.php -------------------------------------------------------------------------------- /Processor/MaxExecutionTime/MaxExecutionTimeProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/MaxExecutionTime/MaxExecutionTimeProcessorConfigurator.php -------------------------------------------------------------------------------- /Processor/MaxMessages/MaxMessagesProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/MaxMessages/MaxMessagesProcessorConfigurator.php -------------------------------------------------------------------------------- /Processor/MemoryLimit/MemoryLimitProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/MemoryLimit/MemoryLimitProcessorConfigurator.php -------------------------------------------------------------------------------- /Processor/ProcessorConfiguratorEnableAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/ProcessorConfiguratorEnableAware.php -------------------------------------------------------------------------------- /Processor/ProcessorConfiguratorExtrasAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/ProcessorConfiguratorExtrasAware.php -------------------------------------------------------------------------------- /Processor/ProcessorConfiguratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/ProcessorConfiguratorInterface.php -------------------------------------------------------------------------------- /Processor/Retry/RetryProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/Retry/RetryProcessorConfigurator.php -------------------------------------------------------------------------------- /Processor/ServicesResetter/ServicesResetterProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/ServicesResetter/ServicesResetterProcessorConfigurator.php -------------------------------------------------------------------------------- /Processor/SignalHandler/SignalHandlerProcessorConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Processor/SignalHandler/SignalHandlerProcessorConfigurator.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/collector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Resources/config/collector.xml -------------------------------------------------------------------------------- /Resources/config/swarrot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Resources/config/swarrot.xml -------------------------------------------------------------------------------- /Resources/views/Collector/collector.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/Resources/views/Collector/collector.html.twig -------------------------------------------------------------------------------- /SwarrotBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/SwarrotBundle.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarrot/SwarrotBundle/HEAD/composer.json --------------------------------------------------------------------------------