1. nginx 로그 분석 parse.js 파일을 수정하여 로그를 json 형식으로 출력하기 sample.log 를 보고 로그의 형식을 파악한다. 2. 파서(parser) 작성 const customParseFormat = require('dayjs/plugin/customParseFormat') dayjs.extend(customParseFormat) process.stdin.on("data", data => { // log 파일의 한줄을 저장 let raw = data.toString() // [\] : 대괄호([]) 로 묶인 문자열을 검색 // .+ : 모든 문자열이든 1개 이상 존재 가능 // g : 전역에서 검 let regex = /\[(.+)\]/g let match = regex.exec(..