maxfrerichs / t3-prometheus-client
TYPO3 client for Prometheus
Installs: 71
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Shell
Type:typo3-cms-extension
Requires
- php: >=8.2
- promphp/prometheus_client_php: ^2.13
- typo3/cms-core: ^12.4 || ^13.4
- typo3/cms-reports: ^12.4 || ^13.4
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.51
- phpstan/phpstan: ^2.1
- phpunit/phpunit: ^10.0
- typo3/coding-standards: ^0.5.5
- typo3/tailor: ^1.6
- typo3/testing-framework: ^8.0
README
About this extension:
This extension provides a client for Prometheus to scrape timeseries data from system status informations (more info on "How it works") and exposes them on a configuralble endpoint.
Requirements
- TYPO3 12.4 or higher
- PHP 8.0 or higher
- Prometheus
How this extension works
- TYPO3 has a system extension called "cms-reports" that provides information about your TYPO3 system and the enviroment. While system reports are displayed in a backend module, reports are not exported in any way.
- "cms-reports" provides some kind of an "API" that can be used to register status providers in your installation. Every status provider can provide one or multiple status reports.
- Every status report consists of title, severity, message and value.
- severity is a numeric value ranging from -1 (info) to 2 (error) that can be used to generate gauge metrics. "Gauge" is one of the core metric types offered by the Prometheus client library.
How to use:
- Install extension with
composer req maxfrerichs/t3-prometheus-client
in your TYPO3 distribution - Install and configure prometheus. Please refer to the Prometheus documentation for more information regarding this topic.
- Configure the extension. The "DevOps' way to use Prometheus is to expose the app on a separate, non-public port and deploy Prometheus on the same webserver. Exposing the TYPO3 instance on a separate port can be achieved with a VirtualHost config (if you're using apache2). However, you can also configure this extension to provide Basic authentication or Token-based authentication, so you can expose the /metrics endpoint securely to the public, if needed.
- Configure your host. If you want to run Prometheus on the same server, you need to create a VirtualHost config for the non-public port. An example for this config can be found in Examples/config/other-vhosts.example.config Make sure to set a Host header, otherwise TYPO3 will throw an Exception.
- Make sure that the Prometheus config and the extension config match.
Known issues
- Using the StatusRegistry class directly via Dependency Injection causes Extbase frontend plugins to break, as ConfigurationManager is invoked at some point without $GLOBALS['TYPO3_REQUEST'] being set, causing it to fallback to BackendConfigurationManager, while we are in frontend. This prevents us from automatically aggregating all registered Status reports as Prometheus metrics and some status reports relying on Extbase functionality cannot be used.
API[WIP]
Registration of custom StatusProvider classes is possible by creating event listeners listening to the RegisterStatusProviderEvent and call $event->injectStatusProvider() in your event listener.
TODO:
- Add support for other metric types (optional).
- Add more metrics
- Write more documentation
Contribution:
Every contribution is appreciated. Open an issue, tell me your ideas, request a specific feature, report bugs and so on. You can also write an e-mail to "maxfrerichs@gmx.de" or "max.frerichs@lfda.de" :-)