Skip to content

Commit 726c45a

Browse files
Merge pull request #114 from nilushancosta/obs
Update OpenSearch pod name in installation guide
2 parents d135f55 + c525226 commit 726c45a

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/getting-started/multi-cluster.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ kubectl get pods -n openchoreo-observability-plane --context kind-openchoreo-op
280280
```
281281

282282
You should see pods for:
283-
- `opensearch-0` (Running) - Log storage backend
283+
- `opensearch-master-0` (Running) - Log storage backend
284284
- `opensearch-dashboard-*` (Running) - Visualization dashboard
285285
- `observer-*` (Running) - Log processing service
286286

@@ -341,10 +341,10 @@ Verify FluentBit is sending logs to OpenSearch:
341341

342342
```bash
343343
# Check if kubernetes indices are being created
344-
kubectl exec -n openchoreo-observability-plane opensearch-0 --context kind-openchoreo-op -- curl -s "http://localhost:9200/_cat/indices?v" | grep kubernetes
344+
kubectl exec -n openchoreo-observability-plane opensearch-master-0 --context kind-openchoreo-op -- curl -s "http://localhost:9200/_cat/indices?v" | grep kubernetes
345345

346346
# Check recent log count
347-
kubectl exec -n openchoreo-observability-plane opensearch-0 --context kind-openchoreo-op -- curl -s "http://localhost:9200/kubernetes-*/_count" | jq '.count'
347+
kubectl exec -n openchoreo-observability-plane opensearch-master-0 --context kind-openchoreo-op -- curl -s "http://localhost:9200/kubernetes-*/_count" | jq '.count'
348348
```
349349

350350
If the indices exist and the count is greater than 0, FluentBit is successfully collecting and storing logs.

docs/getting-started/single-cluster.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ kubectl get pods -n openchoreo-observability-plane
219219
```
220220

221221
You should see pods for:
222-
- `opensearch-0` (Running) - Log storage backend
222+
- `opensearch-master-0` (Running) - Log storage backend
223223
- `opensearch-dashboard-*` (Running) - Visualization dashboard
224224
- `observer-*` (Running) - Log processing service
225225

@@ -237,10 +237,10 @@ Verify FluentBit is sending logs to OpenSearch:
237237

238238
```bash
239239
# Check if kubernetes indices are being created
240-
kubectl exec -n openchoreo-observability-plane opensearch-0 -- curl -s "http://localhost:9200/_cat/indices?v" | grep kubernetes
240+
kubectl exec -n openchoreo-observability-plane opensearch-master-0 -- curl -s "http://localhost:9200/_cat/indices?v" | grep kubernetes
241241

242242
# Check recent log count
243-
kubectl exec -n openchoreo-observability-plane opensearch-0 -- curl -s "http://localhost:9200/kubernetes-*/_count" | jq '.count'
243+
kubectl exec -n openchoreo-observability-plane opensearch-master-0 -- curl -s "http://localhost:9200/kubernetes-*/_count" | jq '.count'
244244
```
245245

246246
If the indices exist and the count is greater than 0, FluentBit is successfully collecting and storing logs.

0 commit comments

Comments
 (0)