You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
4.6 KiB

  1. [DEFAULT]
  2. #
  3. # From faafo.api
  4. #
  5. # Listen address. (string value)
  6. #listen_address = 0.0.0.0
  7. # Bind port. (integer value)
  8. #bind_port = 80
  9. # Database connection URL. (string value)
  10. #database_url = sqlite:////tmp/sqlite.db
  11. #
  12. # From faafo.queues
  13. #
  14. # AMQP connection URL. (string value)
  15. #transport_url = amqp://guest:guest@localhost:5672//
  16. #
  17. # From faafo.worker
  18. #
  19. # API connection URL (string value)
  20. #endpoint_url = http://localhost
  21. #
  22. # From oslo.log
  23. #
  24. # If set to true, the logging level will be set to DEBUG instead of
  25. # the default INFO level. (boolean value)
  26. #debug = false
  27. # If set to false, the logging level will be set to WARNING instead of
  28. # the default INFO level. (boolean value)
  29. # This option is deprecated for removal.
  30. # Its value may be silently ignored in the future.
  31. #verbose = true
  32. # The name of a logging configuration file. This file is appended to
  33. # any existing logging configuration files. For details about logging
  34. # configuration files, see the Python logging module documentation.
  35. # Note that when logging configuration files are used then all logging
  36. # configuration is set in the configuration file and other logging
  37. # configuration options are ignored (for example,
  38. # logging_context_format_string). (string value)
  39. # Deprecated group/name - [DEFAULT]/log_config
  40. #log_config_append = <None>
  41. # Defines the format string for %%(asctime)s in log records. Default:
  42. # %(default)s . This option is ignored if log_config_append is set.
  43. # (string value)
  44. #log_date_format = %Y-%m-%d %H:%M:%S
  45. # (Optional) Name of log file to send logging output to. If no default
  46. # is set, logging will go to stderr as defined by use_stderr. This
  47. # option is ignored if log_config_append is set. (string value)
  48. # Deprecated group/name - [DEFAULT]/logfile
  49. #log_file = <None>
  50. # (Optional) The base directory used for relative log_file paths.
  51. # This option is ignored if log_config_append is set. (string value)
  52. # Deprecated group/name - [DEFAULT]/logdir
  53. #log_dir = <None>
  54. # Uses logging handler designed to watch file system. When log file is
  55. # moved or removed this handler will open a new log file with
  56. # specified path instantaneously. It makes sense only if log_file
  57. # option is specified and Linux platform is used. This option is
  58. # ignored if log_config_append is set. (boolean value)
  59. #watch_log_file = false
  60. # Use syslog for logging. Existing syslog format is DEPRECATED and
  61. # will be changed later to honor RFC5424. This option is ignored if
  62. # log_config_append is set. (boolean value)
  63. #use_syslog = false
  64. # Syslog facility to receive log lines. This option is ignored if
  65. # log_config_append is set. (string value)
  66. #syslog_log_facility = LOG_USER
  67. # Log output to standard error. This option is ignored if
  68. # log_config_append is set. (boolean value)
  69. #use_stderr = true
  70. # Format string to use for log messages with context. (string value)
  71. #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  72. # Format string to use for log messages when context is undefined.
  73. # (string value)
  74. #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  75. # Additional data to append to log message when logging level for the
  76. # message is DEBUG. (string value)
  77. #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
  78. # Prefix each line of exception output with this format. (string
  79. # value)
  80. #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
  81. # Defines the format string for %(user_identity)s that is used in
  82. # logging_context_format_string. (string value)
  83. #logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
  84. # List of package logging levels in logger=LEVEL pairs. This option is
  85. # ignored if log_config_append is set. (list value)
  86. #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
  87. # Enables or disables publication of error events. (boolean value)
  88. #publish_errors = false
  89. # The format for an instance that is passed with the log message.
  90. # (string value)
  91. #instance_format = "[instance: %(uuid)s] "
  92. # The format for an instance UUID that is passed with the log message.
  93. # (string value)
  94. #instance_uuid_format = "[instance: %(uuid)s] "
  95. # Enables or disables fatal status of deprecations. (boolean value)
  96. #fatal_deprecations = false