Skip to content

Fix references to docker-compose and broken links #67

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

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ vi ./config/bigip_receivers.yaml
# Run the configuration generator
docker run --rm -it -w /app -v ${PWD}:/app --entrypoint /app/src/bin/init_entrypoint.sh python:3.12.6-slim-bookworm --generate-config
# Start the tool
docker-compose up
docker compose up
```

## Configuration
Expand Down Expand Up @@ -99,7 +99,7 @@ bigip_receiver_defaults:
# The data_types that should be enabled or disabled.
# DNS and GTM are disabled by default and users can enable those modules
# on all devices by setting the below to true.
# A full list of data_types is in pages/receiver_readme.md.
# A full list of data_types is at https://f5devcentral.github.io/application-study-tool/components/otel_collector/receiver_readme.html.
data_types:
f5.dns:
enabled: false
Expand Down
2 changes: 1 addition & 1 deletion pages/config/config.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: page
title: Configuration
title: Configuration Management
nav_order: 3
has_children: true
permalink: /config
Expand Down
4 changes: 2 additions & 2 deletions pages/config/config_helper/config_helper.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,6 @@ to take effect. This can be accomplished in a few ways, but the simplest is typi

(From the project root directory)
```bash
$ docker-compose down
$ docker-compose up -d
$ docker compose down
$ docker compose up -d
```
4 changes: 2 additions & 2 deletions pages/config/manual_config/default_otel.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ to take effect. This can be accomplished in a few ways, but the simplest is typi

(From the project root directory)
```bash
$ docker-compose down
$ docker-compose up -d
$ docker compose down
$ docker compose up -d
```
4 changes: 2 additions & 2 deletions pages/config/manual_config/receivers_pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ to take effect. This can be accomplished in a few ways, but the simplest is typi

(From the project root directory)
```bash
$ docker-compose down
$ docker-compose up -d
$ docker compose down
$ docker compose up -d
```
2 changes: 1 addition & 1 deletion pages/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ vi ./config/big_receivers.yaml
# Run the configuration generator
docker run --rm -it -w /app -v ${PWD}:/app --entrypoint /app/src/bin/init_entrypoint.sh python:3.12.6-slim-bookworm --generate-config
# Start the tool
docker-compose up
docker compose up
```

## Configure Default Device Settings
Expand Down
2 changes: 1 addition & 1 deletion pages/troubleshooting/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ $ docker logs application-study-tool-otel-collector-1 >& otellogs.txt && gzip ot
### Stop and Start A Container
Individual containers can be started and stopped using the `docker stop <container name or id>` command.
This will cause the container to restart with any modifications to config files picked up (alternative
to the `docker-compose down` and `docker-compose up` commands which restart all containers):
to the `docker compose down` and `docker compose up` commands which restart all containers):

```shell
$ docker stop fdbde8a3ee16
Expand Down
Loading