[도서] 사이트 신뢰성 엔지니어링

2018-01-09 KENNETH 0

[도서] 사이트 신뢰성 엔지니어링 분야별 신상품 – 국내도서 – 컴퓨터와 인터넷 [도서]사이트 신뢰성 엔지니어링 벳시 베이어,크리스 존스,제니퍼 펫오프,니얼 리처드 머피 공저/장현희 역 | 제이펍 | 2018년 01월 판매가 32,400원 (10%할인) | YES포인트 1,800원(5%지급) 이벤트 : 주목 IT 신간&예약판매 사은품 이벤트 다음 단계로 성장하기 위한 영감으로 가득한 책! 실제로 동작하는 코드가 가장 중요하다고 여기는 구글의 원칙을 체험한다! 소프트웨어 시스템의 수명은 보통 디자인이나 구현 단계가 아니라 실제로 사용되는 기 Source: [도서] 사이트 신뢰성 엔지니어링

No Image

Monitoring NGINX

2018-01-09 KENNETH 0

Monitoring NGINX Setting up a monitoring tool for NGINX is an important part of maintaining website operations. Proper NGINX monitoring can reveal a lot of useful information about the underlying application performance. There are quite a few monitoring systems out there suitable for the task; the first step, however, is to enable metric collection in NGINX. Using the stub_status Module There’s a module for NGINX called ngx_http_stub_status_module (or simply stub_status) that exposes a few important metrics about NGINX activity. To check if your NGINX build has the stub_status module, use nginx -V: nginx -V 2>&1 | grep –color — –with-http_stub_status_module Our NGINX builds already include the stub_status module. Check this page for the available Linux packages. Otherwise, you have to rebuild nginx from source, adding the parameter –with-http_stub_status_module to the configure script. As the next step, enable the stub_status module [ more… ]