org.apache.dolphinscheduler.dao.MonitorDBDao Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.dolphinscheduler.dao;
import com.alibaba.druid.pool.DruidDataSource;
import java.sql.Connection;
import java.util.ArrayList;
import java.util.List;
import org.apache.dolphinscheduler.common.enums.DbType;
import org.apache.dolphinscheduler.common.utils.ConnectionUtils;
import org.apache.dolphinscheduler.dao.entity.MonitorRecord;
import org.apache.dolphinscheduler.dao.utils.MysqlPerformance;
import org.apache.dolphinscheduler.dao.utils.PostgrePerformance;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
/**
* database state dao
*/
@Component
public class MonitorDBDao {
private static Logger logger = LoggerFactory.getLogger(MonitorDBDao.class);
public static final String VARIABLE_NAME = "variable_name";
@Autowired
private DruidDataSource dataSource;
/**
* get current db performance
* @return MonitorRecord
*/
public MonitorRecord getCurrentDbPerformance(){
MonitorRecord monitorRecord = null;
Connection conn = null;
try{
conn = dataSource.getConnection();
String driverClassName = dataSource.getDriverClassName();
if(driverClassName.contains(DbType.MYSQL.toString().toLowerCase())){
return new MysqlPerformance().getMonitorRecord(conn);
} else if(driverClassName.contains(DbType.POSTGRESQL.toString().toLowerCase())){
return new PostgrePerformance().getMonitorRecord(conn);
}
}catch (Exception e) {
logger.error("SQLException: {}", e.getMessage(), e);
}finally {
ConnectionUtils.releaseResource(conn);
}
return monitorRecord;
}
/**
* query database state
* @return MonitorRecord list
*/
public List queryDatabaseState() {
List list = new ArrayList<>(1);
MonitorRecord monitorRecord = getCurrentDbPerformance();
if(monitorRecord != null){
list.add(monitorRecord);
}
return list;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy