spring boot 監(jiān)控處理方案實(shí)例詳解
大家都知道 spring boot整合了很多很多的第三方框架,我們這里就簡(jiǎn)單討論和使用 性能監(jiān)控和JVM監(jiān)控相關(guān)的東西。其他的本文不討論雖然有些關(guān)聯(lián),所以開篇有說(shuō)需要有相關(guān)spring boot框架基礎(chǔ)說(shuō)了這么多廢話,下面真正進(jìn)入主題。
這里首先給大家看下整體的數(shù)據(jù)流程圖,其中兩條主線一條是接口或方法性能監(jiān)控?cái)?shù)據(jù)收集,還有一條是spring boot 微服務(wù)JVM相關(guān)指標(biāo)數(shù)據(jù)采集,最后都匯總到InfluxDB時(shí)序數(shù)據(jù)庫(kù)中在用數(shù)據(jù)展示工具Grafara進(jìn)行數(shù)據(jù)展示或報(bào)警。

〇、基礎(chǔ)服務(wù)
基礎(chǔ)服務(wù)比較多,其中包括RabbitMQ,Eureka注冊(cè)中心,influxDB,Grafara(不知道這些東西 請(qǐng)百度或谷歌一下了解相關(guān)知識(shí)),下面簡(jiǎn)單說(shuō)下各基礎(chǔ)服務(wù)的功能:
RabbitMQ 一款很流行的消息中間件,主要用它來(lái)收集spring boot應(yīng)用監(jiān)控性能相關(guān)信息,為什么是RabbitMQ而不是什么別的 kafka等等,因?yàn)闇y(cè)試方便性能也夠用,spring boot整合的夠完善。
Eureka 注冊(cè)中心,一般看過(guò)或用過(guò)spring cloud相關(guān)框架的都知道spring cloud注冊(cè)中心主要推薦使用Eureka!至于為什么不做過(guò)多討論不是本文主要討論的關(guān)注點(diǎn)。本文主要用來(lái)同步和獲取注冊(cè)到注冊(cè)中心的應(yīng)用的相關(guān)信息。
InfluxDB和Grafara為什么選這兩個(gè),其他方案如 ElasticSearch 、Logstash 、Kibana,ELK的組合等!原因很顯然 influxDB是時(shí)序數(shù)據(jù)庫(kù)數(shù)據(jù)的壓縮比率比其他(ElasticSearch )好的很多(當(dāng)然本人沒有實(shí)際測(cè)試過(guò)都是看一些文檔)。同時(shí)InfluxDB使用SQL非常類似mysql等關(guān)系型數(shù)據(jù)庫(kù)入門方便,Grafara工具可預(yù)警。等等?。。。。。。。。。。?/p>
好了工具就簡(jiǎn)單介紹到這里,至于這些工具怎么部署搭建請(qǐng)搭建先自行找資料學(xué)習(xí),還是因?yàn)椴皇潜疚闹攸c(diǎn)介紹的內(nèi)容,不深入討論。如果有docker相關(guān)基礎(chǔ)的童鞋可以直接下載個(gè)鏡像啟動(dòng)起來(lái)做測(cè)試使用(本人就是使用docker啟動(dòng)的上面的基礎(chǔ)應(yīng)用(Eureka除外))
一、被監(jiān)控的應(yīng)用
這里不多說(shuō)被監(jiān)控應(yīng)用肯定是spring boot項(xiàng)目但是要引用一下相關(guān)包和相關(guān)注解以及修改相關(guān)配置文件
包引用,這些包是必須引用的
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-sleuth-zipkin-stream</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-stream-rabbit</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-hystrix</artifactId> </dependency>
簡(jiǎn)單說(shuō)下呢相關(guān)包的功能spring-cloud-starter-netflix-eureka-client用于注冊(cè)中心使用的包,spring-cloud-starter-stream-rabbit 發(fā)送RabbitMQ相關(guān)包,spring-boot-starter-actuator發(fā)布監(jiān)控相關(guān)rest接口包,
spring-cloud-starter-hystrix熔斷性能監(jiān)控相關(guān)包?! ?br />
相關(guān)注解
@EnableHystrix//開啟性能監(jiān)控
@RefreshScope//刷新配置文件 與本章無(wú)關(guān)
@EnableAutoConfiguration
@EnableFeignClients//RPC調(diào)用與本章無(wú)關(guān)
@RestController
@SpringBootApplication
public class ServerTestApplication {
protected final static Logger logger = LoggerFactory.getLogger(ServerTestApplication.class);
public static void main(String[] args) {
SpringApplication.run(ServerTestApplication.class, args);
}
}
配置文件相關(guān)
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 60000 hystrix.threadpool.default.coreSize: 100 spring: application: name: spring-cloud-server2-test rabbitmq: host: 10.10.12.21 port: 5672 username: user password: password encrypt: failOnError: false server: port: 8081 eureka: instance: appname: spring-cloud-server2-test prefer-ip-address: true client: serviceUrl: defaultZone: http://IP:PORT/eureka/#注冊(cè)中心地址 eureka-server-total-connections-per-host: 500 endpoints: refresh: sensitive: false metrics: sensitive: false dump: sensitive: false auditevents: sensitive: false features: sensitive: false mappings: sensitive: false trace: sensitive: false autoconfig: sensitive: false loggers: sensitive: false
簡(jiǎn)單解釋一下endpoints下面相關(guān)配置,主要就是 原來(lái)這些路徑是需要授權(quán)訪問(wèn)的,通過(guò)配置讓這些路徑接口不再是敏感的需要授權(quán)訪問(wèn)的接口這應(yīng)我們就可以輕松的訪問(wèn)注冊(cè)到注冊(cè)中心的每個(gè)服務(wù)的響應(yīng)的接口。這里插一句接口性能需要在方法上面加上如下類似相關(guān)注解,然后才會(huì)有相關(guān)性能數(shù)據(jù)輸出
@Value("${name}")
private String name;
@HystrixCommand(commandProperties = {
@HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "20000") }, threadPoolProperties = {
@HystrixProperty(name = "coreSize", value = "64") }, threadPoolKey = "test1")
@GetMapping("/testpro1")
public String getStringtest1(){
return name;
}
好了到這里你的應(yīng)用基本上就具備相關(guān)性能輸出的能力了。你可以訪問(wèn)

如果是上圖的接口 你的應(yīng)用基本OK,為什么是基本因?yàn)槟憬貓D沒有體現(xiàn)性能信息發(fā)送RabbitMQ的相關(guān)信息。這個(gè)需要看日志,加入你失敗了評(píng)論區(qū)在討論。我們先關(guān)注主線。
好的spring boot 應(yīng)用就先說(shuō)道這里。開始下一主題
二、性能指標(biāo)數(shù)據(jù)采集
剛才訪問(wèn)http://IP:port/hystrix.stream這個(gè)顯示出來(lái)的信息就是借口或方法性能相關(guān)信息的輸出,如果上面都沒有問(wèn)題的話數(shù)據(jù)應(yīng)該發(fā)送到了RabbitMQ上面了我們直接去RabbitMQ上面接收相關(guān)數(shù)據(jù)就可以了。
性能指標(biāo)數(shù)據(jù)的采集服務(wù)主要應(yīng)用以下包
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/com.github.miwurster/spring-data-influxdb --> <dependency> <groupId>org.influxdb</groupId> <artifactId>influxdb-java</artifactId> <version>2.8</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> </dependency>
直接貼代碼
package application;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
*
* @author zyg
*
*/
@SpringBootApplication
public class RabbitMQApplication {
public static void main(String[] args) {
SpringApplication.run(RabbitMQApplication.class, args);
}
}
package application;
import org.springframework.amqp.core.Binding;
import org.springframework.amqp.core.BindingBuilder;
import org.springframework.amqp.core.Queue;
import org.springframework.amqp.core.TopicExchange;
import org.springframework.amqp.rabbit.connection.CachingConnectionFactory;
import org.springframework.amqp.rabbit.connection.ConnectionFactory;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
*
* @author zyg
*
*/
@Configuration
public class RabbitMQConfig {
public final static String QUEUE_NAME = "spring-boot-queue";
public final static String EXCHANGE_NAME = "springCloudHystrixStream";
public final static String ROUTING_KEY = "#";
// 創(chuàng)建隊(duì)列
@Bean
public Queue queue() {
return new Queue(QUEUE_NAME);
}
// 創(chuàng)建一個(gè) topic 類型的交換器
@Bean
public TopicExchange exchange() {
return new TopicExchange(EXCHANGE_NAME);
}
// 使用路由鍵(routingKey)把隊(duì)列(Queue)綁定到交換器(Exchange)
@Bean
public Binding binding(Queue queue, TopicExchange exchange) {
return BindingBuilder.bind(queue).to(exchange).with(ROUTING_KEY);
}
@Bean
public ConnectionFactory connectionFactory() {
//rabbitmq IP 端口號(hào)
CachingConnectionFactory connectionFactory = new CachingConnectionFactory("IP", 5672);
connectionFactory.setUsername("user");
connectionFactory.setPassword("password");
return connectionFactory;
}
@Bean
public RabbitTemplate rabbitTemplate(ConnectionFactory connectionFactory) {
return new RabbitTemplate(connectionFactory);
}
}
package application;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import org.influxdb.InfluxDB;
import org.influxdb.InfluxDBFactory;
import org.influxdb.dto.Point;
import org.influxdb.dto.Point.Builder;
import org.influxdb.dto.Query;
import org.influxdb.dto.QueryResult;
/**
*
* @author zyg
*
*/
public class InfluxDBConnect {
private String username;// 用戶名
private String password;// 密碼
private String openurl;// 連接地址
private String database;// 數(shù)據(jù)庫(kù)
private InfluxDB influxDB;
public InfluxDBConnect(String username, String password, String openurl, String database) {
this.username = username;
this.password = password;
this.openurl = openurl;
this.database = database;
}
/** 連接時(shí)序數(shù)據(jù)庫(kù);獲得InfluxDB **/
public InfluxDB influxDbBuild() {
if (influxDB == null) {
influxDB = InfluxDBFactory.connect(openurl, username, password);
influxDB.createDatabase(database);
}
return influxDB;
}
/**
* 設(shè)置數(shù)據(jù)保存策略 defalut 策略名 /database 數(shù)據(jù)庫(kù)名/ 30d 數(shù)據(jù)保存時(shí)限30天/ 1 副本個(gè)數(shù)為1/ 結(jié)尾DEFAULT
* 表示 設(shè)為默認(rèn)的策略
*/
public void createRetentionPolicy() {
String command = String.format("CREATE RETENTION POLICY \"%s\" ON \"%s\" DURATION %s REPLICATION %s DEFAULT",
"defalut", database, "30d", 1);
this.query(command);
}
/**
* 查詢
*
* @param command
* 查詢語(yǔ)句
* @return
*/
public QueryResult query(String command) {
return influxDB.query(new Query(command, database));
}
/**
* 插入
*
* @param measurement
* 表
* @param tags
* 標(biāo)簽
* @param fields
* 字段
*/
public void insert(String measurement, Map<String, String> tags, Map<String, Object> fields) {
Builder builder = Point.measurement(measurement);
builder.time(((long)fields.get("currentTime"))*1000000, TimeUnit.NANOSECONDS);
builder.tag(tags);
builder.fields(fields);
//
influxDB.write(database, "", builder.build());
}
/**
* 刪除
*
* @param command
* 刪除語(yǔ)句
* @return 返回錯(cuò)誤信息
*/
public String deleteMeasurementData(String command) {
QueryResult result = influxDB.query(new Query(command, database));
return result.getError();
}
/**
* 創(chuàng)建數(shù)據(jù)庫(kù)
*
* @param dbName
*/
public void createDB(String dbName) {
influxDB.createDatabase(dbName);
}
/**
* 刪除數(shù)據(jù)庫(kù)
*
* @param dbName
*/
public void deleteDB(String dbName) {
influxDB.deleteDatabase(dbName);
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getOpenurl() {
return openurl;
}
public void setOpenurl(String openurl) {
this.openurl = openurl;
}
public void setDatabase(String database) {
this.database = database;
}
}
package application;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
*
* @author zyg
*
*/
@Configuration
public class InfluxDBConfiguration {
private String username = "admin";//用戶名
private String password = "admin";//密碼
private String openurl = "http://IP:8086";//InfluxDB連接地址
private String database = "test_db";//數(shù)據(jù)庫(kù)
@Bean
public InfluxDBConnect getInfluxDBConnect(){
InfluxDBConnect influxDB = new InfluxDBConnect(username, password, openurl, database);
influxDB.influxDbBuild();
influxDB.createRetentionPolicy();
return influxDB;
}
}
package application;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.util.StringUtils;
import com.fasterxml.jackson.databind.ObjectMapper;
/**
*
* @author zyg
*
*/
@Component
public class Consumer {
protected final static Logger logger = LoggerFactory.getLogger(Consumer.class);
private ObjectMapper objectMapper = new ObjectMapper();
@Autowired
private InfluxDBConnect influxDB;
@RabbitListener(queues = RabbitMQConfig.QUEUE_NAME)
public void sendToSubject(org.springframework.amqp.core.Message message) {
String payload = new String(message.getBody());
logger.info(payload);
if (payload.startsWith("\"")) {
// Legacy payload from an Angel client
payload = payload.substring(1, payload.length() - 1);
payload = payload.replace("\\\"", "\"");
}
try {
if (payload.startsWith("[")) {
@SuppressWarnings("unchecked")
List<Map<String, Object>> list = this.objectMapper.readValue(payload, List.class);
for (Map<String, Object> map : list) {
sendMap(map);
}
} else {
@SuppressWarnings("unchecked")
Map<String, Object> map = this.objectMapper.readValue(payload, Map.class);
sendMap(map);
}
} catch (IOException ex) {
logger.error("Error receiving hystrix stream payload: " + payload, ex);
}
}
private void sendMap(Map<String, Object> map) {
Map<String, Object> data = getPayloadData(map);
data.remove("latencyExecute");
data.remove("latencyTotal");
Map<String, String> tags = new HashMap<String, String>();
tags.put("type", data.get("type").toString());
tags.put("name", data.get("name").toString());
tags.put("instanceId", data.get("instanceId").toString());
//tags.put("group", data.get("group").toString());
influxDB.insert("testaaa", tags, data);
// for (String key : data.keySet()) {
// logger.info("{}:{}",key,data.get(key));
// }
}
public static Map<String, Object> getPayloadData(Map<String, Object> jsonMap) {
@SuppressWarnings("unchecked")
Map<String, Object> origin = (Map<String, Object>) jsonMap.get("origin");
String instanceId = null;
if (origin.containsKey("id")) {
instanceId = origin.get("host") + ":" + origin.get("id").toString();
}
if (!StringUtils.hasText(instanceId)) {
// TODO: instanceid template
instanceId = origin.get("serviceId") + ":" + origin.get("host") + ":" + origin.get("port");
}
@SuppressWarnings("unchecked")
Map<String, Object> data = (Map<String, Object>) jsonMap.get("data");
data.put("instanceId", instanceId);
return data;
}
}
這里不多說(shuō),就是接收RabbitMQ信息然后保存到InfluxDB數(shù)據(jù)庫(kù)中。
三、JVM相關(guān)數(shù)據(jù)采集
JVM相關(guān)數(shù)據(jù)采集非常簡(jiǎn)單主要思想就是定時(shí)輪訓(xùn)被監(jiān)控服務(wù)的接口地址然后把返回信息插入到InfluxDB中
服務(wù)引用的包不多說(shuō)這個(gè)服務(wù)是需要注冊(cè)到注冊(cè)中心Eureka中的因?yàn)樾枰@取所有服務(wù)的監(jiān)控信息。
插入InfluxDB代碼和上面基本類似只不過(guò)多了一個(gè)批量插入方法
package com.zjs.collection;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
/**
*
* @author zyg
*
*/
@EnableEurekaClient
@SpringBootApplication
public class ApplictionCollection
{
public static void main(String[] args) {
SpringApplication.run(ApplictionCollection.class, args);
}
}
/**
* 批量插入
*
* @param measurement
* 表
* @param tags
* 標(biāo)簽
* @param fields
* 字段
*/
public void batchinsert(String measurement, Map<String, String> tags, List<Map<String, Object>> fieldslist) {
org.influxdb.dto.BatchPoints.Builder batchbuilder=BatchPoints.database(database);
for (Map<String, Object> map : fieldslist) {
Builder builder = Point.measurement(measurement);
tags.put("instanceId", map.get("instanceId").toString());
builder.time((long)map.get("currentTime"), TimeUnit.NANOSECONDS);
builder.tag(tags);
builder.fields(map);
batchbuilder.point(builder.build());
}
System.out.println(batchbuilder.build().toString());
influxDB.write(batchbuilder.build());
}
package com.zjs.collection;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.context.annotation.Bean;
import org.springframework.http.client.SimpleClientHttpRequestFactory;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;
/**
* 獲取微服務(wù)實(shí)例
*
* @author zyg
*
*/
@Component
@SpringBootApplication
@EnableScheduling
public class MicServerInstanceInfoHandle {
protected final static Logger logger = LoggerFactory.getLogger(MicServerInstanceInfoHandle.class);
final String pathtail = "/metrics/mem.*|heap.*|threads.*|gc.*|nonheap.*|classes.*";
Map<String, String> tags;
ThreadPoolExecutor threadpool;
@Autowired
DiscoveryClient dc;
@Autowired
RestTemplate restTemplate;
final static LinkedBlockingQueue<Map<String, Object>> jsonMetrics = new LinkedBlockingQueue<>(1000);
/**
* 初始化實(shí)例 可以吧相關(guān)參數(shù)設(shè)置到配置文件
*/
public MicServerInstanceInfoHandle() {
tags = new HashMap<String, String>();
threadpool = new ThreadPoolExecutor(4, 20, 60, TimeUnit.SECONDS, new ArrayBlockingQueue<>(100));
}
@Autowired
private InfluxDBConnect influxDB;
/**
* metrics數(shù)據(jù)獲取
*/
@Scheduled(fixedDelay = 2000)
public void metricsDataObtain() {
logger.info("開始獲取metrics數(shù)據(jù)");
List<String> servicelist = dc.getServices();
for (String str : servicelist) {
List<ServiceInstance> silist = dc.getInstances(str);
for (ServiceInstance serviceInstance : silist) {
threadpool.execute(new MetricsHandle(serviceInstance));
}
}
}
/**
* 將數(shù)據(jù)插入到influxdb數(shù)據(jù)庫(kù)
*/
@Scheduled(fixedDelay = 5000)
public void metricsDataToInfluxDB() {
logger.info("開始批量將metrics數(shù)據(jù)insert-influxdb");
ArrayList<Map<String, Object>> metricslist = new ArrayList<>();
MicServerInstanceInfoHandle.jsonMetrics.drainTo(metricslist);
if (!metricslist.isEmpty()) {
logger.info("批量插入條數(shù):{}", metricslist.size());
influxDB.batchinsert("metrics", tags, metricslist);
}
logger.info("結(jié)束批量metrics數(shù)據(jù)insert");
}
@Bean
public RestTemplate getRestTemplate() {
RestTemplate restTemplate = new RestTemplate();
SimpleClientHttpRequestFactory achrf = new SimpleClientHttpRequestFactory();
achrf.setConnectTimeout(10000);
achrf.setReadTimeout(10000);
restTemplate.setRequestFactory(achrf);
return restTemplate;
}
class MetricsHandle extends Thread {
private ServiceInstance serviceInstanc;
public MetricsHandle(ServiceInstance serviceInstance){
serviceInstanc=serviceInstance;
}
@Override
public void run() {
try {
logger.info("獲取 {}:{}:{} 應(yīng)用metrics數(shù)據(jù)",serviceInstanc.getServiceId(),serviceInstanc.getHost(),serviceInstanc.getPort());
@SuppressWarnings("unchecked")
Map<String, Object> mapdata = restTemplate
.getForObject(serviceInstanc.getUri().toString() + pathtail, Map.class);
mapdata.put("instanceId", serviceInstanc.getServiceId() + ":" + serviceInstanc.getHost() + ":"
+ serviceInstanc.getPort());
mapdata.put("type", "metrics");
mapdata.put("currentTime", System.currentTimeMillis() * 1000000);
MicServerInstanceInfoHandle.jsonMetrics.add(mapdata);
} catch (Exception e) {
logger.error("instanceId:{},host:{},port:{},path:{},exception:{}", serviceInstanc.getServiceId(),
serviceInstanc.getHost(), serviceInstanc.getPort(), serviceInstanc.getUri(),
e.getMessage());
}
}
}
}
這里簡(jiǎn)單解釋一下這句代碼 final String pathtail = "/metrics/mem.*|heap.*|threads.*|gc.*|nonheap.*|classes.*"; ,metrics這個(gè)路徑下的信息很多但是我們不是都需要所以我們需要有選擇的獲取這樣節(jié)省流量和時(shí)間。上面關(guān)鍵類MicServerInstanceInfoHandle做了一個(gè)多線程訪問(wèn)主要應(yīng)對(duì)注冊(cè)中心有成百上千個(gè)服務(wù)的時(shí)候單線程可能輪序不過(guò)來(lái),同時(shí)做了一個(gè)隊(duì)列緩沖,批量插入到InfluxDB。
四、結(jié)果展示

如果你數(shù)據(jù)采集成功了就可以繪制出來(lái)上面的圖形下面是對(duì)應(yīng)的sql
SELECT mean("rollingCountFallbackSuccess"), mean("rollingCountSuccess") FROM "testaaa" WHERE ("instanceId" = 'IP:spring-cloud-server1-test:8082' AND "type" = 'HystrixCommand') AND $timeFilter GROUP BY time($__interval) fill(null)
SELECT mean("currentPoolSize") FROM "testaaa" WHERE ("type" = 'HystrixThreadPool' AND "instanceId" = '10.10.12.51:spring-cloud-server1-test:8082') AND $timeFilter GROUP BY time($__interval) fill(null)
SELECT "heap", "heap.committed", "heap.used", "mem", "mem.free", "nonheap", "nonheap.committed", "nonheap.used" FROM "metrics" WHERE ("instanceId" = 'SPRING-CLOUD-SERVER1-TEST:10.10.12.51:8082') AND $timeFilter
好了到這里就基本結(jié)束了。
五、優(yōu)化及設(shè)想
上面的基礎(chǔ)服務(wù)肯定都是需要高可用的,毋庸置疑都是需要學(xué)習(xí)的。如果有時(shí)間我也會(huì)向大家一一介紹,大家亦可以去搜索相關(guān)資料查看!
可能有人問(wèn)有一個(gè)叫telegraf的小插件直接就能收集相關(guān)數(shù)據(jù)進(jìn)行聚合結(jié)果監(jiān)控,
其實(shí)我之前也是使用的telegraf這個(gè)小工具但是發(fā)現(xiàn)一個(gè)問(wèn)題,
就是每次被監(jiān)控的應(yīng)用重啟的時(shí)候相關(guān)字段名就會(huì)變,
因?yàn)樗杉褂玫氖穷悓?shí)例的名字作為字段名,這應(yīng)我們會(huì)很不方便,每次重啟應(yīng)用我們都要重新設(shè)置sql語(yǔ)句這樣非常不友好,
再次感覺收集數(shù)據(jù)編碼難度不大所以自己就寫了收集數(shù)據(jù)的代碼!如果有哪位大神對(duì)telegraf比較了解可以解決上面我說(shuō)的問(wèn)題記得給我留言哦!在這里先感謝!
有些地方是需要優(yōu)化的,比如一些IP端口什么的都是可以放到配置文件里面的。
六、總結(jié)
從spring boot到現(xiàn)在短短的2、3年時(shí)間就迅速變得火爆,知識(shí)體系也變得完善,開發(fā)成本越來(lái)越低,
所以普及程度就越來(lái)越高,微服務(wù)雖然很好但是我們也要很好的善于運(yùn)用,監(jiān)控就是重要的一環(huán),
試想一下你的機(jī)房運(yùn)行著成千上萬(wàn)的服務(wù),穩(wěn)定運(yùn)行和及時(shí)發(fā)現(xiàn)有問(wèn)題的服務(wù)是多么重要的一件事情!
相關(guān)文章
解決Java & Idea啟動(dòng)tomcat的中文亂碼問(wèn)題
這篇文章主要介紹了Java & Idea啟動(dòng)tomcat的中文亂碼問(wèn)題,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-07-07
SpringMVC九大組件之HandlerMapping詳解
這篇文章主要介紹了SpringMVC九大組件之HandlerMapping詳解,HandlerMapping 叫做處理器映射器,它的作用就是根據(jù)當(dāng)前 request 找到對(duì)應(yīng)的 Handler 和 Interceptor,然后封裝成一個(gè) HandlerExecutionChain 對(duì)象返回,需要的朋友可以參考下2023-09-09
SpringBoot整合Web開發(fā)之Json數(shù)據(jù)返回的實(shí)現(xiàn)
這篇文章主要介紹了SpringBoot整合Web開發(fā)其中Json數(shù)據(jù)返回的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2022-08-08
java開發(fā)RocketMQ消息中間件原理基礎(chǔ)詳解
最近 RocketMQ 剛剛上生產(chǎn)環(huán)境,閑暇之時(shí)在這里做一些分享,主要目的是讓初學(xué)者能快速上手RocketMQ,有需要的朋友可以借鑒參考下,希望能夠有所幫助2021-11-11
SpringBoot+MyBatisPlus對(duì)Map中Date格式轉(zhuǎn)換處理的方法詳解
在?SpringBoot?項(xiàng)目中,?如何統(tǒng)一?JSON?格式化中的日期格式。本文將為大家介紹一種方法:利用MyBatisPlus實(shí)現(xiàn)對(duì)Map中Date格式轉(zhuǎn)換處理,需要的可以參考一下2022-10-10
hibernate一對(duì)多關(guān)聯(lián)映射學(xué)習(xí)小結(jié)
這篇文章主要介紹了hibernate一對(duì)多關(guān)聯(lián)映射學(xué)習(xí)小結(jié),需要的朋友可以參考下2017-09-09
SpringBoot統(tǒng)一接口返回及全局異常處理高級(jí)用法
這篇文章主要為大家介紹了SpringBoot統(tǒng)一接口返回及全局異常處理高級(jí)用法示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-06-06
java常用數(shù)據(jù)流應(yīng)用實(shí)例解析
這篇文章主要介紹了java常用數(shù)據(jù)流應(yīng)用實(shí)例解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-12-12

