~le-charmers/charms/trusty/rabbitmq-server/leadership-election

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Liam Young
  • Date: 2015-05-11 08:03:57 UTC
  • mfrom: (83.1.14 rabbitmq-server)
  • Revision ID: liam.young@canonical.com-20150511080357-3ftop9kxb6o0e3mq
Merged trunk in + LE charmhelper sync

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
      order for this charm to function correctly, the privacy extension must be
167
167
      disabled and a non-temporary address must be configured/available on
168
168
      your network interface.
 
169
  min-cluster-size:
 
170
    type: int
 
171
    default:
 
172
    description: |
 
173
      Minimum number of units expected to exist before charm will attempt to
 
174
      form a rabbitmq cluster.
 
175
  stats_cron_schedule:
 
176
      type: string
 
177
      default: '*/5 * * * *'
 
178
      description: |
 
179
        Cron schedule used to generate rabbitmq stats. If unset
 
180
        no stats will be generated
 
181
  queue_thresholds:
 
182
      type: string
 
183
      default: "[['\\*', '\\*', 100, 200]]"
 
184
      description: |
 
185
        List of RabbitMQ queue size check thresholds. Interpreted as YAML
 
186
        in format [<vhost>, <queue>, <warn>, <crit>]
 
187
        - ['/', 'queue1', 10, 20]
 
188
        - ['/', 'queue2', 200, 300]
 
189
        Wildcards '*' are accepted to monitor all vhosts and/or queues