본문 바로가기

카테고리 없음

2021-01-11 22시 개발자 글 모음 | "elasticsearch metric" 외 2개 이야기

궁극의 개발 환경 설정 by 김찬빈 about Docker,Windows

  • 컨테이너를 이용하여 프로젝트 단위에서 문제 없이 설정할 수 있는 궁극의 개발 환경 설정 가이드
  • VS Code 시작 하단 버튼 클릭 후 Remote-Containers: Clone Repository in Container Volume… 클릭 작업할 프로젝트의 Repository Git URL 을 기재 생성할 Volume 설정
  • VS Code 가 참조하는 에디터 설정값 extensions 해당 프로젝트 내에 같이 설치될 VS Code Extension forwardPorts 해당 프로젝트 내에서 사용될 Port


클린 애자일 - 첫 마음으로 돌아가보는 여정 by 정기욱

  • You have the right to an overall plan and to know what can be accomplished when and at what cost
  • You have the right to be informed of schedule and estimate changes
  • You have the right to make and update your own estimates


elasticsearch metric 수집 방법 by 정철

  • 처음에는 java application이라면 기본적으로 생각하는 JMX metric을 고려했었으나 그때 당시에 이 community를 보고 직접 aggregation해서 influxdb에 수집하는 방법을 선택했던게 생각난다
  • 또 aggregation할 때 spring actuator micrometer를 사용하려 했으나 이곳에서 모으는 데이터를 정제해서 보고자 하는 데이터 형태로 influxdb에 넣는건 좋지 못한 방법이었다
  • 그래서 결국 pooling방식으로 얻고자 하는 클러스터에 직접 stats관련된 http api를 요청해서 잘 조립해서 influx에 기록해서 사용했다