4
4
Operations and Monitoring
5
5
=========================
6
6
7
- Access to Kibana
8
- ================
7
+ Access to OpenSearch Dashboards
8
+ ===============================
9
9
10
10
OpenStack control plane logs are aggregated from all servers by Fluentd and
11
- stored in ElasticSearch . The control plane logs can be accessed from
12
- ElasticSearch using Kibana , which is available at the following URL:
13
- |kibana_url |
11
+ stored in OpenSearch . The control plane logs can be accessed from
12
+ OpenSearch using OpenSearch Dashboards , which is available at the following URL:
13
+ |opensearch_dashboards_url |
14
14
15
- To log in, use the ``kibana `` user. The password is auto-generated by
15
+ To log in, use the ``opensearch `` user. The password is auto-generated by
16
16
Kolla-Ansible and can be extracted from the encrypted passwords file
17
17
(|kolla_passwords |):
18
18
19
19
.. code-block :: console
20
20
:substitutions:
21
21
22
- kayobe# ansible-vault view ${KAYOBE_CONFIG_PATH}/kolla/passwords.yml --vault-password-file |vault_password_file_path| | grep ^kibana
22
+ kayobe# ansible-vault view ${KAYOBE_CONFIG_PATH}/kolla/passwords.yml --vault-password-file |vault_password_file_path| | grep ^opensearch_dashboards
23
23
24
24
Access to Grafana
25
25
=================
@@ -293,7 +293,7 @@ Monitoring
293
293
----------
294
294
295
295
* `Back up InfluxDB <https://docs.influxdata.com/influxdb/v1.8/administration/backup_and_restore/ >`__
296
- * `Back up ElasticSearch <https://www.elastic.co/guide/en/elasticsearch/reference/current/backup-cluster-data.html >`__
296
+ * `Back up OpenSearch <https://opensearch.org/docs/latest/tuning-your-cluster/availability-and-recovery/snapshots/snapshot-restore/ >`__
297
297
* `Back up Prometheus <https://prometheus.io/docs/prometheus/latest/querying/api/#snapshot >`__
298
298
299
299
Seed
@@ -309,8 +309,8 @@ Ansible control host
309
309
Control Plane Monitoring
310
310
========================
311
311
312
- The control plane has been configured to collect logs centrally using the EFK
313
- stack (Elasticsearch, Fluentd and Kibana ).
312
+ The control plane has been configured to collect logs centrally using the FOOD
313
+ stack (Fluentd, OpenSearch and OpenSearch Dashboards ).
314
314
315
315
Telemetry monitoring of the control plane is performed by Prometheus. Metrics
316
316
are collected by Prometheus exporters, which are either running on all hosts
@@ -508,7 +508,8 @@ Overview
508
508
* Remove the node from maintenance mode in bifrost
509
509
* Bifrost should automatically power on the node via IPMI
510
510
* Check that all docker containers are running
511
- * Check Kibana for any messages with log level ERROR or equivalent
511
+ * Check OpenSearch Dashboards for any messages with log level ERROR or
512
+ equivalent
512
513
513
514
Controllers
514
515
-----------
@@ -647,28 +648,25 @@ perform the following cleanup procedure regularly:
647
648
fi
648
649
done
649
650
650
- Elasticsearch indexes retention
651
+ OpenSearch indexes retention
651
652
===============================
652
653
653
- To enable and alter default rotation values for Elasticsearch Curator , edit
654
+ To alter default rotation values for OpenSearch , edit
654
655
``${KAYOBE_CONFIG_PATH}/kolla/globals.yml ``:
655
656
656
657
.. code-block :: console
657
658
658
- # Allow Elasticsearch Curator to apply a retention policy to logs
659
- enable_elasticsearch_curator: true
660
-
661
- # Duration after which index is closed
662
- elasticsearch_curator_soft_retention_period_days: 90
659
+ # Duration after which index is closed (default 30)
660
+ opensearch_soft_retention_period_days: 90
663
661
664
- # Duration after which index is deleted
665
- elasticsearch_curator_hard_retention_period_days : 180
662
+ # Duration after which index is deleted (default 60)
663
+ opensearch_hard_retention_period_days : 180
666
664
667
- Reconfigure Elasticsearch with new values:
665
+ Reconfigure Opensearch with new values:
668
666
669
667
.. code-block :: console
670
668
671
- kayobe overcloud service reconfigure --kolla-tags elasticsearch
669
+ kayobe overcloud service reconfigure --kolla-tags opensearch
672
670
673
671
For more information see the `upstream documentation
674
- <https://docs.openstack.org/kolla-ansible/latest/reference/logging-and-monitoring/central-logging-guide.html#curator > `__.
672
+ <https://docs.openstack.org/kolla-ansible/latest/reference/logging-and-monitoring/central-logging-guide.html#applying-log-retention-policies > `__.
0 commit comments