Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: Aiven for Metrics getting started #148

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions docs/products/metrics/get-started.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
title: Get started with Aiven for Metrics
sidebar_label: Get started
---

Get started with Aiven for Metrics by creating your service using the [Aiven Console](https://console.aiven.io/) or [Aiven CLI](https://github.com/aiven/aiven-client).

## Create a service using the Aiven Console

1. Log in to the [Aiven Console](https://console.aiven.io/).
2. [Create a Metrics service](/docs/platform/howto/create_new_service).

Once the service is ready, the status changes to *Running*. Depending on
your selected cloud provider and region, this generally takes a couple
of minutes.

## Create a service using the Aiven CLI

The [Aiven CLI](https://github.com/aiven/aiven-client) provides a simple and
efficient way to create an Aiven for Metrics service. If you prefer
creating a new service from the CLI, follow these steps:

1. Determine the service plan, cloud provider, and region to
use for your Aiven for Metrics service.
1. Run the following command to create an Aiven for Metrics service named
metrics-demo:

```text
avn service create metrics-demo \
--service-type metrics \
harshini-rangaswamy marked this conversation as resolved.
Show resolved Hide resolved
--cloud aws-europe-west1 \
--plan startup-4 \
--project dev-sandbox
```

:::note
There are additional options available to you, which you can view by
running the following commands:

- For a full list of default flags: `avn service create -h`
- For type-specific options: `avn service types -v`

:::

## Create service integrations

Integrate Aiven for Metrics with other Aiven services, including OpenSearch for
advanced queries and Grafana for visualization, or with another Aiven for Metrics
service for comprehensive monitoring. The [Aiven Console](https://console.aiven.io/)
and [Aiven CLI](https://github.com/aiven/aiven-client) offer straightforward integration setup.

For instructions, see [create service integrations](/docs/platform/howto/create-service-integration).
1 change: 1 addition & 0 deletions sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1484,6 +1484,7 @@ const sidebars: SidebarsConfig = {
id: 'products/metrics',
},
items: [
'products/metrics/get-started',
{
type: 'category',
label: 'Concepts',
Expand Down