simplesamlphp / simplesamlphp-module-logpeek
A SimpleSAMLphp module to provide a web API to access the log files.
Installs: 17 197
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 8
Forks: 1
Open Issues: 1
Type:simplesamlphp-module
Requires
- php: >=7.4 || ^8.0
- simplesamlphp/composer-module-installer: ^1.3.2
- simplesamlphp/simplesamlphp: ^2.0.0-rc2
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-21 20:05:49 UTC
README
This module provides a web API that you can use to search for all to lines in the logs corresponding to a specific session identifier.
Install
Install with composer
vendor/bin/composer require simplesamlphp/simplesamlphp-module-logpeek
Configuration
Next thing you need to do is to enable the module:
in config.php
, search for the module.enable
key and set logpeek
to true:
'module.enable' => [ 'logpeek' => true, … ],