Skip to content

Commit

Permalink
Clean up docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
clayton-cornell committed Feb 25, 2025
1 parent d38292f commit ee67fca
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
12 changes: 10 additions & 2 deletions docs/sources/tutorials/scenarios/monitor-docker-containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ Clone the {{< param "PRODUCT_NAME" >}} scenarios repository.
git clone https://github.com/grafana/alloy-scenarios.git
```

## Deploy the monitoring stack
## Deploy the Grafana stack

Start Docker to deploy the monitoring stack.

```shell
cd alloy-scenarios/docker-monitoring
docker-compose up -d
docker compose up -d
```

## Access the {{% param "PRODUCT_NAME" %}} UI
Expand All @@ -37,3 +37,11 @@ Open your browser and navigate to [`http://localhost:12345`](http://localhost:12
## Access the Grafana UI

Open your browser and navigate to [`http://localhost:3000`](http://localhost:3000).

## Shut down the Grafana stack

Stop docker to shut down the Grafana stack.

```shell
docker compose down
```
2 changes: 1 addition & 1 deletion docs/sources/tutorials/scenarios/monitor-logs-over-tcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Start Docker to deploy the monitoring stack.

```shell
cd alloy-scenarios/logs-tcp
docker-compose up -d
docker compose up -d
```

## Access the {{% param "PRODUCT_NAME" %}} UI
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Start Docker to deploy the monitoring stack.

```shell
cd alloy-scenarios/syslog
docker-compose up -d
docker compose up -d
```

## Access the {{% param "PRODUCT_NAME" %}} UI
Expand Down
2 changes: 1 addition & 1 deletion docs/sources/tutorials/scenarios/monitor-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Within this tutorial, we have included a docker-compose file that will deploy Gr

```shell
cd alloy-scenarios/windows
docker-compose up -d
docker compose up -d
```

You can check the status of the containers by running the following command:
Expand Down
2 changes: 1 addition & 1 deletion docs/sources/tutorials/scenarios/parse-structured-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Start Docker to deploy the monitoring stack.

```shell
cd alloy-scenarios/mail-house
docker-compose up -d
docker compose up -d
```

## Access the {{% param "PRODUCT_NAME" %}} UI
Expand Down

0 comments on commit ee67fca

Please sign in to comment.