@@ -95,20 +95,38 @@ If you want to prevent OpenSearch Dashboards being exposed on the external
9595VIP, you can set ``enable_opensearch_dashboards_external `` to ``false `` in
9696``/etc/kolla/globals.yml ``.
9797
98- First Login
99- -----------
100-
101- When OpenSearch Dashboards is opened for the first time, it requires creating
102- a default index pattern. To view, analyse and search logs, at least one
103- index pattern has to be created. To match indices stored in OpenSearch,
104- we suggest using the following configuration:
105-
106- #. Index pattern - flog-*
107- #. Time Filter field name - @timestamp
108- #. Expand index pattern when searching [DEPRECATED] - not checked
109- #. Use event times to create index names [DEPRECATED] - not checked
110-
111- After setting parameters, one can create an index with the *Create * button.
98+ Index Pattern Configuration
99+ ---------------------------
100+
101+ Kolla Ansible fully automates the creation of the default index pattern.
102+ During the deployment or reconfiguration process, an index pattern is
103+ automatically provisioned. By default, it is dynamically configured to
104+ match the indices defined by the ``opensearch_log_index_prefix ``
105+ variable (which defaults to ``flog ``). This results in an automatic
106+ index pattern of ``flog-* ``.
107+
108+ The time filter field name is automatically set to ``@timestamp ``,
109+ ensuring that all time-based aggregations and histograms work perfectly
110+ out of the box.
111+
112+ As a result, the **Discover ** tab is immediately ready to display
113+ incoming log data upon your first login, requiring no manual setup
114+ from the operator.
115+
116+ **Adding Custom Index Patterns Manually **
117+
118+ If you configure custom Fluentd outputs to route specific logs to
119+ different indices, or if you ingest external metrics into OpenSearch,
120+ you may still need to create additional index patterns manually.
121+ To do this:
122+
123+ 1. Navigate to **Dashboards Management ** -> **Index Patterns ** in the
124+ OpenSearch Dashboards UI.
125+ 2. Click **Create index pattern **.
126+ 3. Define your custom index pattern (e.g., ``my-custom-logs-* ``).
127+ 4. Select the appropriate Time Filter field name (typically
128+ ``@timestamp ``).
129+ 5. Click the **Create index pattern ** button.
112130
113131Search logs - Discover tab
114132--------------------------
0 commit comments