Skip to content

Commit

Permalink
More logs on Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
luandro committed Mar 25, 2024
1 parent fa54e4a commit d5054bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/offline-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
- name: List running containers
run: docker ps
- name: Log last 10 lines from all containers
run: docker ps -q | xargs -I {} docker logs --tail 10 {}
run: docker ps -q | xargs -I {} docker logs --tail 100 {}
- name: Log RAG api
run: docker logs kakawa_rag_api --tail 100
run: docker logs kakawa_rag_api --tail 300
- name: Free up disk space
run: |
sudo apt-get clean
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/online-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
- name: List running containers
run: docker ps
- name: Log last 10 lines from all containers
run: docker ps -q | xargs -I {} docker logs --tail 10 {}
run: docker ps -q | xargs -I {} docker logs --tail 100 {}
- name: Log RAG api
run: docker logs kakawa_rag_api --tail 100
run: docker logs kakawa_rag_api --tail 300
- name: Test Online LangFuse API endpoint
run: |
response=$(docker exec langfuse wget --header='accept: application/json' -qO - "${{ secrets.LANGFUSE_HOST }}/api/public/health")
Expand Down

0 comments on commit d5054bc

Please sign in to comment.