본문 바로가기

카테고리 없음

2020-05-26 12시 개발자 글 모음 | "[Kubernetes] 로깅 시스템 " 외 1개 이야기

덕업일치! 두 번째 직장 '마이리얼트립'에 오기까지 by 김진학

  • 기술 블로그나 팀 소개글들을 읽어보니 성장할 수 있는 양분이 가득한 회사처럼 보였다
  • 신입때 큰 목표없이 꾸준히 관리했던 블로그가 지금은 날 어필할 수 있는 가장 강력한 무기가 되었다
  • 2년 가량 나와 함께 했던 동료들이 나를 잘 설명해줄거라 생각해 첫 직장의 사수와 파트장님에게 연락을 드렸다


[Kubernetes] 로깅 시스템 구축 by 이동원 about Kubernetes

  • 251:9200/" - name: FLUENT_ELASTICSEARCH_PORT value: "9200" - name: FLUENT_ELASTICSEARCH_SCHEME value: "http" - name: FLUENT_UID value: "0" resources: limits: memory: 200Mi requests: cpu: 100m memory: 200Mi volumeMounts: - name: authorlog mountPath: /author - name: qalog mountPath: /qa - name: livelog mountPath: /live - name: config mountPath: /fluentd/etc terminationGracePeriodSeconds: 30 volumes: - name: authorlog hostPath: path: /author - name: qalog hostPath: path: /qa - name: livelog hostPath: path: /live - name: config hostPath: path: /config 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 apiVersion : extensions / v1beta1 kind : DaemonSet metadata : name : fluentd namespace : kube - system labels : k8s - app : fluentd - logging version : v1 kubernetes
  • 251:9200/" - name : FLUENT_ELASTICSEARCH_PORT value : "9200" - name : FLUENT_ELASTICSEARCH_SCHEME value : "http" - name : FLUENT_UID value : "0" resources : limits : memory : 200Mi requests : cpu : 100m memory : 200Mi volumeMounts : - name : authorlog mountPath : / author - name : qalog mountPath : / qa - name : livelog mountPath : / live - name : config mountPath : / fluentd / etc terminationGracePeriodSeconds : 30 volumes : - name : authorlog hostPath : path : / author - name : qalog hostPath : path : / qa - name : livelog hostPath : path : / live - name : config hostPath : path : / config
  • 1:9201 index_name django-rest-api type_name django-rest-api include_timestamp true time_key timestamp include_tag_key true tag_key fluentd_tag 1 2 3 4 5 6 7 8 9 10 11 < match * * > @ type elasticsearch hosts 127