Skip to content
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
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
.gradle
build
out
logs
*.jfr
*.hprof
gc.log*
Comment on lines 7 to +12
*.iml
.idea
**/.DS_Store
Expand Down
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,13 @@ pinpoint-agent/tools/
.env
/analysis/

### JVM profiling artifacts ###
logs/
*.jfr
*.hprof
gc.log*

# macOS artefacts
.DS_Store

docs/
docs/
Comment thread
KoungQ marked this conversation as resolved.
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,11 @@ services:
- PINPOINT_APPLICATION_NAME=dorumdorum
- PINPOINT_AGENT_ID=${PINPOINT_AGENT_ID:-dorumdorum-backend-${HOSTNAME}}
- PINPOINT_AGENT_NAME=${PINPOINT_AGENT_NAME:-dorumdorum-be}
Comment on lines +47 to 48
- JFR_RUN_ID=${JFR_RUN_ID:-cloud-load-test}
- JAVA_OPTS=${JAVA_OPTS:--XX:StartFlightRecording=name=dorumdorum,settings=profile,disk=true,dumponexit=true,filename=/app/logs/jfr/dorumdorum-${JFR_RUN_ID:-cloud-load-test}.jfr,maxage=30m,maxsize=512m}
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
volumes:
- ./firebase-service-account.json:/app/firebase-service-account.json:ro
- ./logs/jfr:/app/logs/jfr
depends_on:
postgres:
condition: service_healthy
Expand Down
Loading