woowacourse-teams / 2024-devel-up

나 혼자만 레벨업? 다 같이 데벨업!
https://www.devel-up.co.kr
22 stars 5 forks source link

운영 서버에 프롬테일 도입 (issue #396) #399

Closed Minjoo522 closed 1 month ago

Minjoo522 commented 2 months ago

구현 요약

이 PR은 main에 머지됩니다. 운영 서버에 프롬테일을 도입합니다. 해당 PR에 포함된 파일 외 로컬에서 변경된 파일 내용은 아래와 같습니다.

⚠️ 참고 사항

promtail app-config.yml

server:  
  http_listen_port: 9080  
  grpc_listen_port: 0  

positions:  
  filename: /tmp/positions.yaml  

clients:  
  - url: http://{모니터링 서버 IP 주소}:3100/loki/api/v1/push  

scrape_configs:  
  - job_name: app-logging  
    static_configs:  
      - targets:  
          - localhost  
        labels:  
          job: varlogs  
          __path__: /var/log/*log  
          env: prod-app

promtail nginx-config.yml

server:  
  http_listen_port: 9080  
  grpc_listen_port: 0  

positions:  
  filename: /tmp/positions.yaml  

clients:  
  - url: http://{모니터링 서버 IP 주소}:3100/loki/api/v1/push  

scrape_configs:  
  - job_name: nginx-logging
    static_configs:  
      - targets:  
          - localhost  
        labels:  
          job: varlogs  
          __path__: /var/log/*log  
          env: prod-nginx

모니터링 서버 compose.yml

모니터링 서버 loki-config.yml

auth_enabled: false

server:
  http_listen_port: 3100
  grpc_listen_port: 9096

common:
  instance_addr: 127.0.0.1
  path_prefix: /tmp/loki
  storage:
    filesystem:
      chunks_directory: /tmp/loki/chunks
      rules_directory: /tmp/loki/rules
  replication_factor: 1
  ring:
    kvstore:
      store: inmemory

query_range:
  results_cache:
    cache:
      embedded_cache:
        enabled: true
        max_size_mb: 100

schema_config:
  configs:
    - from: 2020-10-24
      store: tsdb
      object_store: filesystem
      schema: v13
      index:
        prefix: index_
        period: 24h

ruler:
  alertmanager_url: http://localhost:9093

# By default, Loki will send anonymous, but uniquely-identifiable usage and configuration
# analytics to Grafana Labs. These statistics are sent to https://stats.grafana.org/
#
# Statistics help us better understand how Loki is used, and they show us performance
# levels for most users. This helps us prioritize features and documentation.
# For more information on what's sent, look at
# https://github.com/grafana/loki/blob/main/pkg/analytics/stats.go
# Refer to the buildReport method to see what goes into a report.
#
# If you would like to disable reporting, uncomment the following lines:
#analytics:
#  reporting_enabled: false

그라파나 datasources.yml

참고한 문서

연관 이슈

이 부분을 제거하고 연관된 이슈를 아래와 같이 명시해 닫아주세요.

참고

코드 리뷰에 RCA 룰을 적용할 시 참고해주세요.

헤더 설명
R (Request Changes) 적극적으로 반영을 고려해주세요
C (Comment) 웬만하면 반영해주세요
A (Approve) 반영해도 좋고, 넘어가도 좋습니다. 사소한 의견입니다.