systemseed / simplesamlphp-module-rollbar
A SimpleSAMLphp module adding support for Rollbar logger handler.
Installs: 318
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:simplesamlphp-module
Requires
- php: ^8.0
- rollbar/rollbar: ^4.0
- simplesamlphp/composer-module-installer: ~1.0
- simplesamlphp/simplesamlphp: ^2.1
Requires (Dev)
- drupal/coder: 8.3.13
- squizlabs/php_codesniffer: ^3.0
README
SimpleSAMLphp + Rollbar
SimpleSAMLphp module
This module for SimpleSAMLphp provides a LoggerHandler that integrates with Rollbar service.
Installation
- Install and configure SimpleSAMLphp.
- Install Rollbar -
composer require systemseed/simplesamlphp-module-rollbar
.
Enable Rollbar
- Fill
rollbar.token
value insimplesamlphp/config/config.php
with server token taken from Rollbar. - Set
rollbar.environment
value insimplesamlphp/config/config.php
to define current environment name.
Configure Rollbar to handle PHP exceptions
Set rollbar.exception_handler
value to true
in simplesamlphp/config/config.php
. This will catch and log all
exceptions to Rollbar as a single occurrence in Rollbar dashboard.
Configure Rollbar to handle all log items
Set logging.handler
to 'SimpleSAML\Module\rollbar\Logger\RollbarLoggingHandler'
. Please be aware that enabled
backtraces, will result in each line in the backtrace treated as a separate occurrence.