cold_fusion_application_csv = { # The name of the log format log.format.format_label = "ColdFusion Application Log Format (CSV)" log.miscellaneous.log_data_type = "csv" log.miscellaneous.log_format_type = "application" # The log is in this format if any of the first ten lines match this regular expression log.format.autodetect_regular_expression = '^"Severity","ThreadID","Date","Time"' # Log Filters log.filters = { # This filter sets the error to "Card message error on cardMsgN" when the error message field contains cardMsgN 1 = { label = "1" comment = "" value = "if (matches_regular_expression(message, '(cardMsg[0-9]+)')) then error_message = expand('Card message error on $1');" requires_fields = { message = true } } # 1 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 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 create_profile_wizard_options = { date_time_tracking = true # How the reports should be grouped in the report menu report_groups = { date_time_group = "" day_of_week = true hour_of_day = true severity = true application = true message = true } # report_groups } # create_profile_wizard_options not_supported = { bandwidth = true sessions = true visitors = true pageviews = true } # not_supported } # cold_fusion_application_csv