keycloak-scim/examples/providers/event-listener-sysout
2016-06-30 17:17:53 -04:00
..
src/main KEYCLOAK-1524 2016-02-03 11:20:22 +01:00
pom.xml bump version 2016-06-30 17:17:53 -04:00
README.md KEYCLOAK-2752 2016-04-06 13:18:23 +02:00

Example Event Listener that prints events to System.out

To deploy copy target/event-listener-sysout-example.jar to providers directory. Alternatively you can deploy as a module by running:

KEYCLOAK_HOME/bin/jboss-cli.sh --command="module add --name=org.keycloak.examples.event-sysout --resources=target/event-listener-sysout-example.jar --dependencies=org.keycloak.keycloak-core,org.keycloak.keycloak-server-spi"

Then registering the provider by editing keycloak-server.json and adding the module to the providers field:

"providers": [
    ....
    "module:org.keycloak.examples.event-sysout"
],

Then start (or restart) the server. Once started open the admin console, select your realm, then click on Events, followed by config. Click on Listeners select box, then pick sysout from the dropdown. After this try to logout and login again to see events printed to System.out.

The example event listener can be configured to exclude certain events, for example to exclude REFRESH_TOKEN and CODE_TO_TOKEN events add the following to keycloak-server.json:

...
"eventsListener": {
    "sysout": {
        "exclude": [ "REFRESH_TOKEN", "CODE_TO_TOKEN" ]
    }
}