ProgrammingLogs 10

netdata - mysql 모니터링 설정 메모

https://docs.netdata.cloud/collectors/python.d.plugin/mysql/#configuration MySQL monitoring with Netdata Learn about Netdata's real-time health monitoring and performance troubleshooting for all your systems and applications. docs.netdata.cloud 위 가이드를 따라 했지만, 뭔가 없다는 에러가 튀어나옴 아래는, /var/log/netdata/error.log 에서 발췌 2020-03-11 10:42:14: python.d ERROR: mysql[mycnf1] : MySQLdb or PyMySQL module is ne..

ProgrammingLogs 2020.03.11

[공부] Java 프로그래밍 면접 이렇게 준비한다

4장. 기본 알고리즘 검색은 정렬된 상태를 전제로 수행한다. Comparable 인터페이스는 자연스러운 순서로 정렬할 때, Comparator 인터페이스는 원하는 순서로 정렬할 때 사용한다.String 클래스는 이미 Comparable 인터페이스를 구현하고 있다. 재귀 알고리즘에서는 StackOverflowException을 주의하라. 자바 표준 라이브러리의 몇몇 정렬 알고리즘은, 작은 리스트에는 삽입 정렬을, 일정 크기가 넘어가면 병합 정렬을 이용한다. 5장. 자료구조 System::arraycopy() : 배열의 복사/재할당에 사용되는 정적 메서드 ArrayList 클래스 생성시, 내부 배열의 기본 크기는 10이다. ArrayList는 내부 배열의 크기가 자동으로 커지지만, 줄어들지는 않는다. 따라서..

ProgrammingLogs 2019.03.12