You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-2Lines changed: 18 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -269,9 +269,25 @@ GET /documents/search?filter[files.content]=open-source"
269
269
```
270
270
271
271
### How to inspect the content of a search index
272
-
The content of a search index can be inspected by running a [Kibana](https://www.elastic.co/kibana) dashboard on top of Elasticseach.
272
+
The content of a search index can be inspected by running a [Kibana](https://www.elastic.co/kibana) dashboard on top of Elasticseach by adding the following snippet to your `docker-compose.override.yml`
273
273
274
-
[To be completed...]
274
+
```yaml
275
+
services:
276
+
kibana:
277
+
image: docker.elastic.co/kibana/kibana-oss:7.6.2
278
+
ports:
279
+
- 127.0.0.1:5601:5601
280
+
user: root
281
+
command: |
282
+
sh -c "/usr/local/bin/kibana-docker --allow-root;"
283
+
```
284
+
285
+
Start the container
286
+
```bash
287
+
docker-compose up -d kibana
288
+
```
289
+
290
+
Once Kibana has started the dashboard is available at http://localhost:5601
275
291
276
292
Make sure not to expose the Kibana dashboard in a production environment!
0 commit comments