integration_report
5 sites
No security coverage
Drupal module to provide statuses for integration services that can be intermittent and unstable.
The development of this module takes place on GitHub: https://github.com/AlexSkrypnyk/integration_report
This is a successor of the Status Report module.
Why?
If your website has 3rd party integration with one or multiple 3rd party services, such as API endpoints, this module allows to call the endpoints and see all the response information within a single page.
You may also implement status check on behalf of any other Drupal module that
does not have such information page.
Features
- Single page for all status checks.
- <iframe>-based status checks (useful for SSO with redirects).
Getting started
- Extend
IntegrationReportclass with your 3rd-party endpoint request methods. - Register this class as a service in your custom module and tag it:
services: example_integration_report: class: Drupal\example\ExampleIntegrationReport tags: - { name: integration_report } - Go to
/admin/reports/integrationsto check the status.
Refer to status_report.api.php for implementation example.