# Copyright (c) 2010 Flowerfire, Inc. All Rights Reserved. generic_csv = { # 2007-04-09 - GMF Changed log_data_type from "csv_generic" to "csv" # The name of the log format log.format.format_label = "CSV (Generic Comma-Separated Values) Log Format" log.miscellaneous.log_data_type = "csv" 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 = "this format cannot be autodetected" # The format of dates and times in this log log.format.date_format = "auto" log.format.time_format = "auto" # An entry in this log is called an event statistics.miscellaneous.entry_name = "events" # Use comma as the field separator log.format.field_separator = "," # There can be newlines inside quotes in CSV files-- let field values across lines log.format.allow_newlines_inside_quotes = "true" 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 = { # This is a "generic" format, which attempts to fill in the gap if no matching format is found. # If one *is* found, this format should not be shown in the list. show_format_only_if_no_others_match = true # How the reports should be grouped in the report menu report_groups = { date_time_group = "" } # report_groups } # create_profile_wizard_options not_supported = { bandwidth = true visitors = true sessions = true pageviews = true individualhosts = true } # not_supported } # generic_csv