Method: QB::Ansible::Module::Formatters::JSON#initialize

Defined in:
lib/qb/ansible/module.rb

#initialize(time_format: :iso_8601, log_host: true, log_application: true, time_key: :timestamp) ⇒ JSON

Default JSON time format is ISO8601



87
88
89
90
91
92
93
94
95
96
97
# File 'lib/qb/ansible/module.rb', line 87

def initialize  time_format: :iso_8601,
                log_host: true,
                log_application: true,
                time_key: :timestamp
  super(
    time_format: time_format,
    log_host: log_host,
    log_application: log_application,
    time_key: time_key,
  )
end