logging.pp 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. # Class nova::logging
  2. #
  3. # nova logging configuration
  4. #
  5. # == parameters
  6. #
  7. # [*debug*]
  8. # (Optional) Should the daemons log debug messages
  9. # Defaults to $::os_service_default
  10. #
  11. # [*use_syslog*]
  12. # (Optional) Use syslog for logging.
  13. # Defaults to $::os_service_default
  14. #
  15. # [*use_stderr*]
  16. # (optional) Use stderr for logging
  17. # Defaults to $::os_service_default
  18. #
  19. # [*log_facility*]
  20. # (Optional) Syslog facility to receive log lines.
  21. # Defaults to $::os_service_default
  22. #
  23. # [*log_dir*]
  24. # (optional) Directory where logs should be stored.
  25. # If set to $::os_service_default, it will not log to any directory.
  26. # Defaults to '/var/log/nova'
  27. #
  28. # [*logging_context_format_string*]
  29. # (optional) Format string to use for log messages with context.
  30. # Defaults to $::os_service_default
  31. # Example: '%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s\
  32. # [%(request_id)s %(user_identity)s] %(instance)s%(message)s'
  33. #
  34. # [*logging_default_format_string*]
  35. # (optional) Format string to use for log messages without context.
  36. # Defaults to $::os_service_default
  37. # Example: '%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s\
  38. # [-] %(instance)s%(message)s'
  39. #
  40. # [*logging_debug_format_suffix*]
  41. # (optional) Formatted data to append to log format when level is DEBUG.
  42. # Defaults to $::os_service_default
  43. # Example: '%(funcName)s %(pathname)s:%(lineno)d'
  44. #
  45. # [*logging_exception_prefix*]
  46. # (optional) Prefix each line of exception output with this format.
  47. # Defaults to $::os_service_default
  48. # Example: '%(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s'
  49. #
  50. # [*log_config_append*]
  51. # The name of an additional logging configuration file.
  52. # Defaults to $::os_service_default
  53. # See https://docs.python.org/2/howto/logging.html
  54. #
  55. # [*default_log_levels*]
  56. # (optional) Hash of logger (keys) and level (values) pairs.
  57. # Defaults to $::os_service_default
  58. # Example:
  59. # { 'amqp' => 'WARN', 'amqplib' => 'WARN', 'boto' => 'WARN',
  60. # 'sqlalchemy' => 'WARN', 'suds' => 'INFO', 'iso8601' => 'WARN',
  61. # 'requests.packages.urllib3.connectionpool' => 'WARN' }
  62. #
  63. # [*publish_errors*]
  64. # (optional) Publish error events (boolean value).
  65. # Defaults to $::os_service_default
  66. #
  67. # [*fatal_deprecations*]
  68. # (optional) Make deprecations fatal (boolean value)
  69. # Defaults to $::os_service_default
  70. #
  71. # [*instance_format*]
  72. # (optional) If an instance is passed with the log message, format it
  73. # like this (string value).
  74. # Defaults to $::os_service_default
  75. # Example: '[instance: %(uuid)s] '
  76. #
  77. # [*instance_uuid_format*]
  78. # (optional) If an instance UUID is passed with the log message, format
  79. # it like this (string value).
  80. # Defaults to $::os_service_default
  81. # Example: instance_uuid_format='[instance: %(uuid)s] '
  82. #
  83. # [*log_date_format*]
  84. # (optional) Format string for %%(asctime)s in log records.
  85. # Defaults to $::os_service_default
  86. # Example: 'Y-%m-%d %H:%M:%S'
  87. #
  88. class nova::logging(
  89. $use_syslog = $::os_service_default,
  90. $use_stderr = $::os_service_default,
  91. $log_facility = $::os_service_default,
  92. $log_dir = '/var/log/nova',
  93. $debug = $::os_service_default,
  94. $logging_context_format_string = $::os_service_default,
  95. $logging_default_format_string = $::os_service_default,
  96. $logging_debug_format_suffix = $::os_service_default,
  97. $logging_exception_prefix = $::os_service_default,
  98. $log_config_append = $::os_service_default,
  99. $default_log_levels = $::os_service_default,
  100. $publish_errors = $::os_service_default,
  101. $fatal_deprecations = $::os_service_default,
  102. $instance_format = $::os_service_default,
  103. $instance_uuid_format = $::os_service_default,
  104. $log_date_format = $::os_service_default,
  105. ) {
  106. include ::nova::deps
  107. # NOTE(spredzy): In order to keep backward compatibility we rely on the pick function
  108. # to use nova::<myparam> first then nova::logging::<myparam>.
  109. $use_syslog_real = pick($::nova::use_syslog,$use_syslog)
  110. $use_stderr_real = pick($::nova::use_stderr,$use_stderr)
  111. $log_facility_real = pick($::nova::log_facility,$log_facility)
  112. $log_dir_real = pick($::nova::log_dir,$log_dir)
  113. $debug_real = pick($::nova::debug,$debug)
  114. oslo::log { 'nova_config':
  115. debug => $debug_real,
  116. use_stderr => $use_stderr_real,
  117. use_syslog => $use_syslog_real,
  118. log_dir => $log_dir_real,
  119. syslog_log_facility => $log_facility_real,
  120. logging_context_format_string => $logging_context_format_string,
  121. logging_default_format_string => $logging_default_format_string,
  122. logging_debug_format_suffix => $logging_debug_format_suffix,
  123. logging_exception_prefix => $logging_exception_prefix,
  124. log_config_append => $log_config_append,
  125. default_log_levels => $default_log_levels,
  126. publish_errors => $publish_errors,
  127. fatal_deprecations => $fatal_deprecations,
  128. instance_format => $instance_format,
  129. instance_uuid_format => $instance_uuid_format,
  130. log_date_format => $log_date_format,
  131. }
  132. }