All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taotao.boot.actuator.druid.DruidEndpoint Maven / Gradle / Ivy

There is a newer version: 2024.12
Show newest version

package com.taotao.boot.actuator.druid;

import com.alibaba.druid.stat.JdbcStatManager;
import org.springframework.boot.actuate.endpoint.annotation.Endpoint;
import org.springframework.boot.actuate.endpoint.annotation.ReadOperation;

import javax.management.JMException;
import javax.management.openmbean.TabularData;

/**
 * druid stat 端点
 */
@Endpoint(id = "ttcdruidendpoint")
public class DruidEndpoint {

	@ReadOperation
	public TabularData jdbcStat() throws JMException {
		JdbcStatManager instance = JdbcStatManager.getInstance();
		return instance.getSqlList();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy