Audit related dhis.conf

it’s unclear from the documentation if these properties, audit related are still applicable/relevant

# https://docs.dhis2.org/2.34/en/dhis2_system_administration_guide/audit.html
#
# Each property accepts a semicolon delimited list of valid Audit Types:
#       - CREATE
#       - UPDATE
#       - DELETE
#       - READ
#
# To disable completely, change to 'DISABLED' as value.
#
audit.metadata  = {{default .Env.DHIS_AUDIT_MATRIX_METADATA "CREATE;UPDATE;DELETE;READ"}}
audit.tracker   = {{default .Env.DHIS_AUDIT_MATRIX_TRACKER "CREATE;UPDATE;DELETE;READ"}}
audit.aggregate = {{default .Env.DHIS_AUDIT_MATRIX_AGGREGATE "CREATE;UPDATE;DELETE;READ"}}
#
# These are separate from the Artemis logging system, you can disable
# these and still use the async audit tracking.
audit.logger    = {{default .Env.DHIS_AUDIT_LOGGER "on"}}
audit.database  = {{default .Env.DHIS_AUDIT_DB "on"}}

they are no more mentioned in dhis.conf - DHIS2 Documentation

I also found references to changelog.tracker

mentions in the code : dhis2-core/dhis-2/dhis-support/dhis-support-external/src/main/java/org/hisp/dhis/external/conf/ConfigurationKey.java at master · dhis2/dhis2-core · GitHub

1 Like

@Stephan_Mestach In this link you can find a compilation of information about audit/changelog (including dhis.conf paratemers) that could be useful for you

1 Like