# Copyright (c) 2010 Flowerfire, Inc. All Rights Reserved. click_to_meet = { plugin_version = "1.0.1" # Initial creation - 1.0 # 2010-10-26 - 1.0.1 - MSG - Edited info lines. info.1.manufacturer = "Radvision" info.1.device = "Click to Meet" info.1.version.1 = "" # The name of the log format log.format.format_label = "Click To Meet 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 = ",(join|drop|killConf|newConf|createConf|mcuStatus),[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+,[0-9]+" # The format of dates and times in this log log.format.date_format = "auto" log.format.time_format = "auto" log.format.ignore_format_lines = "true" log.format.field_separator = "," # Log fields log.fields = { log_date_time.index = 1 date = "" time = "" action.index = 2 conference_server_address.index = 3 conference_id.index = 4 client_name.index = 5 client_address.index = 6 client_type.index = 7 ticket.index = 8 cuid.index = 9 } # log.fields # Log Parsing Filters log.parsing_filters = { get_date_time = { label = "get date/time" comment = "" value = " if (length(log_date_time) >= 21) then ( date = substr(log_date_time, 0, 10); time = substr(log_date_time, 11); ); else ( date = normalize_date(substr(log_date_time, 0, 8), 'yyyymmdd'); time = normalize_time(substr(log_date_time, 9, 6), 'hhmmss'); ); " } # parse } # parsing_filters # Database fields database.fields = { date_time = "" day_of_week = "" hour_of_day = "" action = "" conference_server_address = "" conference_id = "" client_name = "" client_address = "" client_type = "" ticket = "" cuid = "" } # 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 = "" action = "" conference_server_address = "" conference_id = "" client_name = "" client_address = "" client_type = "" ticket = "" cuid = "" } # report_groups } # create_profile_wizard_options } # click_to_meet