集成elk收集日志

This commit is contained in:
zhh
2018-09-11 15:54:16 +08:00
parent 0862e9fc74
commit 8e959bf873
10 changed files with 119 additions and 8 deletions

View File

@@ -1,16 +1,31 @@
package com.macro.mall;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.macro.mall.model.PmsProduct;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class MallDemoApplicationTests {
private Logger logger = LoggerFactory.getLogger(MallDemoApplicationTests.class);
@Test
public void contextLoads() {
}
@Test
public void testLogStash() throws Exception {
ObjectMapper mapper = new ObjectMapper();
PmsProduct product = new PmsProduct();
product.setId(1L);
product.setName("小米手机");
product.setBrandName("小米");
logger.info(mapper.writeValueAsString(product));
logger.error(mapper.writeValueAsString(product));
}
}