diff --git a/knowledge base/opensearch.md b/knowledge base/opensearch.md
index 77a61ef..5986436 100644
--- a/knowledge base/opensearch.md
+++ b/knowledge base/opensearch.md
@@ -1051,6 +1051,51 @@ GET _data_stream/logs-nginx
}
]
}
+```
+
+
+
+
+ Get statistics about data streams
+
+```plaintext
+GET _data_stream/logs-nginx/_stats
+```
+
+```json
+{
+ "_shards": {
+ "total": 2,
+ "successful": 2,
+ "failed": 0
+ },
+ "data_stream_count": 1,
+ "backing_indices": 1,
+ "total_store_size_bytes": 416,
+ "data_streams": [
+ {
+ "data_stream": "logs-nginx",
+ "backing_indices": 1,
+ "store_size_bytes": 416,
+ "maximum_timestamp": 0
+ }
+ ]
+}
+```
+
+
+
+
+ Delete data streams
+
+```plaintext
+DELETE _data_stream/logs-nginx
+```
+
+```json
+{
+ "acknowledged": true
+}
```
@@ -1063,12 +1108,12 @@ GET _data_stream/logs-nginx
- [Codebase]
- [Documentation]
- [Lucene]
+- [REST API reference]
- [Okapi BM25]
- [`fsync`][fsync]
-- [AWS' managed OpenSearch] offering
+- [AWS' managed OpenSearch]
- [Setting up Hot-Warm architecture for ISM in OpenSearch]
- [Data Prepper]
-- [REST API reference]
### Sources
@@ -1085,6 +1130,7 @@ GET _data_stream/logs-nginx
- [Managing indexes]
- [Reindex data]
- [Index templates]
+- [OpenSearch Data Streams]