3ccb176f13
This project [1] can provide a one-stop solution to log collection, cleaning, indexing, analysis, alarm, visualization, report generation and other needs, which involves helping operator or maintainer to quickly solve retrieve problems, grasp the operational health of the platform, and improve the level of platform management. [1] https://wiki.openstack.org/wiki/Venus Change-Id: If3562bbed6181002b76831bab54f863041c5a885
36 lines
1.4 KiB
Django/Jinja
36 lines
1.4 KiB
Django/Jinja
[DEFAULT]
|
|
my_ip = {{ api_interface_address }}
|
|
periodic_interval = 60
|
|
rootwrap_config = /etc/venus/rootwrap.conf
|
|
api_paste_config = /etc/venus/api-paste.ini
|
|
log_dir = /var/log/kolla/venus/
|
|
debug = {{ venus_logging_debug }}
|
|
auth_strategy = keystone
|
|
os_region_name = {{ openstack_region_name }}
|
|
osapi_venus_listen = {{ api_interface_address }}
|
|
osapi_venus_listen_port = {{ venus_api_port }}
|
|
|
|
logging_default_format_string = {{ openstack_logging_default_format_string }}
|
|
logging_context_format_string = {{ openstack_logging_context_format_string }}
|
|
|
|
transport_url = {{ rpc_transport_url }}
|
|
|
|
[database]
|
|
connection = mysql+pymysql://{{ venus_database_user }}:{{ venus_database_password }}@{{ venus_database_address }}/{{ venus_database_name }}?charset=utf8
|
|
|
|
[keystone_authtoken]
|
|
cafile = {{ openstack_cacert }}
|
|
project_name = service
|
|
password = {{ venus_keystone_password }}
|
|
username = {{ venus_keystone_user }}
|
|
auth_url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
project_domain_id = {{ default_project_domain_id }}
|
|
user_domain_id = {{ default_user_domain_id }}
|
|
auth_type = password
|
|
memcached_servers = {% for host in groups['memcached'] %}{{ 'api' | kolla_address(host) | put_address_in_context('memcache') }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
|
|
|
{% if enable_elasticsearch | bool %}
|
|
[elasticsearch]
|
|
url = {{ elasticsearch_internal_endpoint }}
|
|
{% endif %}
|