일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- opentelemetry
- CI/CD
- scraping
- sonarqube
- argocd
- Service Mesh
- docker
- 크롤링
- GitLab
- 웹 취약점
- helm
- linkerd
- gitlab cd
- CI
- Kubernetes
- 웹 해킹
- Crawling
- gitlab ci
- 모의해킹
- Grafana
- DevOps
- Jenkins
- CD
- Prometheus
- deploy
- ECR
- Monitoring
- 스크레이핑
- eks
- Resource
- Today
- Total
목록전체 글 (57)
ㅡ.ㅡ
프로세스 ps -aux(프로세스 확인 명령어) lsof -p (프로세스가 열고 있는 파일 확인 명령어) lsof -i: (특정 포트를 사용하고 있는 프로세스 확인) 포트 promisc모드인 이더넷 인터페이스 확인 ip link | grep PROMISC 서버에서 열린 포트 확인 netstat -anutlp 로그 로그인 기록 lastlog 로그인 실패 기록 /var/log/btmp lastb 원격 로그인 로그 /var/log/secure 최근에 접속한 기록 /var/log/wtmp last 파일 확인 소유자가 root이고 setuid 설정된 파일 확인 체크 find / -uid 0 -perm 4000 숨김파일 목록 확인(.으로 시작하는 파일) find / -name ".[^.+]*" 10분내에 상태변경이 ..
Istio Flow Ingress Gateway > Gateway + VirtualService + Destination Rule > Service > Pod Istioctl # 네임스페이스 생성 ktl create ns istio-system # istioctl 설치 curl -L https://istio.io/downloadIstio | sh - sudo cp -v bin/istioctl /usr/local/bin/ itl version itl install -f istio-ingress.yaml # Istio와 관련된 리소스 삭제 istioctl x uninstall --purge # Mesh service를 사용할 Istio 활성화 라벨 추가 kubectl label namespace 네임스페이스..
APP/Build.gradle actuator와 micrometer Prometheus 메트릭 의존성 추가 dependencies { implementation 'org.springframework.boot:spring-boot-starter-actuator' implementation 'io.micrometer:micrometer-registry-prometheus' } APP/Application.yaml Promethues에 추가될 앱 이름과 메트릭에 포함될 정보들 포함 spring: application: name: 앱이름 management: metrics: tags: application: ${spring.application.name} endpoints: web: exposure: inclu..