https://github.com/simplesamlphp/simplesamlphp-module-logpeek
A SimpleSAMLphp module to provide a web API to access the log files.
https://github.com/simplesamlphp/simplesamlphp-module-logpeek
Last synced: 9 months ago
JSON representation
A SimpleSAMLphp module to provide a web API to access the log files.
- Host: GitHub
- URL: https://github.com/simplesamlphp/simplesamlphp-module-logpeek
- Owner: simplesamlphp
- License: lgpl-2.1
- Created: 2015-08-07T12:28:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-11-18T09:12:25.000Z (about 1 year ago)
- Last Synced: 2025-04-06T08:01:41.858Z (10 months ago)
- Language: PHP
- Size: 99.6 KB
- Stars: 1
- Watchers: 7
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SimpleSAMLphp logpeek module

[](https://codecov.io/gh/simplesamlphp/simplesamlphp-module-logpeek)
[](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp-module-logpeek/?branch=master)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-logpeek)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-logpeek)
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
```bash
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:
```php
'module.enable' => [ 'logpeek' => true, … ],
```