diff --git a/docs/products/opensearch/get-started.md b/docs/products/opensearch/get-started.md
index 0269d3dc..01f945c8 100644
--- a/docs/products/opensearch/get-started.md
+++ b/docs/products/opensearch/get-started.md
@@ -4,44 +4,237 @@ sidebar_label: Get started
keywords: [quick start]
---
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+import ConsoleLabel from "@site/src/components/ConsoleIcons"
import CreateService from "@site/static/includes/create-service-console.md"
-To start using Aiven for OpenSearch®, the first step is to create a service. You can do this on the [Aiven Console](https://console.aiven.io/) or with the [Aiven CLI](https://github.com/aiven/aiven-client).
+Learn how to use Aiven for OpenSearch®, create a service, secure access, manage indices, and explore your data.
+
+Aiven for OpenSearch® is a fully managed OpenSearch service designed for reliability,
+scalability, and security. It includes OpenSearch Dashboards for data visualization and
+supports integrations for logs and monitoring.
+
+## Prerequisites
+
+Ensure you have the following before getting started:
+
+- Access to the [Aiven Console](https://console.aiven.io)
+- [Aiven CLI](https://github.com/aiven/aiven-client#installation) installed
+- [Aiven Provider for Terraform](https://registry.terraform.io/providers/aiven/aiven/latest/docs) installed
+- [API token](/docs/platform/howto/create_authentication_token)
## Create an Aiven for OpenSearch® service
+
+
+
-## Access OpenSearch Dashboards
+
+
+
+Create the service using the Aiven API, run:
+
+```bash
+curl -X POST https://api.aiven.io/v1/project//service \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "cloud": "google-europe-west1",
+ "plan": "startup-4",
+ "service_name": "example-opensearch",
+ "service_type": "opensearch"
+ }'
+```
+
+Parameters:
+
+- ``: Your project name.
+- ``: Your [API token](/docs/platform/howto/create_authentication_token).
+
+
+
+
+Create the service using the Aiven CLI, run:
+
+```bash
+avn service create \
+ --service-type opensearch \
+ --cloud \
+ --plan
+```
+
+Parameters:
+
+- ``: Name of your service (for example, `my-opensearch`).
+- ``: Deployment region (for example, `google-europe-west1`).
+- ``: Subscription plan (for example, `startup-4`).
+
+
+
+
+1. Create a `main.tf` file with the following content:
+
+ ```hcl
+ variable "aiven_token" {
+ type = string
+ }
+
+ variable "aiven_project_name" {
+ type = string
+ }
+
+ terraform {
+ required_providers {
+ aiven = {
+ source = "aiven/aiven"
+ version = ">=4.0.0"
+ }
+ }
+ }
+
+ provider "aiven" {
+ api_token = var.aiven_token
+ }
+
+ resource "aiven_opensearch" "example" {
+ project = var.aiven_project_name
+ service_name = "example-opensearch"
+ cloud_name = "google-europe-west1"
+ plan = "startup-4"
+ }
+ ```
+
+1. Create a `terraform.tfvars` file:
+
+ ```hcl
+ aiven_token = "your-api-token"
+ aiven_project_name = "your-project-name"
+ ```
+
+1. Run the Terraform commands to apply the configuration:
+
+ ```bash
+ terraform init
+ terraform apply --auto-approve
+ ```
+
+
+
+
+## Secure access with ACLs
-When you create an Aiven for OpenSearch service, you will automatically
-get access to OpenSearch Dashboards. This enables you to visualize data from your
-OpenSearch service.
+Secure your service by using one of the following options:
-To access OpenSearch Dashboards:
+- **Access control lists (ACLs)**: Manage access to indices by setting patterns
+ (for example, `logs-*`) and permissions (read, write, or all) in the Aiven Console.
+- **OpenSearch security**: Use OpenSearch Dashboards or APIs for fine-grained access
+ control, including role-based access control (RBAC) and single sign-on (SSO).
-1. On the **Overview** page of your Aiven for OpenSearch service, click
- **OpenSearch Dashboards**.
-1. Copy or click the Service URI to open OpenSearch Dashboards in
- your browser.
-1. Enter the username and password from the connection information
- screen when prompted.
-1. Click **Sign In** to view the OpenSearch Dashboards.
+For more information, see
+[Access control in Aiven for OpenSearch®](https://aiven.io/docs/products/opensearch/concepts/access_control).
+
+## Manage indices
+
+Aiven for OpenSearch® lets you view and manage indices and configure index retention
+patterns. For detailed steps on creating and managing indices, see
+the [OpenSearch documentation](https://opensearch.org/docs/latest/opensearch/index-data/).
+
+### View and manage indices
+
+1. Open your service in the [Aiven Console](https://console.aiven.io/).
+1. Click to view details such as shards, replicas, size, and health.
+
+### Configure retention patterns
+
+1. In page, scroll to
+ **Index retention patterns**
+1. Click **Add pattern** and define:
+ - **Pattern**: Specify index patterns (for example, `*_logs_*`).
+ - **Maximum index count**: Set the number of indices to retain.
+1. Click **Create** to save.
-After logging in, you can explore and interact with your data, as well
-as add sample data and utilize OpenSearch API features.
+For advanced indexing features, including custom mappings, refer to the
+[OpenSearch documentation](https://opensearch.org/docs/latest/opensearch/index-data/).
+
+## Access OpenSearch Dashboards
+
+Use OpenSearch Dashboards to visualize and analyze your data.
+
+1. On the page service in the [Aiven Console](https://console.aiven.io/).
+1. In the **Connection information** section, click the **OpenSearch Dashboards** tab.
+1. Copy or click the **Service URI** to open OpenSearch Dashboards in your browser.
+1. Log in with the credentials provided in the **Connection information** section.
For more information, see
-[OpenSearch Dashboards](/docs/products/opensearch/dashboards) section.
+[OpenSearch Dashboards](https://opensearch.org/docs/latest/dashboards/).
+
+## Connect to your service
+
+
+
+
+1. Go to the page of your service in the [Aiven Console](https://console.aiven.io/).
+1. Click **Quick connect**.
+1. In the **Connect** window, select a **dashboard** or **language** to connect to your
+ service.
+1. Complete the actions in the window and click **Done**.
+
+
+
+
+See
+[Use Aiven for OpenSearch® with cURL](https://aiven.io/docs/products/opensearch/howto/opensearch-with-curl)
+for steps to connect using cURL.
+
+
+
+
+See
+[Connect to OpenSearch® with Node.js](https://aiven.io/docs/products/opensearch/howto/connect-with-nodejs)
+to connect using Node.js.
+
+
+
+
+
+See [Connect to OpenSearch® with Python](https://aiven.io/docs/products/opensearch/howto/connect-with-python) to connect using Python.
+
+
+
+
+## Manage logs and monitor data
+
+- **Send logs**: To send logs from Aiven services to OpenSearch, see [Enable log integration](https://aiven.io/docs/products/opensearch/howto/opensearch-log-integration).
+- **Monitor data**: Set up Grafana for monitoring and alerts. See [Integrate with Grafana®](https://aiven.io/docs/products/opensearch/howto/integrate-with-grafana).
+
+
+## Search and aggregations with Aiven for OpenSearch
+
+Aiven for OpenSearch® lets you write and execute search queries, as well as aggregate
+data using OpenSearch clients like Python and Node.js.
+
+### Write search queries
-## Connect to OpenSearch
+- **Python**: Learn how to write and run search queries on your Aiven for OpenSearch
+ service using the [Python OpenSearch client](https://github.com/opensearch-project/opensearch-py).
+ For more information, see
+ [Search with OpenSearch® and Python](/docs/products/opensearch/howto/opensearch-search-and-python).
+- **Node.js**: Learn how to write and run search queries on your Aiven for OpenSearch
+ service using the [OpenSearch JavaScript client](https://github.com/opensearch-project/opensearch-js).
+ For more information, see
+ [Search with OpenSearch® and Node.js](/docs/products/opensearch/howto/opensearch-and-nodejs).
-To start working with your data in OpenSearch, connect to your service.
-A good starting point is to learn how to
-[connect with cURL](/docs/products/opensearch/howto/opensearch-with-curl). See the necessary connection details in the
-service overview page.
+### Perform aggregations
-If you're new to OpenSearch and looking for inspiration, see our
-[sample dataset](/docs/products/opensearch/howto/sample-dataset),
-which provides a great starting point for exploring the capabilities of
-the platform.
+- **Metric aggregations**: Calculate metrics such as average, minimum, maximum,
+ percentiles, and cardinality on your Aiven for OpenSearch
+ service. or more information, see
+ [Aggregations with OpenSearch® and Node.js](/docs/products/opensearch/howto/opensearch-aggregations-and-nodejs#metrics-aggregations).
+- **Bucket aggregations**: Group data into buckets based on ranges, unique terms, or
+ histograms. or more information, see
+ [Bucket aggregations with OpenSearch®](/docs/products/opensearch/howto/opensearch-aggregations-and-nodejs#bucket-aggregations).
+- **Pipeline aggregations**: Combine results from multiple aggregations, such as
+ calculating moving averages, to analyze trends. Explore examples in
+ [Pipeline aggregations with OpenSearch®](/docs/products/opensearch/howto/opensearch-aggregations-and-nodejs#pipeline-aggregations).
diff --git a/src/components/ConsoleIcons/index.tsx b/src/components/ConsoleIcons/index.tsx
index 8f35521a..111b578c 100644
--- a/src/components/ConsoleIcons/index.tsx
+++ b/src/components/ConsoleIcons/index.tsx
@@ -500,6 +500,13 @@ export default function ConsoleLabel({name}): ReactElement {
Query editor
>
);
+ case 'opensearchindexes':
+ return (
+ <>
+ Indexes
+ >
+ );
+
default:
return (