Skip to content

Commit

Permalink
feat: 모니터링 설정 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
apptie committed Aug 11, 2023
1 parent 022724f commit 52cec6c
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.ddang.ddang.configuration;

import org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository;
import org.springframework.boot.actuate.web.exchanges.InMemoryHttpExchangeRepository;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class MonitoringConfiguration {

@Bean
public HttpExchangeRepository httpExchangeRepository() {
return new InMemoryHttpExchangeRepository();
}
}

0 comments on commit 52cec6c

Please sign in to comment.