목록전체 글 (435)
보라코딩

단지번호붙이기 import java.util.*;import java.io.*;public class Main{ static int N; static int[][] array; static boolean[][] visited; static int count; static int[] dx = {-1,1,0,0}; static int[] dy = {0,0,-1,1}; static ListInteger> result; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.i..
240716- interface test코드(FakeFTP, AmazonS3 container 사용)까지 모두 완료. 코드리뷰 요청 - Service set up 방법 교육 240717- grafna setup- 프로메테우스에 서비스 연결 완료 - 루프백 : 127.0.0.1로 네트워크 인터페이스가 자체로 패킷을 보내고 수신하는 메커니즘 - 도커에 health check 기능이 있고, 스프링 acturator로도 헬스체크 가능! 240718- 카프카 프로메테우스 연결 완료 - 각 스프링 서비스 프로메테우스, 그라파나 연결 완료 - 그라파나랩스에서 템플릿 사용해서 대시보드 구성 중- 재밌는게 도커 컴포즈에서 서비스명에 _이거 사용하면 프로메테우스에서 안됨...ㅎ... '_' 를 모두 '-' 로 변경! ..

import java.util.*;import java.io.*;public class Main{ static int node; static int line; static int[][] array; static boolean[] visited; static int count; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); node = Intege..