[DEFAULT] # # From oslo_log # # If set to true, the logging level will be set to DEBUG instead of the default # INFO level. (boolean value) # Note: This option can be changed without restarting. #debug = false # The name of a logging configuration file. This file is appended to any # existing logging configuration files. For details about logging configuration # files, see the Python logging module documentation. Note that when logging # configuration files are used then all logging configuration is set in the # configuration file and other logging configuration options are ignored (for # example, logging_context_format_string). (string value) # Note: This option can be changed without restarting. # Deprecated group/name - [DEFAULT]/log_config #log_config_append = # Defines the format string for %%(asctime)s in log records. Default: # %(default)s . This option is ignored if log_config_append is set. (string # value) #log_date_format = %Y-%m-%d %H:%M:%S # (Optional) Name of log file to send logging output to. If no default is set, # logging will go to stderr as defined by use_stderr. This option is ignored if # log_config_append is set. (string value) # Deprecated group/name - [DEFAULT]/logfile #log_file = # (Optional) The base directory used for relative log_file paths. This option # is ignored if log_config_append is set. (string value) # Deprecated group/name - [DEFAULT]/logdir #log_dir = # Uses logging handler designed to watch file system. When log file is moved or # removed this handler will open a new log file with specified path # instantaneously. It makes sense only if log_file option is specified and # Linux platform is used. This option is ignored if log_config_append is set. # (boolean value) #watch_log_file = false # Use syslog for logging. Existing syslog format is DEPRECATED and will be # changed later to honor RFC5424. This option is ignored if log_config_append # is set. (boolean value) #use_syslog = false # Enable journald for logging. If running in a systemd environment you may wish # to enable journal support. Doing so will use the journal native protocol # which includes structured metadata in addition to log messages.This option is # ignored if log_config_append is set. (boolean value) #use_journal = false # Syslog facility to receive log lines. This option is ignored if # log_config_append is set. (string value) #syslog_log_facility = LOG_USER # Log output to standard error. This option is ignored if log_config_append is # set. (boolean value) #use_stderr = false # Format string to use for log messages with context. (string value) #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s # Format string to use for log messages when context is undefined. (string # value) #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s # Additional data to append to log message when logging level for the message # is DEBUG. (string value) #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d # Prefix each line of exception output with this format. (string value) #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s # Defines the format string for %(user_identity)s that is used in # logging_context_format_string. (string value) #logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s # List of package logging levels in logger=LEVEL pairs. This option is ignored # if log_config_append is set. (list value) #default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,oslo_messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN,taskflow=WARN,keystoneauth=WARN,oslo.cache=INFO,dogpile.core.dogpile=INFO # Enables or disables publication of error events. (boolean value) #publish_errors = false # The format for an instance that is passed with the log message. (string # value) #instance_format = "[instance: %(uuid)s] " # The format for an instance UUID that is passed with the log message. (string # value) #instance_uuid_format = "[instance: %(uuid)s] " # Interval, number of seconds, of log rate limiting. (integer value) #rate_limit_interval = 0 # Maximum number of logged messages per rate_limit_interval. (integer value) #rate_limit_burst = 0 # Log level name used by rate limiting: CRITICAL, ERROR, INFO, WARNING, DEBUG # or empty string. Logs with level greater or equal to rate_limit_except_level # are not filtered. An empty string means that all levels are filtered. (string # value) #rate_limit_except_level = CRITICAL # Enables or disables fatal status of deprecations. (boolean value) #fatal_deprecations = false # # From stackalytics.dashboard.config # # The address dashboard listens on (unknown value) #listen_host = 127.0.0.1 # The port dashboard listens on (integer value) #listen_port = 8080 # Default metric (string value) #default_metric = marks # Default release, the most recent if not set (string value) #default_release = # Default project type (string value) #default_project_type = openstack # The interval specifies how frequently dashboard should check for updates in # seconds (integer value) #dashboard_update_interval = 3600 # Name of file to store python profiler data (string value) #collect_profiler_stats = # Warn if the age of data is more than this value, sec (integer value) #age_warn = 172800 # # From stackalytics.processor.config # # Storage URI (string value) #runtime_storage_uri = memcached://127.0.0.1:11211 # URI for default data. A local file can be used with the prefix "file://". For # example, default_data_uri = file:///path/to/default_data.json (string value) #default_data_uri = https://raw.githubusercontent.com/stackalytics/default_data/master/default_data.json # The folder that holds all project sources to analyze (string value) #sources_root = /var/local/stackalytics # Number of days to update members (integer value) #days_to_update_members = 30 # The address of file with corrections data (string value) #corrections_uri = https://opendev.org/x/stackalytics/raw/branch/master/etc/corrections.json # URI of review system (string value) #review_uri = gerrit://review.opendev.org # git base location (string value) #git_base_uri = https://opendev.org # SSH key for gerrit review system access (string value) #ssh_key_filename = /home/user/.ssh/id_rsa # SSH username for gerrit review system access (string value) #ssh_username = user # # Proxy command to be used by ssh transport to query Gerrit behind corporate proxy # E.g. for http proxy: "/usr/bin/ncat --proxy-type http --proxy : %s %s" #proxy_command = # URI of translation team data (string value) #translation_team_uri = https://opendev.org/openstack/i18n/raw/branch/master/tools/zanata/translation_team.yaml # Source for fetching user profiles (string value) # Allowed values: launchpad, #fetching_user_source = launchpad # How many member profiles to look ahead after the last (integer value) #members_look_ahead = 250 # Number of seconds to wait for remote response (integer value) #read_timeout = 120 # How many times to retry after Gerrit errors (integer value) #gerrit_retry = 10 # Token for github access. If specified, github_login and github_password will be ignored (string value) #github_token = token # Login for github access (string value) #github_login = login # Password for github access (string value) #github_password = password # Default number of open reviews to present in open changes report #report_default_limit = 5