Skip to content
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 src/content/en/support/operational-log-collection-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ Along with file logs, collect the container's `stdout` and `stderr` logs.

1. Save the app container logs.
2. If the `tools` profile is running, save the tools logs as well.
```
```bash
mkdir -p support-logs
docker logs querypie-app-1 > support-logs/app.docker.log 2>&1
docker logs querypie-app-1 > support-logs/app.docker.log 2>&1 || true
docker logs querypie-tools-1 > support-logs/tools.docker.log 2>&1 || true
```

Expand Down
4 changes: 2 additions & 2 deletions src/content/ja/support/operational-log-collection-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ tar -czf support-logs/querypie-file-logs.tar.gz /var/log/querypie

1. appコンテナのログを保存します。
2. `tools` profileが実行中の場合は、toolsログも保存します。
```
```bash
mkdir -p support-logs
docker logs querypie-app-1 > support-logs/app.docker.log 2>&1
docker logs querypie-app-1 > support-logs/app.docker.log 2>&1 || true
docker logs querypie-tools-1 > support-logs/tools.docker.log 2>&1 || true
```

Expand Down
4 changes: 2 additions & 2 deletions src/content/ko/support/operational-log-collection-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ tar -czf support-logs/querypie-file-logs.tar.gz /var/log/querypie

1. app 컨테이너 로그를 저장합니다.
2. `tools` profile이 실행 중이면 tools 로그도 함께 저장합니다.
```
```bash
mkdir -p support-logs
docker logs querypie-app-1 > support-logs/app.docker.log 2>&1
docker logs querypie-app-1 > support-logs/app.docker.log 2>&1 || true
docker logs querypie-tools-1 > support-logs/tools.docker.log 2>&1 || true
```

Expand Down
Loading