본문 바로가기

전체 글25

Shell script 로그 남기기 time ./myscript.sh | tee -a log.txt 2021. 11. 17.
vscode로 arguments세팅 config 예시 { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Python: train.py", "type": "python", "request": "launch", "program": "${workspaceFolder}/train.py", "args" : ["--base_config", "my_config.json", "--output",.. 2021. 11. 4.
virtualenv를 이용해 특전 버전 python 가상 환경 만들기 가끔 쓰다보니 맨날 까먹어서 적어놓음 virtualenv venv --python=python3.7 . venv/bin/activate 2021. 10. 20.
CSV파일 데이터로 대시보드 만들기 (feat. ELK) ELK란? https://captcha.tistory.com/44 1. ELK(ElasticSearch, Logstash, Kibana) 란? ELK Stack 이란? 1. ELK 란? 현재 4차산업시대에서 데이터는 가장 중요한 자산중 하나로 손꼽힌다. 빅 데이터는 통상적으로 사용되는 데이터 수집, 관리 및 처리 소프트웨어의 수용 한계를 넘어서는 크기의 데이터 captcha.tistory.com ELK는 위 그림과 같이, 분석 및 저장 기능을 담당하는 ElasticSearch, 수집 기능을 하는 Logstash, 이를 시각화하는 도구인 Kibana의 앞글자만 딴 단어이다. ELK는 접근성과 용이성이 좋아 최근 가장 핫한 Log 및 데이터 분석 도구이다. 쉽게 설명하면 logstash로 데이터를 가져올 길.. 2021. 10. 15.