The Shibboleth IdP V4 software will leave support on September 1, 2024.

FTICKSLoggingConfiguration

Current File(s): conf/logback.xml, conf/idp.properties
Format: Logback, Properties

Overview

F-TICKS is a standardized audit record format used by some federations for collection of federated login statistics.

It is supported natively but configured separately from the regular audit log because of its special requirements. It is enabled through the use of properties and logging output is configured in the usual manner, via logback.

General Configuration

To enable F-TICKS logging, set the idp.fticks.federation property to anything you choose.

In V4.1+, if you want to selectively enable the feature, you can also set idp.fticks.condition to an ActivationCondition bean to apply to decide whether to run.

If you want to include hashed usernames in the output, you must also supply a secret random salt in the idp.fticks.salt property. Without a salt, usernames will not be included.

By default, the only destination for these records is the general process log. The normal use for F-TICKS is to provide the logs to another system, so the logback.xml file includes an appender for a remote syslog. The hostname and port can be set via the idp.fticks.loghost and idp.fticks.logport properties.

Reference

Properties

Properties are defined in idp.properties to customize various aspects of audit logging:

Property

Type

Default

Function

Property

Type

Default

Function

idp.fticks.federation

String



Enables F-TICKS output and specifies the value of the federation-identifier field

idp.fticks.condition 4.1

Bean ID



Optional bean name of a Predicate<ProfileRequestContext> to use to decide whether to run

idp.fticks.algorithm

String

SHA-2

Digest algorithm used to obscure usernames

idp.fticks.salt

String



A salt to apply when digesting usernames (if not specified, the username will not be included)

idp.fticks.loghost

String

localhost

The remote syslog host

idp.fticks.logport

String

514

The remote syslog port