Keep track of different events and write them down to an audit log.
Project description
Finger Pointing
Life, the Universe, and Everything
Finger Pointing is a basic audit logger that helps you keep record of events like user login/logout and content types objects life cycle. All events are logged into the standard Zope log and, optionally, to a dedicated audit log file.
Other features included:
configurable via control panel configlet
log entries can be easily visualized by users with permissions to do so
support for Cloudflare’s CF-Connecting-IP request header to log real client IP addresses
support for automatic log rotation based on audit log file size
Translations
This product has been translated into
Brazilian Portuguese
Chinese Simplified
French
German
Spanish
Mostly Harmless
Got an idea? Found a bug? Let us know by opening a support ticket.
Known Issues
Running your site behind a CDN may result in inconsistent IP addresses being logged.
Don’t Panic
Installation
To enable this package in a buildout-based installation:
Edit your buildout.cfg and add the following to it:
[buildout]
...
eggs =
collective.fingerpointing
By default, Finger Pointing logs audit events to the Zope event log only. To enable logging to a separate file use the following configuration:
[instance]
zope-conf-additional +=
<product-config collective.fingerpointing>
audit-log ${buildout:directory}/var/log/audit.log
audit-log-max-size 10485760
audit-log-old-files 30
</product-config>
- audit-log
The filename of the audit log. Add file name to create Finger Pointing audit file.
- audit-log-max-size
Maximum size of audit log file (in bytes). Adding this max size enables log rotation.
- audit-log-old-files
Number of previous log files to retain when log rotation is enabled. Defaults to 1.
After updating the configuration you need to run ‘’bin/buildout’’, which will take care of updating your system.
Go to the ‘Site Setup’ page in a Plone site and click on the ‘Add-ons’ link.
Check the box next to Finger Pointing and click the ‘Activate’ button.
Usage
Go to ‘Site Setup’ and select ‘Finger Pointing’ and enable the events you want to keep an eye on.
Finger Pointing will start logging the selected events:
# bin/instance fg
2016-09-26 15:23:36 INFO ZServer HTTP server started at Mon Sep 26 15:23:36 2016
Hostname: 0.0.0.0
Port: 8080
2016-09-26 15:23:41 INFO collective.fingerpointing Logging audit information to /home/hvelarde/collective/fingerpointing/var/log/audit.log
2016-09-26 15:23:49 INFO Plone OpenID system packages not installed, OpenID support not available
2016-09-26 15:23:56 INFO Zope Ready to handle requests
2016-09-26 15:24:19 INFO collective.fingerpointing user=admin ip=127.0.0.1 action=logout
2016-09-26 15:24:28 INFO collective.fingerpointing user=admin ip=127.0.0.1 action=login
These events are also logged in var/log/audit.log:
2016-09-26 15:24:19,717 - INFO - user=admin ip=127.0.0.1 action=logout
2016-09-26 15:24:28,415 - INFO - user=admin ip=127.0.0.1 action=login
An audit log view is available in the user menu to users with the collective.fingerpointing: View Audit Log permission:
If you didn’t specify a Finger Pointing audit log file name, you’ll see a warning. However, audit events will be normally logged to the Zope event log:
# bin/instance fg
2016-09-26 15:58:32 INFO ZServer HTTP server started at Mon Sep 26 15:58:32 2016
Hostname: 0.0.0.0
Port: 8080
2016-09-26 15:58:35 WARNING collective.fingerpointing No audit log file specified; audit log view will be disabled
2016-09-26 15:58:40 INFO Plone OpenID system packages not installed, OpenID support not available
2016-09-26 15:58:45 INFO Zope Ready to handle requests
2016-09-26 15:58:48 INFO collective.fingerpointing user=admin ip=127.0.0.1 action=logout
2016-09-26 15:58:54 INFO collective.fingerpointing user=admin ip=127.0.0.1 action=login
Changelog
1.8.3 (2022-05-06)
Setup CI: test in 4.3, 5.1, 5.2, 6.0. [maurits]
Fix ImportError in Plone 6. [maurits]
1.8.2 (2020-03-16)
Fix typo in French translation. [laulaz]
In workflow_logger display full path of object instead just object id. [gbastien]
1.8.1 (2019-11-22)
Do not fail running plone-compile-resources together with fingerpointing installed in Plone 5.2. [jensens]
Completed french translations. [gbastien]
1.8 (2018-10-11)
Avoid TypeError when View Audit Log (fixes #91). [jianaijun]
Update Chinese Simplified translation. [jianaijun]
1.7 (2018-04-23)
Drop support for Plone 5.0. [hvelarde]
Avoid ComponentLookupError when adding a Plone site (fixes #85). [hvelarde]
Do not fail while logging uninstall profile information. [hvelarde]
Fix uninstall of control panel configlet under Plone 5.1. [hvelarde]
1.6 (2018-03-28)
Avoid TypeError on PAS events (fixes #78). [hvelarde]
1.6rc2 (2018-03-22)
Fix profile version number. [hvelarde]
1.6rc1 (2018-03-22)
Update i18n, Brazilian Portuguese and Spanish translations. [hvelarde]
Code clean up and refactor, avoid UnicodeEncodeError on registry subscriber (refs. #74). [hvelarde]
Log Generic Setup profile imports; this is useful to audit add-on installs/uninstalls (implements #32). [hvelarde]
Do label Size translatable, completed french translations. [gbastien]
1.5rc1 (2017-11-24)
Update i18n, Brazilian Portuguese, German and Spanish translations. [hvelarde, jensens]
Lock-file is now container save and it’s close more robust. [jensens]
Refactor logger module in order to improve testability. [jensens]
Add search on audit logs and pagination (implements #17). [jensens]
1.4b3 (2017-11-21)
1.4b2 (2017-09-20)
Add French translations. [gbastien]
1.4b1 (2017-06-26)
Fix AttributeError when logging activity from anonymous users (fixes #57). [keul]
Add support for HTTP_X_FORWARDED_FOR request header to log real client IP addresses. [keul]
1.3b2 (2017-05-25)
Avoid possible ConfigurationConflictError on upgrade step registration. [hvelarde]
1.3b1 (2017-05-25)
Add support for Cloudflare’s CF-Connecting-IP request header to log real client IP addresses. [hvelarde]
We now use plone.api to get the id of the user instead of the AUTHENTICATED_USER key on the request. Also, we now use the getClientAddr() function to get remote IP address. These changes simplify testing.
Add support for logging workflow transitions. [hvelarde]
Avoid ComponentLookupError when plonectl adduser. [jianaijun]
1.2b1 (2016-09-28)
Make log rotating configurable using the zope-conf-additional option. Note that now, by default, rotating is disabled. [rene, hvelarde]
1.1b1 (2016-07-07)
Drop support for Plone 4.2. [hvelarde]
Log deletion of groups too. If you are using Plone < 4.3.8 you may need to update versions of Products.PlonePAS and Products.PluggableAuthService. [fRiSi]
1.0b4 (2016-07-07)
Avoid UnicodeEncodeError with log messages. [jianaijun, rodfersou]
Support automatic rotation of audit log files at timed intervals; a new file is created every day and up to 30 backup files are maintained (closes #9). [hvelarde]
Use object representation to log life cycle events; this fixes an issue with Archetypes-based objects being dumped to the log (refs. #8 and fixes #38). [hvelarde]
Package is now compatible with Plone 5.0 and Plone 5.1. [hvelarde]
1.0b3 (2016-04-19)
Added Chinese Simplified translation. [jianaijun]
Package no longer rises AttributeError when running interactive console (bin/instance debug) (fixes #30). [hvelarde]
Clean up audit log messages. [hvelarde]
Disable rendering of left and right columns in audit log view. [hvelarde]
Audit log entries are now shown in reverse order (newer entries first). [hvelarde]
1.0b2 (2016-03-18)
Log to audit.log even if Zope’s event-log-level is above INFO (fixes #25). [fRiSi]
Add German translations. [fRiSi]
Fix output of the audit log view. [pcdummy, hvelarde]
Add Brazilian Portuguese and Spanish translations. [hvelarde]
The “View Audit log” action appears now before the “Log out” one (fixes #18). [pcdummy, hvelarde]
Use main_template for the audit log view. [pcdummy]
Avoid TypeError while running third party tests (fixes #2). [hvelarde]
1.0b1 (2016-03-09)
Add a view for the audit.log file @@fingerpointing-audit-log and link it to portal_actions. [pcdummy, hvelarde]
Make control panel configlet accesible to Site Administrator role (closes #15). [hvelarde]
Avoid ComponentLookupError when removing a Plone site (fixes #4). [hvelarde]
Remove unused plone.directives.form dependency which pulled in Grok packages. [vangheem]
Audit information is now logged into a file named audit.log instead of inside the standard event.log. [pcdummy]
Package is now compatible with Plone 5. [hvelarde]
Ignore errors caused by subscribers trying to access nonexistent registry records when package is still not installed (fixes #1). [hvelarde]
1.0a1 (2015-06-08)
Initial release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for collective.fingerpointing-1.8.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3cc6fda93d3c1f4f0f327cf55b306983bcf17df83591df9ac843d0aefdde66a |
|
MD5 | 7ad62fca027bc243b6919c77ecd3b16c |
|
BLAKE2b-256 | 5797c3d987ab9c33f438f4ee20571b67ce91e093d7d5c99601a451be5a257c77 |
Hashes for collective.fingerpointing-1.8.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67cce6805d7cb91b5f9b3c5eb534ff772197429fa33a18eedb8d8386e43a3401 |
|
MD5 | f0fcfbcb2c5350b0d208491c7ee35052 |
|
BLAKE2b-256 | a1c7a76f016a61d6edf1b0e470ec0fa360246e3d8f19f760b0c5ea1f597110b3 |