Skip to content

[chore/infra-setting] - docker, grafana 세팅#90

Merged
ekgns33 merged 3 commits intomainfrom
chore/infra-setting
May 12, 2025
Merged

[chore/infra-setting] - docker, grafana 세팅#90
ekgns33 merged 3 commits intomainfrom
chore/infra-setting

Conversation

@ekgns33
Copy link
Copy Markdown
Contributor

@ekgns33 ekgns33 commented May 11, 2025

작업 내역

  • 로컬에서 Docker를 활용하여 테스트를 실행할때 필요한 compose 작성
  • Docker 이미지 빌드 파일 작성
  • dev환경에서 actuator 및 prometheus 설정

Summary by CodeRabbit

  • New Features

    • Added application monitoring and metrics endpoints using Spring Boot Actuator and Prometheus integration.
    • Exposed health, info, and Prometheus metrics endpoints for monitoring purposes.
    • Enabled unauthenticated access to the Prometheus metrics endpoint in development mode.
  • Chores

    • Introduced Docker and Docker Compose support for simplified local development and multi-service orchestration.
    • Added configuration to exclude unnecessary files from Docker builds.

@ekgns33 ekgns33 requested a review from jeeheaG May 11, 2025 14:20
@ekgns33 ekgns33 self-assigned this May 11, 2025
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 11, 2025

Walkthrough

This update introduces Docker support and monitoring capabilities to the project. It adds Docker-related files for building, running, and orchestrating the application and its dependencies. Monitoring is enabled by integrating Spring Boot Actuator and Prometheus, updating security and configuration to expose relevant endpoints for metrics collection.

Changes

File(s) Change Summary
.dockerignore, Dockerfile, docker-compose.yml Added Docker-related files: .dockerignore to exclude files from build context, Dockerfile for multi-stage Java image build, and docker-compose.yml for orchestrating app, MySQL, Prometheus, and Grafana services.
build.gradle Added dependencies: spring-boot-starter-actuator and micrometer-registry-prometheus for monitoring and metrics.
src/main/java/org/runimo/runimo/common/GlobalConsts.java Updated WHITE_LIST_ENDPOINTS set to include "/actuator".
src/main/java/org/runimo/runimo/config/SecurityConfig.java Modified security config to permit unauthenticated access to the /actuator/prometheus endpoint.
src/main/resources/application.yml, src/test/resources/application.yml Added management section to expose actuator endpoints (health, info, prometheus) and enable Prometheus metrics export.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant App (Spring Boot)
    participant Prometheus
    participant Grafana
    participant MySQL

    User->>App (Spring Boot): Sends HTTP request (e.g., /actuator/health)
    App (Spring Boot)->>User: Returns health/info/metrics data

    Prometheus->>App (Spring Boot): Scrapes /actuator/prometheus endpoint
    App (Spring Boot)->>Prometheus: Returns metrics

    Grafana->>Prometheus: Queries metrics for dashboards

    App (Spring Boot)->>MySQL: Connects for data persistence
    MySQL-->>App (Spring Boot): Responds to queries
Loading

Poem

🐇
Docker’s here, with metrics in tow,
Prometheus and Grafana put on a show.
Actuator endpoints now open wide,
Health and info, metrics inside.
Compose brings friends, the stack is complete—
Monitoring magic, can’t be beat!
🥕

Tip

⚡️ Faster reviews with caching
  • CodeRabbit now supports caching for code and dependencies, helping speed up reviews. This means quicker feedback, reduced wait times, and a smoother review experience overall. Cached data is encrypted and stored securely. This feature will be automatically enabled for all accounts on May 16th. To opt out, configure Review - Disable Cache at either the organization or repository level. If you prefer to disable all data retention across your organization, simply turn off the Data Retention setting under your Organization Settings.

Enjoy the performance boost—your workflow just got faster.


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Free

📥 Commits

Reviewing files that changed from the base of the PR and between 1d5166b and 83546ce.

📒 Files selected for processing (8)
  • .dockerignore (1 hunks)
  • Dockerfile (1 hunks)
  • build.gradle (1 hunks)
  • docker-compose.yml (1 hunks)
  • src/main/java/org/runimo/runimo/common/GlobalConsts.java (1 hunks)
  • src/main/java/org/runimo/runimo/config/SecurityConfig.java (1 hunks)
  • src/main/resources/application.yml (1 hunks)
  • src/test/resources/application.yml (1 hunks)

Note

🎁 Summarized by CodeRabbit Free

Your organization is on the Free plan. CodeRabbit will generate a high-level summary and a walkthrough for each pull request. For a comprehensive line-by-line review, please upgrade your subscription to CodeRabbit Pro by visiting https://app.coderabbit.ai/login.

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Join our Discord community for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Copy Markdown
Contributor

@jeeheaG jeeheaG left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다!!!

@ekgns33 ekgns33 merged commit 52791c5 into main May 12, 2025
3 checks passed
@ekgns33 ekgns33 deleted the chore/infra-setting branch May 12, 2025 08:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants