com.clustercontrol.platform.selfcheck.DBSizeMonitor.java Source code

Java tutorial

Introduction

Here is the source code for com.clustercontrol.platform.selfcheck.DBSizeMonitor.java

Source

/*
    
Copyright (C) 2017 NTT DATA Corporation
    
This program is free software; you can redistribute it and/or
Modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, version 2.
    
This program is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.  See the GNU General Public License for more details.
    
 */

package com.clustercontrol.platform.selfcheck;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import com.clustercontrol.bean.PriorityConstant;
import com.clustercontrol.commons.util.HinemosEntityManager;
import com.clustercontrol.commons.util.JpaTransactionManager;
import com.clustercontrol.maintenance.util.HinemosPropertyUtil;
import com.clustercontrol.selfcheck.monitor.SelfCheckMonitorBase;
import com.clustercontrol.util.MessageConstant;
import com.clustercontrol.util.apllog.AplLogger;

/**
 * ???????
 */
public class DBSizeMonitor extends SelfCheckMonitorBase {

    private static Log m_log = LogFactory.getLog(DBSizeMonitor.class);

    public final String monitorId = "SYS_DBSIZE";
    public final String application = "SELFCHECK (DB Size)";
    public final String subKey = "";

    /**
     * 
     * @param dataSourceName ??"HinemosDS"??
     */
    public DBSizeMonitor() {
    }

    /**
     * ID
     */
    @Override
    public String getMonitorId() {
        return monitorId;
    }

    /**
     * ???
     */
    @Override
    public void execute() {
        boolean warn = true;

        if (!HinemosPropertyUtil.getHinemosPropertyBool("selfcheck.monitoring.dbsize", true)) {
            m_log.debug("skip");
            return;
        }

        long sizeThreshold = HinemosPropertyUtil.getHinemosPropertyNum("selfcheck.monitoring.dbsize.threshold",
                Long.valueOf(10240));

        m_log.debug("monitoring database size. (threshold=" + sizeThreshold + ")");
        double dbSize = getDatabaseSize();

        if (dbSize == -1) {
            m_log.info("skipped monitoring database size. (threshold = " + sizeThreshold + " [mbyte])");
            return;
        } else {
            if (dbSize <= sizeThreshold) {
                m_log.debug("database size is low. (size = " + String.format("%.2f", dbSize)
                        + " [mbyte], threshold = " + sizeThreshold + " [mbyte])");
                warn = false;
            }
        }
        if (warn) {
            m_log.info("database size is high. (usage = " + String.format("%.2f", dbSize) + " [mbyte], threshold = "
                    + sizeThreshold + " [mbyte])");
        }

        if (!isNotify(subKey, warn)) {
            return;
        }

        String[] msgAttr1 = { String.format("%.2f", dbSize), Long.toString(sizeThreshold) };
        AplLogger.put(PriorityConstant.TYPE_WARNING, PLUGIN_ID, MessageConstant.MESSAGE_SYS_023_SYS_SFC, msgAttr1,
                "usage of database has exceeded its threshold (" + String.format("%.2f", dbSize)
                        + " [mbyte] > threshold " + sizeThreshold + " [mbyte])" + ").");
        return;
    }

    private double getDatabaseSize() {
        JpaTransactionManager tm = null;
        HinemosEntityManager em = null;

        String query = "EXEC sp_spaceused";
        double physicalSize = -1;

        // ?
        try {
            tm = new JpaTransactionManager();
            tm.begin();

            em = tm.getEntityManager();

            Object[] data = (Object[]) (em.createNativeQuery(query).getSingleResult());

            if (data != null && data.length == 3) {
                physicalSize = Double.valueOf(((String) data[2]).replace("MB", "").trim());
            }

            tm.commit();
        } catch (Exception e) {
            m_log.warn("database query execution failure. (" + query + ")", e);
        } finally {
            if (tm != null) {
                tm.close();
            }
        }

        return physicalSize;
    }
}