6846N/A# If set to true, the logging level will be set to DEBUG instead of the default
6846N/A# INFO level. (boolean value)
6846N/A# If set to false, the logging level will be set to WARNING instead of the
6846N/A# default INFO level. (boolean value)
6846N/A# This option is deprecated for removal.
6846N/A# Its value may be silently ignored in the future.
6846N/A# The name of a logging configuration file. This file is appended to any
6846N/A# existing logging configuration files. For details about logging configuration
6846N/A# files, see the Python logging module documentation. Note that when logging
6846N/A# configuration files are used then all logging configuration is set in the
6846N/A# configuration file and other logging configuration options are ignored (for
6846N/A# example, logging_context_format_string). (string value)
6846N/A# Defines the format string for %%(asctime)s in log records. Default:
6846N/A# %(default)s . This option is ignored if log_config_append is set. (string
6846N/A#log_date_format = %Y-%m-%d %H:%M:%S
6846N/A# (Optional) Name of log file to send logging output to. If no default is set,
6846N/A# logging will go to stderr as defined by use_stderr. This option is ignored if
6846N/A# log_config_append is set. (string value)
6846N/A# (Optional) The base directory used for relative log_file paths. This option
6846N/A# is ignored if log_config_append is set. (string value)
6846N/A# Uses logging handler designed to watch file system. When log file is moved or
6846N/A# removed this handler will open a new log file with specified path
6846N/A# instantaneously. It makes sense only if log_file option is specified and
6846N/A# Linux platform is used. This option is ignored if log_config_append is set.
6846N/A# Use syslog for logging. Existing syslog format is DEPRECATED and will be
6846N/A# changed later to honor RFC5424. This option is ignored if log_config_append
6846N/A# Syslog facility to receive log lines. This option is ignored if
6846N/A# log_config_append is set. (string value)
6846N/A#syslog_log_facility = LOG_USER
6846N/A# Log output to standard error. This option is ignored if log_config_append is
6846N/A# Format string to use for log messages with context. (string value)
6846N/A#logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
6846N/A# Format string to use for log messages when context is undefined. (string
6846N/A#logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
6846N/A# Additional data to append to log message when logging level for the message
6846N/A#logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
6846N/A# Prefix each line of exception output with this format. (string value)
6846N/A#logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
6846N/A# Defines the format string for %(user_identity)s that is used in
6846N/A# logging_context_format_string. (string value)
6846N/A#logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
6846N/A# List of package logging levels in logger=LEVEL pairs. This option is ignored
6846N/A# if log_config_append is set. (list value)
6846N/A#default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=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
6846N/A# Enables or disables publication of error events. (boolean value)
6846N/A# The format for an instance that is passed with the log message. (string
6846N/A#instance_format = "[instance: %(uuid)s] "
6846N/A# The format for an instance UUID that is passed with the log message. (string
6846N/A#instance_uuid_format = "[instance: %(uuid)s] "
6846N/A# Enables or disables fatal status of deprecations. (boolean value)
6846N/A# The number of seconds the agent will wait between polling for local device
6846N/A# Set new timeout in seconds for new rpc calls after agent receives SIGTERM. If
6846N/A# value is set to 0, rpc timeout won't be changed (integer value)
6846N/A# Enable suppression of ARP responses that don't match an IP address that
6846N/A# belongs to the port from which they originate. Note: This prevents the VMs
6846N/A# attached to this agent from spoofing, it doesn't protect them from other
6846N/A# devices which have the capability to spoof (
e.g. bare metal or VMs attached
6846N/A# to agents without this flag set to True). Spoofing rules will not be added to
6846N/A# any ports that have port security disabled. For LinuxBridge, this requires
6846N/A# ebtables. For OVS, it requires a version that supports matching ARP headers.
6846N/A# This option will be removed in Newton so the only way to disable protection
6846N/A# will be via the port security extension. (boolean value)
6846N/A# This option is deprecated for removal.
6846N/A# Its value may be silently ignored in the future.
6846N/A#prevent_arp_spoofing = true
6846N/A# Comma-separated list of <physical_network>:<physical_interface> tuples
6846N/A# mapping physical network names to the agent's node-specific physical network
6846N/A# interfaces to be used for flat and VLAN networks. All physical networks
6846N/A# listed in network_vlan_ranges on the server should have mappings to
6846N/A# appropriate interfaces on each agent. (list value)
6846N/A#physical_interface_mappings =
6846N/A# Driver for security groups firewall in the L2 agent (string value)
6846N/A# Controls whether the neutron security group API is enabled in the server. It
6846N/A# should be false when using no security groups or using the nova security
6846N/A# group API. (boolean value)
6846N/A#enable_security_group = true
6846N/A# Use ipset to speed-up the iptables based security groups. Enabling ipset
6846N/A# support requires that ipset is installed on L2 agent node. (boolean value)