web_seal_cdas = { # The name of the log format log.format.format_label = "WebSEAL CDAS Log Format" log.miscellaneous.log_data_type = "generic" log.miscellaneous.log_format_type = "other" # The log is in this format if any of the first ten lines match this regular expression log.format.autodetect_regular_expression = "^ " # The format of dates and times in this log log.format.date_format = "dd/mm/yy" log.format.time_format = "auto" # All log field parsing will be done using the parsing filters log.format.parse_only_with_filters = "true" # Log fields log.fields = { date = "" time = "" cert_info = "" issuer = "" result = "" af_portal_id = "" user_id = "" } # log.fields # # Log Parsing Filters log.parsing_filters = { parse = ` if (matches_regular_expression(current_log_line(), '^ $')) then ( set_collected_field('', 'cert_info', $1); ) else if (matches_regular_expression(current_log_line(), '^ $')) then ( set_collected_field('', 'issuer', $1); ) else if (matches_regular_expression(current_log_line(), '^ $')) then ( set_collected_field('', 'result', $1); ) else if (matches_regular_expression(current_log_line(), '^ $')) then ( set_collected_field('', 'af_portal_id', $1); ) else if (matches_regular_expression(current_log_line(), '^ $')) then ( set_collected_field('', 'user_id', $1); ) else if (matches_regular_expression(current_log_line(), '^ ')) then ( accept_collected_entry('', false); ) ` } # log.parsing_filters # Database fields database.fields = { date_time = "" day_of_week = "" hour_of_day = "" cert_info = "" issuer = "" result = "" af_portal_id = "" user_id = "" } # database.fields database.numerical_fields = { events = { label = "$lang_stats.field_labels.events" default = true requires_log_field = false type = "int" display_format_type = "integer" entries_field = true } # events } # database.numerical_fields log.filters = { mark_entry = { label = '$lang_admin.log_filters.mark_entry_label' comment = '$lang_admin.log_filters.mark_entry_comment' value = 'events = 1;' } # mark_entry } # log.filters create_profile_wizard_options = { date_time_tracking = true # How the reports should be grouped in the report menu report_groups = { date_time_group = "" cert_info = true issuer = true result = true af_portal_id = true user_id = true } # report_groups } # create_profile_wizard_options } # web_seal_cdas