Skip to content

Commit e38f41d

Browse files
author
Frank Tamás
committed
Added README
1 parent 2fdd644 commit e38f41d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# F-TICKS logger module
2+
3+
With this module your simpleSAMLphp IdP will be able to write statistical logs in F-TICKS format.
4+
5+
## Install
6+
7+
`composer.phar require niif/simplesamlphp-module-ftickslogger:1.*`
8+
9+
## Usage
10+
11+
This is an Authentication Processing filter, so you are supposed to set it up in authproc.idp section, eg. in metadata/saml20-idp-hosted.php.
12+
13+
```php
14+
95 => array(
15+
'class' => 'ftickslogger:ftickslogger',
16+
'attributename' => 'uid',
17+
'secretsalt' => 'echo9ke8ttwjgekourb767hy2p8mygcqaqi1'
18+
),
19+
```
20+
21+
Where `attributename` is the principal of the user, and the `secretsalt` is a secret salt to hash the value of principal :)

0 commit comments

Comments
 (0)