├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── DependencyInjection ├── AdapterCompilerPass.php ├── Configuration.php └── SoclozMonitoringExtension.php ├── LICENSE ├── Listener ├── Exceptions.php ├── Profiler.php └── RequestId.php ├── Notify ├── Logger.php ├── Mailer.php └── StatsD │ ├── StatsD.php │ └── StatsDInterface.php ├── Profiler ├── Parser │ ├── Parser.php │ └── ParserInterface.php ├── Probe.php └── Xhprof.php ├── README.md ├── RequestId ├── Adapters │ └── Guzzle.php ├── Generator.php ├── Monolog │ └── Processor.php └── RequestId.php ├── Resources ├── config │ ├── exceptions.xml │ ├── logger.xml │ ├── mailer.xml │ ├── profiler.xml │ ├── request_id.xml │ └── statsd.xml └── views │ └── Notify │ └── exception.html.twig ├── SoclozMonitoringBundle.php ├── Tests ├── Exceptions │ └── ExceptionsTest.php ├── Fixtures │ ├── Controller │ │ └── TestController.php │ ├── Exception │ │ └── ExceptionChild.php │ ├── SoclozMonitoringTestBundle.php │ └── app │ │ ├── TestKernel.php │ │ └── config │ │ ├── default.yml │ │ └── routing.yml ├── Listener │ └── ExceptionsTest.php ├── Mocks │ ├── MailerMock.php │ └── StatsDMock.php ├── Profiler │ ├── ProfilerTest.php │ └── StatsDTest.php ├── RequestId │ ├── Adapters │ │ └── GuzzleTest.php │ ├── HeaderTest.php │ └── Monolog │ │ └── ProcessorTest.php ├── Transformer │ └── MailerTransformerTest.php ├── WebTestCase.php └── bootstrap.php ├── Transformer └── MailerTransformer.php ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DependencyInjection/AdapterCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/DependencyInjection/AdapterCompilerPass.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/SoclozMonitoringExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/DependencyInjection/SoclozMonitoringExtension.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /Listener/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Listener/Exceptions.php -------------------------------------------------------------------------------- /Listener/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Listener/Profiler.php -------------------------------------------------------------------------------- /Listener/RequestId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Listener/RequestId.php -------------------------------------------------------------------------------- /Notify/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Notify/Logger.php -------------------------------------------------------------------------------- /Notify/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Notify/Mailer.php -------------------------------------------------------------------------------- /Notify/StatsD/StatsD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Notify/StatsD/StatsD.php -------------------------------------------------------------------------------- /Notify/StatsD/StatsDInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Notify/StatsD/StatsDInterface.php -------------------------------------------------------------------------------- /Profiler/Parser/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Profiler/Parser/Parser.php -------------------------------------------------------------------------------- /Profiler/Parser/ParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Profiler/Parser/ParserInterface.php -------------------------------------------------------------------------------- /Profiler/Probe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Profiler/Probe.php -------------------------------------------------------------------------------- /Profiler/Xhprof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Profiler/Xhprof.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/README.md -------------------------------------------------------------------------------- /RequestId/Adapters/Guzzle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/RequestId/Adapters/Guzzle.php -------------------------------------------------------------------------------- /RequestId/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/RequestId/Generator.php -------------------------------------------------------------------------------- /RequestId/Monolog/Processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/RequestId/Monolog/Processor.php -------------------------------------------------------------------------------- /RequestId/RequestId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/RequestId/RequestId.php -------------------------------------------------------------------------------- /Resources/config/exceptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Resources/config/exceptions.xml -------------------------------------------------------------------------------- /Resources/config/logger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Resources/config/logger.xml -------------------------------------------------------------------------------- /Resources/config/mailer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Resources/config/mailer.xml -------------------------------------------------------------------------------- /Resources/config/profiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Resources/config/profiler.xml -------------------------------------------------------------------------------- /Resources/config/request_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Resources/config/request_id.xml -------------------------------------------------------------------------------- /Resources/config/statsd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Resources/config/statsd.xml -------------------------------------------------------------------------------- /Resources/views/Notify/exception.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Resources/views/Notify/exception.html.twig -------------------------------------------------------------------------------- /SoclozMonitoringBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/SoclozMonitoringBundle.php -------------------------------------------------------------------------------- /Tests/Exceptions/ExceptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Exceptions/ExceptionsTest.php -------------------------------------------------------------------------------- /Tests/Fixtures/Controller/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Fixtures/Controller/TestController.php -------------------------------------------------------------------------------- /Tests/Fixtures/Exception/ExceptionChild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Fixtures/Exception/ExceptionChild.php -------------------------------------------------------------------------------- /Tests/Fixtures/SoclozMonitoringTestBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Fixtures/SoclozMonitoringTestBundle.php -------------------------------------------------------------------------------- /Tests/Fixtures/app/TestKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Fixtures/app/TestKernel.php -------------------------------------------------------------------------------- /Tests/Fixtures/app/config/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Fixtures/app/config/default.yml -------------------------------------------------------------------------------- /Tests/Fixtures/app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Fixtures/app/config/routing.yml -------------------------------------------------------------------------------- /Tests/Listener/ExceptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Listener/ExceptionsTest.php -------------------------------------------------------------------------------- /Tests/Mocks/MailerMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Mocks/MailerMock.php -------------------------------------------------------------------------------- /Tests/Mocks/StatsDMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Mocks/StatsDMock.php -------------------------------------------------------------------------------- /Tests/Profiler/ProfilerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Profiler/ProfilerTest.php -------------------------------------------------------------------------------- /Tests/Profiler/StatsDTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Profiler/StatsDTest.php -------------------------------------------------------------------------------- /Tests/RequestId/Adapters/GuzzleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/RequestId/Adapters/GuzzleTest.php -------------------------------------------------------------------------------- /Tests/RequestId/HeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/RequestId/HeaderTest.php -------------------------------------------------------------------------------- /Tests/RequestId/Monolog/ProcessorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/RequestId/Monolog/ProcessorTest.php -------------------------------------------------------------------------------- /Tests/Transformer/MailerTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/Transformer/MailerTransformerTest.php -------------------------------------------------------------------------------- /Tests/WebTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/WebTestCase.php -------------------------------------------------------------------------------- /Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Tests/bootstrap.php -------------------------------------------------------------------------------- /Transformer/MailerTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/Transformer/MailerTransformer.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoCloz/SoclozMonitoringBundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------