Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

bind_logging_category.md

File metadata and controls

31 lines (22 loc) · 1.17 KB

bind_logging_category

Back to resource list

This resource maps BIND logging categories to logging channels.

Actions

Action Description
:create Creates a BIND logging category

Properties

Name Type Default Description
bind_config String default Name of the bind_config resource to notify actions on
category String name property Name of the BIND logging category to send to the specified channels. Must be a valid BIND logging category
channels Array, String required Array of names (or single name) of channels to send the category of logs to

Examples

bind_logging_category 'queries' do
  channels ['syslog', 'querylog']
end

bind_logging_category 'xfer-in' do
  channels 'syslog'
end