Advertisement
alvise72

Untitled

Jul 30th, 2015
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 26.63 KB | None | 0 0
  1. [DEFAULT]
  2. rpc_backend = ceilometer.openstack.common.rpc.impl_kombu
  3. rabbit_hosts = 192.168.60.250:5672,192.168.60.251:5672,192.168.60.252:5672
  4.  
  5. #
  6. # Options defined in ceilometer.middleware
  7. #
  8.  
  9. # Exchanges name to listen for notifications. (multi valued)
  10. #http_control_exchanges=nova
  11. #http_control_exchanges=glance
  12. #http_control_exchanges=neutron
  13. #http_control_exchanges=cinder
  14.  
  15.  
  16. #
  17. # Options defined in ceilometer.pipeline
  18. #
  19.  
  20. # Configuration file for pipeline definition. (string value)
  21. #pipeline_cfg_file=pipeline.yaml
  22.  
  23.  
  24. #
  25. # Options defined in ceilometer.sample
  26. #
  27.  
  28. # Source for samples emitted on this instance. (string value)
  29. # Deprecated group/name - [DEFAULT]/counter_source
  30. #sample_source=openstack
  31.  
  32.  
  33. #
  34. # Options defined in ceilometer.service
  35. #
  36.  
  37. # Name of this node, which must be valid in an AMQP key. Can
  38. # be an opaque identifier. For ZeroMQ only, must be a valid
  39. # host name, FQDN, or IP address. (string value)
  40. #host=ceilometer
  41.  
  42. # Dispatcher to process data. (multi valued)
  43. #dispatcher=database
  44.  
  45. # Number of workers for collector service. A single
  46. # collector is enabled by default. (integer value)
  47. #collector_workers=1
  48.  
  49. # Number of workers for notification service. A single
  50. # notification agent is enabled by default. (integer value)
  51. #notification_workers=1
  52.  
  53.  
  54. #
  55. # Options defined in ceilometer.api.app
  56. #
  57.  
  58. # The strategy to use for auth: noauth or keystone. (string
  59. # value)
  60. #auth_strategy=keystone
  61.  
  62. # Deploy the deprecated v1 API. (boolean value)
  63. #enable_v1_api=true
  64.  
  65.  
  66. #
  67. # Options defined in ceilometer.compute.notifications
  68. #
  69.  
  70. # Exchange name for Nova notifications. (string value)
  71. #nova_control_exchange=nova
  72.  
  73.  
  74. #
  75. # Options defined in ceilometer.compute.util
  76. #
  77.  
  78. # List of metadata prefixes reserved for metering use. (list
  79. # value)
  80. #reserved_metadata_namespace=metering.
  81.  
  82. # Limit on length of reserved metadata values. (integer value)
  83. #reserved_metadata_length=256
  84.  
  85.  
  86. #
  87. # Options defined in ceilometer.compute.virt.inspector
  88. #
  89.  
  90. # Inspector to use for inspecting the hypervisor layer.
  91. # (string value)
  92. #hypervisor_inspector=libvirt
  93.  
  94.  
  95. #
  96. # Options defined in ceilometer.compute.virt.libvirt.inspector
  97. #
  98.  
  99. # Libvirt domain type (valid options are: kvm, lxc, qemu, uml,
  100. # xen). (string value)
  101. #libvirt_type=kvm
  102.  
  103. # Override the default libvirt URI (which is dependent on
  104. # libvirt_type). (string value)
  105. #libvirt_uri=
  106.  
  107.  
  108. #
  109. # Options defined in ceilometer.image.notifications
  110. #
  111.  
  112. # Exchange name for Glance notifications. (string value)
  113. #glance_control_exchange=glance
  114.  
  115.  
  116. #
  117. # Options defined in ceilometer.network.notifications
  118. #
  119.  
  120. # Exchange name for Neutron notifications. (string value)
  121. # Deprecated group/name - [DEFAULT]/quantum_control_exchange
  122. #neutron_control_exchange=neutron
  123.  
  124.  
  125. #
  126. # Options defined in ceilometer.objectstore.swift
  127. #
  128.  
  129. # Swift reseller prefix. Must be on par with reseller_prefix
  130. # in proxy-server.conf. (string value)
  131. #reseller_prefix=AUTH_
  132.  
  133.  
  134. #
  135. # Options defined in ceilometer.openstack.common.db.sqlalchemy.session
  136. #
  137.  
  138. # The file name to use with SQLite (string value)
  139. #sqlite_db=ceilometer.sqlite
  140.  
  141. # If True, SQLite uses synchronous mode (boolean value)
  142. #sqlite_synchronous=true
  143.  
  144.  
  145. #
  146. # Options defined in ceilometer.openstack.common.eventlet_backdoor
  147. #
  148.  
  149. # Enable eventlet backdoor.  Acceptable values are 0, <port>,
  150. # and <start>:<end>, where 0 results in listening on a random
  151. # tcp port number; <port> results in listening on the
  152. # specified port number (and not enabling backdoor if that
  153. # port is in use); and <start>:<end> results in listening on
  154. # the smallest unused port number within the specified range
  155. # of port numbers.  The chosen port is displayed in the
  156. # service's log file. (string value)
  157. #backdoor_port=<None>
  158.  
  159.  
  160. #
  161. # Options defined in ceilometer.openstack.common.lockutils
  162. #
  163.  
  164. # Whether to disable inter-process locks. (boolean value)
  165. #disable_process_locking=false
  166.  
  167. # Directory to use for lock files. (string value)
  168. #lock_path=<None>
  169.  
  170.  
  171. #
  172. # Options defined in ceilometer.openstack.common.log
  173. #
  174.  
  175. # Print debugging output (set logging level to DEBUG instead
  176. # of default WARNING level). (boolean value)
  177. #debug=false
  178.  
  179. # Print more verbose output (set logging level to INFO instead
  180. # of default WARNING level). (boolean value)
  181. #verbose=false
  182.  
  183. # Log output to standard error (boolean value)
  184. #use_stderr=False
  185.  
  186. # Format string to use for log messages with context (string
  187. # value)
  188. #logging_context_format_string=%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  189.  
  190. # Format string to use for log messages without context
  191. # (string value)
  192. #logging_default_format_string=%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  193.  
  194. # Data to append to log format when level is DEBUG (string
  195. # value)
  196. #logging_debug_format_suffix=%(funcName)s %(pathname)s:%(lineno)d
  197.  
  198. # Prefix each line of exception output with this format
  199. # (string value)
  200. #logging_exception_prefix=%(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s
  201.  
  202. # List of logger=LEVEL pairs (list value)
  203. #default_log_levels=amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN
  204.  
  205. # Publish error events (boolean value)
  206. #publish_errors=false
  207.  
  208. # Make deprecations fatal (boolean value)
  209. #fatal_deprecations=false
  210.  
  211. # If an instance is passed with the log message, format it
  212. # like this (string value)
  213. #instance_format="[instance: %(uuid)s] "
  214.  
  215. # If an instance UUID is passed with the log message, format
  216. # it like this (string value)
  217. #instance_uuid_format="[instance: %(uuid)s] "
  218.  
  219. # The name of logging configuration file. It does not disable
  220. # existing loggers, but just appends specified logging
  221. # configuration to any other existing logging options. Please
  222. # see the Python logging module documentation for details on
  223. # logging configuration files. (string value)
  224. # Deprecated group/name - [DEFAULT]/log_config
  225. #log_config_append=<None>
  226.  
  227. # DEPRECATED. A logging.Formatter log message format string
  228. # which may use any of the available logging.LogRecord
  229. # attributes. This option is deprecated.  Please use
  230. # logging_context_format_string and
  231. # logging_default_format_string instead. (string value)
  232. #log_format=<None>
  233.  
  234. # Format string for %%(asctime)s in log records. Default:
  235. # %(default)s (string value)
  236. #log_date_format=%Y-%m-%d %H:%M:%S
  237.  
  238. # (Optional) Name of log file to output to. If no default is
  239. # set, logging will go to stdout. (string value)
  240. # Deprecated group/name - [DEFAULT]/logfile
  241. #log_file=<None>
  242.  
  243. # (Optional) The base directory used for relative --log-file
  244. # paths (string value)
  245. # Deprecated group/name - [DEFAULT]/logdir
  246. #log_dir=/var/log/ceilometer
  247.  
  248. # Use syslog for logging. Existing syslog format is DEPRECATED
  249. # during I, and then will be changed in J to honor RFC5424
  250. # (boolean value)
  251. #use_syslog=false
  252.  
  253. # (Optional) Use syslog rfc5424 format for logging. If
  254. # enabled, will add APP-NAME (RFC5424) before the MSG part of
  255. # the syslog message.  The old format without APP-NAME is
  256. # deprecated in I, and will be removed in J. (boolean value)
  257. #use_syslog_rfc_format=false
  258.  
  259. # Syslog facility to receive log lines (string value)
  260. #syslog_log_facility=LOG_USER
  261.  
  262.  
  263. #
  264. # Options defined in ceilometer.openstack.common.middleware.sizelimit
  265. #
  266.  
  267. # The maximum body size per request, in bytes (integer value)
  268. # Deprecated group/name - [DEFAULT]/osapi_max_request_body_size
  269. #max_request_body_size=114688
  270.  
  271.  
  272. #
  273. # Options defined in ceilometer.openstack.common.notifier.api
  274. #
  275.  
  276. # Driver or drivers to handle sending notifications (multi
  277. # valued)
  278. #notification_driver=
  279.  
  280. # Default notification level for outgoing notifications
  281. # (string value)
  282. #default_notification_level=INFO
  283.  
  284. # Default publisher_id for outgoing notifications (string
  285. # value)
  286. #default_publisher_id=<None>
  287.  
  288.  
  289. #
  290. # Options defined in ceilometer.openstack.common.notifier.rpc_notifier
  291. #
  292.  
  293. # AMQP topic used for OpenStack notifications (list value)
  294. #notification_topics=notifications
  295.  
  296.  
  297. #
  298. # Options defined in ceilometer.openstack.common.policy
  299. #
  300.  
  301. # JSON file containing policy (string value)
  302. #policy_file=policy.json
  303.  
  304. # Rule enforced when requested rule is not found (string
  305. # value)
  306. #policy_default_rule=default
  307.  
  308.  
  309. #
  310. # Options defined in ceilometer.openstack.common.rpc
  311. #
  312.  
  313. # The messaging module to use, defaults to kombu. (string
  314. # value)
  315. #rpc_backend=ceilometer.openstack.common.rpc.impl_kombu
  316.  
  317. # Size of RPC thread pool (integer value)
  318. #rpc_thread_pool_size=64
  319.  
  320. # Size of RPC connection pool (integer value)
  321. #rpc_conn_pool_size=30
  322.  
  323. # Seconds to wait for a response from call or multicall
  324. # (integer value)
  325. #rpc_response_timeout=60
  326.  
  327. # Seconds to wait before a cast expires (TTL). Only supported
  328. # by impl_zmq. (integer value)
  329. #rpc_cast_timeout=30
  330.  
  331. # Modules of exceptions that are permitted to be recreated
  332. # upon receiving exception data from an rpc call. (list value)
  333. #allowed_rpc_exception_modules=nova.exception,cinder.exception,exceptions
  334.  
  335. # If passed, use a fake RabbitMQ provider (boolean value)
  336. #fake_rabbit=false
  337.  
  338. # AMQP exchange to connect to if using RabbitMQ or Qpid
  339. # (string value)
  340. #control_exchange=openstack
  341.  
  342.  
  343. #
  344. # Options defined in ceilometer.openstack.common.rpc.amqp
  345. #
  346.  
  347. # Use durable queues in amqp. (boolean value)
  348. # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
  349. #amqp_durable_queues=false
  350.  
  351. # Auto-delete queues in amqp. (boolean value)
  352. #amqp_auto_delete=false
  353.  
  354.  
  355. #
  356. # Options defined in ceilometer.openstack.common.rpc.impl_kombu
  357. #
  358.  
  359. # If SSL is enabled, the SSL version to use. Valid values are
  360. # TLSv1, SSLv23 and SSLv3. SSLv2 might be available on some
  361. # distributions. (string value)
  362. #kombu_ssl_version=
  363.  
  364. # SSL key file (valid only if SSL enabled) (string value)
  365. #kombu_ssl_keyfile=
  366.  
  367. # SSL cert file (valid only if SSL enabled) (string value)
  368. #kombu_ssl_certfile=
  369.  
  370. # SSL certification authority file (valid only if SSL enabled)
  371. # (string value)
  372. #kombu_ssl_ca_certs=
  373.  
  374. # The RabbitMQ broker address where a single node is used
  375. # (string value)
  376. #rabbit_host=localhost
  377.  
  378. # The RabbitMQ broker port where a single node is used
  379. # (integer value)
  380. #rabbit_port=5672
  381.  
  382. # RabbitMQ HA cluster host:port pairs (list value)
  383. #rabbit_hosts=$rabbit_host:$rabbit_port
  384.  
  385. # Connect over SSL for RabbitMQ (boolean value)
  386. #rabbit_use_ssl=false
  387.  
  388. # The RabbitMQ userid (string value)
  389. #rabbit_userid=guest
  390.  
  391. # The RabbitMQ password (string value)
  392. #rabbit_password=guest
  393.  
  394. # The RabbitMQ virtual host (string value)
  395. #rabbit_virtual_host=/
  396.  
  397. # How frequently to retry connecting with RabbitMQ (integer
  398. # value)
  399. #rabbit_retry_interval=1
  400.  
  401. # How long to backoff for between retries when connecting to
  402. # RabbitMQ (integer value)
  403. #rabbit_retry_backoff=2
  404.  
  405. # Maximum number of RabbitMQ connection retries. Default is 0
  406. # (infinite retry count) (integer value)
  407. #rabbit_max_retries=0
  408.  
  409. # Use HA queues in RabbitMQ (x-ha-policy: all). If you change
  410. # this option, you must wipe the RabbitMQ database. (boolean
  411. # value)
  412. #rabbit_ha_queues=false
  413.  
  414.  
  415. #
  416. # Options defined in ceilometer.openstack.common.rpc.impl_qpid
  417. #
  418.  
  419. # Qpid broker hostname (string value)
  420. #qpid_hostname=localhost
  421.  
  422. # Qpid broker port (integer value)
  423. #qpid_port=5672
  424.  
  425. # Qpid HA cluster host:port pairs (list value)
  426. #qpid_hosts=$qpid_hostname:$qpid_port
  427.  
  428. # Username for qpid connection (string value)
  429. #qpid_username=
  430.  
  431. # Password for qpid connection (string value)
  432. #qpid_password=
  433.  
  434. # Space separated list of SASL mechanisms to use for auth
  435. # (string value)
  436. #qpid_sasl_mechanisms=
  437.  
  438. # Seconds between connection keepalive heartbeats (integer
  439. # value)
  440. #qpid_heartbeat=60
  441.  
  442. # Transport to use, either 'tcp' or 'ssl' (string value)
  443. #qpid_protocol=tcp
  444.  
  445. # Disable Nagle algorithm (boolean value)
  446. #qpid_tcp_nodelay=true
  447.  
  448. # The qpid topology version to use.  Version 1 is what was
  449. # originally used by impl_qpid.  Version 2 includes some
  450. # backwards-incompatible changes that allow broker federation
  451. # to work.  Users should update to version 2 when they are
  452. # able to take everything down, as it requires a clean break.
  453. # (integer value)
  454. #qpid_topology_version=1
  455.  
  456.  
  457. #
  458. # Options defined in ceilometer.openstack.common.rpc.impl_zmq
  459. #
  460.  
  461. # ZeroMQ bind address. Should be a wildcard (*), an ethernet
  462. # interface, or IP. The "host" option should point or resolve
  463. # to this address. (string value)
  464. #rpc_zmq_bind_address=*
  465.  
  466. # MatchMaker driver (string value)
  467. #rpc_zmq_matchmaker=ceilometer.openstack.common.rpc.matchmaker.MatchMakerLocalhost
  468.  
  469. # ZeroMQ receiver listening port (integer value)
  470. #rpc_zmq_port=9501
  471.  
  472. # Number of ZeroMQ contexts, defaults to 1 (integer value)
  473. #rpc_zmq_contexts=1
  474.  
  475. # Maximum number of ingress messages to locally buffer per
  476. # topic. Default is unlimited. (integer value)
  477. #rpc_zmq_topic_backlog=<None>
  478.  
  479. # Directory for holding IPC sockets (string value)
  480. #rpc_zmq_ipc_dir=/var/run/openstack
  481.  
  482. # Name of this node. Must be a valid hostname, FQDN, or IP
  483. # address. Must match "host" option, if running Nova. (string
  484. # value)
  485. #rpc_zmq_host=ceilometer
  486.  
  487.  
  488. #
  489. # Options defined in ceilometer.openstack.common.rpc.matchmaker
  490. #
  491.  
  492. # Heartbeat frequency (integer value)
  493. #matchmaker_heartbeat_freq=300
  494.  
  495. # Heartbeat time-to-live. (integer value)
  496. #matchmaker_heartbeat_ttl=600
  497.  
  498.  
  499. #
  500. # Options defined in ceilometer.orchestration.notifications
  501. #
  502.  
  503. # Exchange name for Heat notifications (string value)
  504. #heat_control_exchange=heat
  505.  
  506.  
  507. #
  508. # Options defined in ceilometer.storage
  509. #
  510.  
  511. # DEPRECATED - Database connection string. (string value)
  512. #database_connection=<None>
  513.  
  514.  
  515. #
  516. # Options defined in ceilometer.storage.sqlalchemy.models
  517. #
  518.  
  519. # MySQL engine to use. (string value)
  520. #mysql_engine=InnoDB
  521.  
  522.  
  523. #
  524. # Options defined in ceilometer.volume.notifications
  525. #
  526.  
  527. # Exchange name for Cinder notifications. (string value)
  528. #cinder_control_exchange=cinder
  529.  
  530.  
  531. [alarm]
  532.  
  533. #
  534. # Options defined in ceilometer.cli
  535. #
  536.  
  537. # Class to launch as alarm evaluation service. (string value)
  538. #evaluation_service=ceilometer.alarm.service.SingletonAlarmService
  539.  
  540.  
  541. #
  542. # Options defined in ceilometer.alarm.notifier.rest
  543. #
  544.  
  545. # SSL Client certificate for REST notifier. (string value)
  546. #rest_notifier_certificate_file=
  547.  
  548. # SSL Client private key for REST notifier. (string value)
  549. #rest_notifier_certificate_key=
  550.  
  551. # Whether to verify the SSL Server certificate when calling
  552. # alarm action. (boolean value)
  553. #rest_notifier_ssl_verify=true
  554.  
  555.  
  556. #
  557. # Options defined in ceilometer.alarm.rpc
  558. #
  559.  
  560. # The topic that ceilometer uses for alarm notifier messages.
  561. # (string value)
  562. #notifier_rpc_topic=alarm_notifier
  563.  
  564. # The topic that ceilometer uses for alarm partition
  565. # coordination messages. (string value)
  566. #partition_rpc_topic=alarm_partition_coordination
  567.  
  568.  
  569. #
  570. # Options defined in ceilometer.alarm.service
  571. #
  572.  
  573. # Period of evaluation cycle, should be >= than configured
  574. # pipeline interval for collection of underlying metrics.
  575. # (integer value)
  576. # Deprecated group/name - [alarm]/threshold_evaluation_interval
  577. #evaluation_interval=60
  578.  
  579.  
  580. #
  581. # Options defined in ceilometer.api.controllers.v2
  582. #
  583.  
  584. # Record alarm change events. (boolean value)
  585. #record_history=true
  586.  
  587.  
  588. [api]
  589.  
  590. #
  591. # Options defined in ceilometer.api
  592. #
  593.  
  594. # The port for the ceilometer API server. (integer value)
  595. # Deprecated group/name - [DEFAULT]/metering_api_port
  596. #port=8777
  597.  
  598. # The listen IP for the ceilometer API server. (string value)
  599. #host=0.0.0.0
  600.  
  601.  
  602. [collector]
  603.  
  604. #
  605. # Options defined in ceilometer.collector
  606. #
  607.  
  608. # Address to which the UDP socket is bound. Set to an empty
  609. # string to disable. (string value)
  610. #udp_address=0.0.0.0
  611.  
  612. # Port to which the UDP socket is bound. (integer value)
  613. #udp_port=4952
  614.  
  615.  
  616. [database]
  617.  
  618. #
  619. # Options defined in ceilometer.openstack.common.db.api
  620. #
  621.  
  622. # The backend to use for db (string value)
  623. # Deprecated group/name - [DEFAULT]/db_backend
  624. #backend=sqlalchemy
  625.  
  626.  
  627. #
  628. # Options defined in ceilometer.openstack.common.db.sqlalchemy.session
  629. #
  630.  
  631. # The SQLAlchemy connection string used to connect to the
  632. # database (string value)
  633. # Deprecated group/name - [DEFAULT]/sql_connection
  634. # Deprecated group/name - [DATABASE]/sql_connection
  635. # Deprecated group/name - [sql]/connection
  636. #connection=mongodb://localhost:27017/ceilometer
  637.  
  638. # The SQLAlchemy connection string used to connect to the
  639. # slave database (string value)
  640. #slave_connection=
  641.  
  642. # Timeout before idle sql connections are reaped (integer
  643. # value)
  644. # Deprecated group/name - [DEFAULT]/sql_idle_timeout
  645. # Deprecated group/name - [DATABASE]/sql_idle_timeout
  646. # Deprecated group/name - [sql]/idle_timeout
  647. #idle_timeout=3600
  648.  
  649. # Minimum number of SQL connections to keep open in a pool
  650. # (integer value)
  651. # Deprecated group/name - [DEFAULT]/sql_min_pool_size
  652. # Deprecated group/name - [DATABASE]/sql_min_pool_size
  653. #min_pool_size=1
  654.  
  655. # Maximum number of SQL connections to keep open in a pool
  656. # (integer value)
  657. # Deprecated group/name - [DEFAULT]/sql_max_pool_size
  658. # Deprecated group/name - [DATABASE]/sql_max_pool_size
  659. #max_pool_size=<None>
  660.  
  661. # Maximum db connection retries during startup. (setting -1
  662. # implies an infinite retry count) (integer value)
  663. # Deprecated group/name - [DEFAULT]/sql_max_retries
  664. # Deprecated group/name - [DATABASE]/sql_max_retries
  665. #max_retries=10
  666.  
  667. # Interval between retries of opening a sql connection
  668. # (integer value)
  669. # Deprecated group/name - [DEFAULT]/sql_retry_interval
  670. # Deprecated group/name - [DATABASE]/reconnect_interval
  671. #retry_interval=10
  672.  
  673. # If set, use this value for max_overflow with sqlalchemy
  674. # (integer value)
  675. # Deprecated group/name - [DEFAULT]/sql_max_overflow
  676. # Deprecated group/name - [DATABASE]/sqlalchemy_max_overflow
  677. #max_overflow=<None>
  678.  
  679. # Verbosity of SQL debugging information. 0=None,
  680. # 100=Everything (integer value)
  681. # Deprecated group/name - [DEFAULT]/sql_connection_debug
  682. #connection_debug=0
  683.  
  684. # Add python stack traces to SQL as comment strings (boolean
  685. # value)
  686. # Deprecated group/name - [DEFAULT]/sql_connection_trace
  687. #connection_trace=false
  688.  
  689. # If set, use this value for pool_timeout with sqlalchemy
  690. # (integer value)
  691. # Deprecated group/name - [DATABASE]/sqlalchemy_pool_timeout
  692. #pool_timeout=<None>
  693.  
  694.  
  695. #
  696. # Options defined in ceilometer.storage
  697. #
  698.  
  699. # Number of seconds that samples are kept in the database for
  700. # (<= 0 means forever). (integer value)
  701. #time_to_live=-1
  702.  
  703.  
  704. [dispatcher_file]
  705.  
  706. #
  707. # Options defined in ceilometer.dispatcher.file
  708. #
  709.  
  710. # Name and the location of the file to record meters. (string
  711. # value)
  712. #file_path=<None>
  713.  
  714. # The max size of the file. (integer value)
  715. #max_bytes=0
  716.  
  717. # The max number of the files to keep. (integer value)
  718. #backup_count=0
  719.  
  720.  
  721. [event]
  722.  
  723. #
  724. # Options defined in ceilometer.event.converter
  725. #
  726.  
  727. # Configuration file for event definitions. (string value)
  728. #definitions_cfg_file=event_definitions.yaml
  729.  
  730. # Drop notifications if no event definition matches.
  731. # (Otherwise, we convert them with just the default traits)
  732. # (boolean value)
  733. #drop_unmatched_notifications=false
  734.  
  735.  
  736. [keystone_authtoken]
  737. auth_host = 192.168.60.24
  738. admin_user = ceilometer
  739. admin_tenant_name = service
  740. auth_protocol = http
  741. admin_password = CEILOMETER_PASS
  742.  
  743. #
  744. # Options defined in keystoneclient.middleware.auth_token
  745. #
  746.  
  747. # Prefix to prepend at the beginning of the path (string
  748. # value)
  749. #auth_admin_prefix=
  750.  
  751. # Host providing the admin Identity API endpoint (string
  752. # value)
  753. #auth_host=127.0.0.1
  754.  
  755. # Port of the admin Identity API endpoint (integer value)
  756. #auth_port=35357
  757.  
  758. # Protocol of the admin Identity API endpoint(http or https)
  759. # (string value)
  760. #auth_protocol=https
  761.  
  762. # Complete public Identity API endpoint (string value)
  763. #auth_uri=<None>
  764.  
  765. # API version of the admin Identity API endpoint (string
  766. # value)
  767. #auth_version=<None>
  768.  
  769. # Do not handle authorization requests within the middleware,
  770. # but delegate the authorization decision to downstream WSGI
  771. # components (boolean value)
  772. #delay_auth_decision=false
  773.  
  774. # Request timeout value for communicating with Identity API
  775. # server. (boolean value)
  776. #http_connect_timeout=<None>
  777.  
  778. # How many times are we trying to reconnect when communicating
  779. # with Identity API Server. (integer value)
  780. #http_request_max_retries=3
  781.  
  782. # Allows to pass in the name of a fake http_handler callback
  783. # function used instead of httplib.HTTPConnection or
  784. # httplib.HTTPSConnection. Useful for unit testing where
  785. # network is not available. (string value)
  786. #http_handler=<None>
  787.  
  788. # Single shared secret with the Keystone configuration used
  789. # for bootstrapping a Keystone installation, or otherwise
  790. # bypassing the normal authentication process. (string value)
  791. #admin_token=<None>
  792.  
  793. # Keystone account username (string value)
  794. #admin_user=<None>
  795.  
  796. # Keystone account password (string value)
  797. #admin_password=<None>
  798.  
  799. # Keystone service account tenant name to validate user tokens
  800. # (string value)
  801. #admin_tenant_name=admin
  802.  
  803. # Env key for the swift cache (string value)
  804. #cache=<None>
  805.  
  806. # Required if Keystone server requires client certificate
  807. # (string value)
  808. #certfile=<None>
  809.  
  810. # Required if Keystone server requires client certificate
  811. # (string value)
  812. #keyfile=<None>
  813.  
  814. # A PEM encoded Certificate Authority to use when verifying
  815. # HTTPs connections. Defaults to system CAs. (string value)
  816. #cafile=<None>
  817.  
  818. # Verify HTTPS connections. (boolean value)
  819. #insecure=false
  820.  
  821. # Directory used to cache files related to PKI tokens (string
  822. # value)
  823. #signing_dir=<None>
  824.  
  825. # If defined, the memcache server(s) to use for caching (list
  826. # value)
  827. # Deprecated group/name - [DEFAULT]/memcache_servers
  828. #memcached_servers=<None>
  829.  
  830. # In order to prevent excessive requests and validations, the
  831. # middleware uses an in-memory cache for the tokens the
  832. # Keystone API returns. This is only valid if memcache_servers
  833. # is defined. Set to -1 to disable caching completely.
  834. # (integer value)
  835. #token_cache_time=300
  836.  
  837. # Value only used for unit testing (integer value)
  838. #revocation_cache_time=1
  839.  
  840. # (optional) if defined, indicate whether token data should be
  841. # authenticated or authenticated and encrypted. Acceptable
  842. # values are MAC or ENCRYPT.  If MAC, token data is
  843. # authenticated (with HMAC) in the cache. If ENCRYPT, token
  844. # data is encrypted and authenticated in the cache. If the
  845. # value is not one of these options or empty, auth_token will
  846. # raise an exception on initialization. (string value)
  847. #memcache_security_strategy=<None>
  848.  
  849. # (optional, mandatory if memcache_security_strategy is
  850. # defined) this string is used for key derivation. (string
  851. # value)
  852. #memcache_secret_key=<None>
  853.  
  854. # (optional) indicate whether to set the X-Service-Catalog
  855. # header. If False, middleware will not ask for service
  856. # catalog on token validation and will not set the X-Service-
  857. # Catalog header. (boolean value)
  858. #include_service_catalog=true
  859.  
  860. # Used to control the use and type of token binding. Can be
  861. # set to: "disabled" to not check token binding. "permissive"
  862. # (default) to validate binding information if the bind type
  863. # is of a form known to the server and ignore it if not.
  864. # "strict" like "permissive" but if the bind type is unknown
  865. # the token will be rejected. "required" any form of token
  866. # binding is needed to be allowed. Finally the name of a
  867. # binding method that must be present in tokens. (string
  868. # value)
  869. #enforce_token_bind=permissive
  870.  
  871.  
  872. [matchmaker_redis]
  873.  
  874. #
  875. # Options defined in ceilometer.openstack.common.rpc.matchmaker_redis
  876. #
  877.  
  878. # Host to locate redis (string value)
  879. #host=127.0.0.1
  880.  
  881. # Use this port to connect to redis host. (integer value)
  882. #port=6379
  883.  
  884. # Password for Redis server. (optional) (string value)
  885. #password=<None>
  886.  
  887.  
  888. [matchmaker_ring]
  889.  
  890. #
  891. # Options defined in ceilometer.openstack.common.rpc.matchmaker_ring
  892. #
  893.  
  894. # Matchmaker ring file (JSON) (string value)
  895. # Deprecated group/name - [DEFAULT]/matchmaker_ringfile
  896. #ringfile=/etc/oslo/matchmaker_ring.json
  897.  
  898.  
  899. [notification]
  900.  
  901. #
  902. # Options defined in ceilometer.notification
  903. #
  904.  
  905. # Acknowledge message when event persistence fails. (boolean
  906. # value)
  907. #ack_on_event_error=true
  908.  
  909. # Save event details. (boolean value)
  910. #store_events=false
  911.  
  912.  
  913. [publisher]
  914. metering_secret = 3116df8c90472c836048
  915.  
  916. #
  917. # Options defined in ceilometer.publisher.utils
  918. #
  919.  
  920. # Secret value for signing metering messages. (string value)
  921. # Deprecated group/name - [DEFAULT]/metering_secret
  922. # Deprecated group/name - [publisher_rpc]/metering_secret
  923. #metering_secret=change this or be hacked
  924.  
  925.  
  926. [publisher_rpc]
  927.  
  928. #
  929. # Options defined in ceilometer.publisher.rpc
  930. #
  931.  
  932. # The topic that ceilometer uses for metering messages.
  933. # (string value)
  934. #metering_topic=metering
  935.  
  936.  
  937. [rpc_notifier2]
  938.  
  939. #
  940. # Options defined in ceilometer.openstack.common.notifier.rpc_notifier2
  941. #
  942.  
  943. # AMQP topic(s) used for OpenStack notifications (list value)
  944. #topics=notifications
  945.  
  946.  
  947. [service_credentials]
  948. os_username = ceilometer
  949. os_tenant_name = service
  950. os_password = CEILOMETER_PASS
  951. os_auth_url = http://192.168.60.24:5000/v2.0
  952. os_cacert = /etc/grid-security/certificates/INFN-CA-2006.pem
  953.  
  954. #
  955. # Options defined in ceilometer.service
  956. #
  957.  
  958. # User name to use for OpenStack service access. (string
  959. # value)
  960. #os_username=ceilometer
  961.  
  962. # Password to use for OpenStack service access. (string value)
  963. #os_password=admin
  964.  
  965. # Tenant ID to use for OpenStack service access. (string
  966. # value)
  967. #os_tenant_id=
  968.  
  969. # Tenant name to use for OpenStack service access. (string
  970. # value)
  971. #os_tenant_name=admin
  972.  
  973. # Certificate chain for SSL validation. (string value)
  974. #os_cacert=<None>
  975.  
  976. # Auth URL to use for OpenStack service access. (string value)
  977. #os_auth_url=http://localhost:5000/v2.0
  978.  
  979. # Region name to use for OpenStack service endpoints. (string
  980. # value)
  981. #os_region_name=<None>
  982.  
  983. # Type of endpoint in Identity service catalog to use for
  984. # communication with OpenStack services. (string value)
  985. #os_endpoint_type=publicURL
  986.  
  987. # Disables X.509 certificate validation when an SSL connection
  988. # to Identity Service is established. (boolean value)
  989. #insecure=false
  990.  
  991.  
  992. [ssl]
  993.  
  994. #
  995. # Options defined in ceilometer.openstack.common.sslutils
  996. #
  997.  
  998. # CA certificate file to use to verify connecting clients
  999. # (string value)
  1000. #ca_file=<None>
  1001.  
  1002. # Certificate file to use when starting the server securely
  1003. # (string value)
  1004. #cert_file=<None>
  1005.  
  1006. # Private key file to use when starting the server securely
  1007. # (string value)
  1008. #key_file=<None>
  1009.  
  1010.  
  1011. [vmware]
  1012.  
  1013. #
  1014. # Options defined in ceilometer.compute.virt.vmware.inspector
  1015. #
  1016.  
  1017. # IP address of the VMware Vsphere host (string value)
  1018. #host_ip=
  1019.  
  1020. # Username of VMware Vsphere (string value)
  1021. #host_username=
  1022.  
  1023. # Password of VMware Vsphere (string value)
  1024. #host_password=
  1025.  
  1026. # Number of times a VMware Vsphere API must be retried
  1027. # (integer value)
  1028. #api_retry_count=10
  1029.  
  1030. # Sleep time in seconds for polling an ongoing async task
  1031. # (floating point value)
  1032. #task_poll_interval=0.5
  1033.  
  1034.  
  1035.  
  1036.  
  1037. [rabbit_ha_queues]
  1038. true =
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement