We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fdd644 commit e38f41dCopy full SHA for e38f41d
README.md
@@ -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