~ubuntu-branches/ubuntu/saucy/ceilometer/saucy

« back to all changes in this revision

Viewing changes to etc/ceilometer/ceilometer.conf.sample

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Yolanda Robla, Chuck Short, James Page
  • Date: 2013-07-19 10:04:36 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20130719100436-8ppgb9laoyr60zyr
Tags: 2013.2~b2-0ubuntu1
[ Yolanda Robla ]
* debian/patches/default-dbconnection-sqlite.patch: updated db section

[ Chuck Short ]
* New upstream version.
* debian/patches/default-dbconnection-sqlite.patch: Refreshed.
* debian/control: Bump requirements for stevedore to 0.9.
* debian/control: Add python-simplejson
* debian/control: Drop python-keystoneclient hardcoded version.
* debian/control: Add python-testscenarios as a build depends.
* debian/control: Add python-cinderclient as a build depends.
* debian/control: Add python-ceilometerclient as a build depends.
* debian/control: Add python-alembic as build depends.
* debian/control: Add python-oslo.sphinx as build-depends.
* debian/control: Update runtime depends.
* debian/control: Add python-happybase.
* debian/ceilometer-common.install: Add ceilometer-alarm-singleton,
  ceilometer-alarm-notifier, and ceilometer-expirer.
* debian/patches/skip-database-tests.patch: Skip database tests
  if the database is not installed.

[ James Page ]
* d/control: Update VCS fields for new branch locations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
 
19
19
#
20
 
# Options defined in ceilometer.policy
21
 
#
22
 
 
23
 
# JSON file representing policy (string value)
24
 
#policy_file=policy.json
25
 
 
26
 
# Rule checked when requested rule is not found (string value)
27
 
#policy_default_rule=default
28
 
 
29
 
 
30
 
#
31
 
# Options defined in ceilometer.service
32
 
#
33
 
 
34
 
# Username to use for openstack service access (string value)
35
 
#os_username=ceilometer
36
 
 
37
 
# Password to use for openstack service access (string value)
38
 
#os_password=admin
39
 
 
40
 
# Tenant ID to use for openstack service access (string value)
41
 
#os_tenant_id=
42
 
 
43
 
# Tenant name to use for openstack service access (string
44
 
# value)
45
 
#os_tenant_name=admin
46
 
 
47
 
# Auth URL to use for openstack service access (string value)
48
 
#os_auth_url=http://localhost:5000/v2.0
49
 
 
50
 
 
51
 
#
52
20
# Options defined in ceilometer.api.app
53
21
#
54
22
 
61
29
 
62
30
 
63
31
#
64
 
# Options defined in ceilometer.central.manager
65
 
#
66
 
 
67
 
# list of central pollsters to disable (list value)
68
 
#disabled_central_pollsters=
69
 
 
70
 
 
71
 
#
72
 
# Options defined in ceilometer.compute
73
 
#
74
 
 
75
 
# list of compute agent pollsters to disable (list value)
76
 
#disabled_compute_pollsters=
77
 
 
78
 
 
79
 
#
80
32
# Options defined in ceilometer.compute.notifications
81
33
#
82
34
 
85
37
 
86
38
 
87
39
#
 
40
# Options defined in ceilometer.compute.pollsters.util
 
41
#
 
42
 
 
43
# list of metadata prefixes reserved for metering use (list
 
44
# value)
 
45
#reserved_metadata_namespace=metering.
 
46
 
 
47
# limit on length of reserved metadata values (integer value)
 
48
#reserved_metadata_length=256
 
49
 
 
50
 
 
51
#
88
52
# Options defined in ceilometer.compute.virt.inspector
89
53
#
90
54
 
118
82
# Options defined in ceilometer.network.notifications
119
83
#
120
84
 
121
 
# Exchange name for Quantum notifications (string value)
122
 
#quantum_control_exchange=quantum
 
85
# Exchange name for Neutron notifications (string value)
 
86
#neutron_control_exchange=neutron
123
87
 
124
88
 
125
89
#
136
100
#
137
101
 
138
102
# the filename to use with sqlite (string value)
139
 
#sqlite_db=ceilometer.sqlite
 
103
sqlite_db=sqlite:////var/lib/ceilometer/ceilometer.sqlite
140
104
 
141
105
# If true, use synchronous mode for sqlite (boolean value)
142
106
#sqlite_synchronous=true
277
241
 
278
242
 
279
243
#
 
244
# Options defined in ceilometer.openstack.common.policy
 
245
#
 
246
 
 
247
# JSON file containing policy (string value)
 
248
#policy_file=policy.json
 
249
 
 
250
# Rule enforced when requested rule is not found (string
 
251
# value)
 
252
#policy_default_rule=default
 
253
 
 
254
 
 
255
#
280
256
# Options defined in ceilometer.openstack.common.rpc
281
257
#
282
258
 
311
287
 
312
288
 
313
289
#
314
 
# Options defined in ceilometer.openstack.common.rpc.amqp
315
 
#
316
 
 
317
 
# Enable a fast single reply queue if using AMQP based RPC
318
 
# like RabbitMQ or Qpid. (boolean value)
319
 
#amqp_rpc_single_reply_queue=false
320
 
 
321
 
 
322
 
#
323
290
# Options defined in ceilometer.openstack.common.rpc.impl_kombu
324
291
#
325
292
 
444
411
# Name of this node. Must be a valid hostname, FQDN, or IP
445
412
# address. Must match "host" option, if running Nova. (string
446
413
# value)
447
 
#rpc_zmq_host=dex
 
414
#rpc_zmq_host=ceilometer
448
415
 
449
416
 
450
417
#
462
429
# Options defined in ceilometer.storage
463
430
#
464
431
 
465
 
# Database connection string (string value)
466
 
#database_connection=mongodb://localhost:27017/ceilometer
467
 
database_connection=sqlite:////var/lib/ceilometer/ceilometer.sqlite
 
432
# DEPRECATED - Database connection string (string value)
 
433
#database_connection=<None>
468
434
 
469
435
 
470
436
#
483
449
#cinder_control_exchange=cinder
484
450
 
485
451
 
486
 
[api]
487
 
 
488
 
#
489
 
# Options defined in ceilometer.api
490
 
#
491
 
 
492
 
# The port for the ceilometer API server (integer value)
493
 
#port=8777
494
 
 
495
 
# The listen IP for the ceilometer API server (string value)
496
 
#host=0.0.0.0
497
 
 
498
 
 
499
 
[publisher_udp]
500
 
 
501
 
#
502
 
# Options defined in ceilometer.publisher.udp
503
 
#
504
 
 
505
 
# The host target to publish metering records to. (string
 
452
[publisher_rpc]
 
453
 
 
454
#
 
455
# Options defined in ceilometer.publisher.rpc
 
456
#
 
457
 
 
458
# the topic ceilometer uses for metering messages (string
506
459
# value)
507
 
#host=localhost
 
460
#metering_topic=metering
508
461
 
509
 
# The port to send UDP meters to. (integer value)
510
 
#port=4952
 
462
# Secret value for signing metering messages (string value)
 
463
#metering_secret=change this or be hacked
511
464
 
512
465
 
513
466
[database]
530
483
 
531
484
# The SQLAlchemy connection string used to connect to the
532
485
# database (string value)
533
 
#connection=sqlite:////common/db/$sqlite_db
 
486
#connection=sqlite:////ceilometer/openstack/common/db/$sqlite_db
 
487
 
 
488
# The SQLAlchemy connection string used to connect to the
 
489
# slave database (string value)
 
490
#slave_connection=
534
491
 
535
492
# timeout before idle sql connections are reaped (integer
536
493
# value)
542
499
 
543
500
# Maximum number of SQL connections to keep open in a pool
544
501
# (integer value)
545
 
#max_pool_size=5
 
502
#max_pool_size=<None>
546
503
 
547
504
# maximum db connection retries during startup. (setting -1
548
505
# implies an infinite retry count) (integer value)
564
521
# value)
565
522
#connection_trace=false
566
523
 
567
 
 
568
 
[publisher_meter]
569
 
 
570
 
#
571
 
# Options defined in ceilometer.publisher.meter
572
 
#
573
 
 
574
 
# the topic ceilometer uses for metering messages (string
575
 
# value)
576
 
#metering_topic=metering
577
 
 
578
 
# Secret value for signing metering messages (string value)
579
 
#metering_secret=change this or be hacked
 
524
# If set, use this value for pool_timeout with sqlalchemy
 
525
# (integer value)
 
526
#pool_timeout=<None>
 
527
 
 
528
 
 
529
#
 
530
# Options defined in ceilometer.storage
 
531
#
 
532
 
 
533
# number of seconds that samples are kept in the database for
 
534
# (<= 0 means forever) (integer value)
 
535
#time_to_live=-1
 
536
 
 
537
 
 
538
[alarm]
 
539
 
 
540
#
 
541
# Options defined in ceilometer.alarm.service
 
542
#
 
543
 
 
544
# Period of threshold evaluation cycle, should be >= than
 
545
# configured pipeline interval for collection of underlying
 
546
# metrics. (integer value)
 
547
#threshold_evaluation_interval=60
580
548
 
581
549
 
582
550
[rpc_notifier2]
589
557
#topics=notifications
590
558
 
591
559
 
592
 
[matchmaker_redis]
593
 
 
594
 
#
595
 
# Options defined in ceilometer.openstack.common.rpc.matchmaker_redis
596
 
#
597
 
 
598
 
# Host to locate redis (string value)
599
 
#host=127.0.0.1
600
 
 
601
 
# Use this port to connect to redis host. (integer value)
602
 
#port=6379
603
 
 
604
 
# Password for Redis server. (optional) (string value)
605
 
#password=<None>
 
560
[api]
 
561
 
 
562
#
 
563
# Options defined in ceilometer.api
 
564
#
 
565
 
 
566
# The port for the ceilometer API server (integer value)
 
567
#port=8777
 
568
 
 
569
# The listen IP for the ceilometer API server (string value)
 
570
#host=0.0.0.0
 
571
 
 
572
 
 
573
[service_credentials]
 
574
 
 
575
#
 
576
# Options defined in ceilometer.service
 
577
#
 
578
 
 
579
# Username to use for openstack service access (string value)
 
580
#os_username=ceilometer
 
581
 
 
582
# Password to use for openstack service access (string value)
 
583
#os_password=admin
 
584
 
 
585
# Tenant ID to use for openstack service access (string value)
 
586
#os_tenant_id=
 
587
 
 
588
# Tenant name to use for openstack service access (string
 
589
# value)
 
590
#os_tenant_name=admin
 
591
 
 
592
# Auth URL to use for openstack service access (string value)
 
593
#os_auth_url=http://localhost:5000/v2.0
 
594
 
 
595
# Type of endpoint in Identity service catalog to use for
 
596
# communication with OpenStack services. (string value)
 
597
#os_endpoint_type=publicURL
606
598
 
607
599
 
608
600
[collector]
611
603
# Options defined in ceilometer.collector.service
612
604
#
613
605
 
614
 
# list of listener plugins to disable (list value)
615
 
#disabled_notification_listeners=
616
 
 
617
606
# address to bind the UDP socket todisabled if set to an empty
618
607
# string (string value)
619
608
#udp_address=0.0.0.0
621
610
# port to bind the UDP socket to (integer value)
622
611
#udp_port=4952
623
612
 
 
613
# Acknowledge message when event persistence fails (boolean
 
614
# value)
 
615
#ack_on_event_error=true
 
616
 
 
617
# Save event details (boolean value)
 
618
#store_events=false
 
619
 
624
620
 
625
621
[matchmaker_ring]
626
622
 
632
628
#ringfile=/etc/oslo/matchmaker_ring.json
633
629
 
634
630
 
635
 
# Total option count: 119
 
631
[matchmaker_redis]
 
632
 
 
633
#
 
634
# Options defined in ceilometer.openstack.common.rpc.matchmaker_redis
 
635
#
 
636
 
 
637
# Host to locate redis (string value)
 
638
#host=127.0.0.1
 
639
 
 
640
# Use this port to connect to redis host. (integer value)
 
641
#port=6379
 
642
 
 
643
# Password for Redis server. (optional) (string value)
 
644
#password=<None>
 
645
 
 
646
 
 
647
# Total option count: 123