Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 659 Bytes

File metadata and controls

21 lines (14 loc) · 659 Bytes

F-TICKS logger module

With this module your simpleSAMLphp IdP will be able to write statistical logs in F-TICKS format.

Install

composer.phar require niif/simplesamlphp-module-ftickslogger:1.*

Usage

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.

	95 => array(
        'class' => 'ftickslogger:ftickslogger',
        'attributename' => 'uid',
        'secretsalt' => 'echo9ke8ttwjgekourb767hy2p8mygcqaqi1'
    ),

Where attributename is the principal of the user, and the secretsalt is a secret salt to hash the value of principal :)