Package org.apache.geronimo.monitoring.console.data

Examples of org.apache.geronimo.monitoring.console.data.Node


            userTransaction.commit();
        }
    }
   
    private Node persistDefaultServer() throws Exception {
        Node node = new Node();
        node.setName("Default Server");
        node.setHost("localhost");
        node.setUserName("");
        node.setPassword("");
        node.setPort(1099);
        node.setProtocol("JMX");
        entityManager.persist(node);
        return node;
    }
View Full Code Here


        entityManager.persist(view);
        return view;
    }
   
    private boolean isPredefinedServerViewExist() {
        Node node = entityManager.find(Node.class, "Default Server");
        return node != null;
    }
View Full Code Here

    }
   
    private void deleteDefaultServerView(ActionRequest actionRequest, ActionResponse actionResponse) throws Exception {
        try {
            userTransaction.begin();
            Node node = entityManager.find(Node.class, "Default Server");
            if (node != null) {
                List<Graph> graphs = entityManager.createNamedQuery("graphsByNode").setParameter("name", node.getName()).getResultList();
                if (!(graphs == null || graphs.isEmpty())) {
                    for (Graph graph : graphs) {
                        List<View> views = graph.getViews();
                        for (View view : views) {
                            entityManager.remove(view);
View Full Code Here

    public GraphsBuilder() {
    }

    public StatsGraph getStatsGraph(Graph graph) throws Exception {
        StatsGraph statsGraph = null;
        Node node = graph.getNode();
        if (node != null) {
            String ip = node.getHost();
            String username = node.getUserName();
            String password = node.getPassword();
            int port = node.getPort();
            String protocol = node.getProtocol();
            MRCConnector mrc = new MRCConnector(ip, username, password, port, protocol);
            Long snapshotDurationMS = mrc.getSnapshotDuration();

            List<Long> dataList1 = new ArrayList<Long>();
            List<Long> dataList2 = new ArrayList<Long>();
View Full Code Here

    private void alterServerState(String server_id, boolean enable, PortletRequest request) {
        try {
            userTransaction.begin();
            try {
                Node node = (Node) entityManager.createNamedQuery("nodeByName").setParameter("name", server_id).getSingleResult();
                node.setEnabled(enable);
            } finally {
                userTransaction.commit();
            }
            if (enable) {
                addInfoMessage(request, getLocalizedString(request, "mconsole.infoMsg02", server_id));
View Full Code Here

        actionResponse.setRenderParameter("server_id", server_id);

        try {
            userTransaction.begin();
            try {
                Node node = entityManager.find(Node.class, server_id);
                node.setName(actionRequest.getParameter("name"));
                node.setHost(actionRequest.getParameter("ip"));
                node.setUserName(actionRequest.getParameter("username"));
                String password = actionRequest.getParameter("password");
                if (password != null && !password.equals("")) {
                    password = EncryptionManager.encrypt(password);
                    node.setPassword(password);
                }
                node.setPort(Integer.parseInt(actionRequest.getParameter("port")));
                node.setProtocol(actionRequest.getParameter("protocol"));
                //TODO retention??
                String snapshot = actionRequest.getParameter("snapshot");
                String retention = actionRequest.getParameter("retention");
                if (snapshot != null && retention != null) {
                    MRCConnector connector = new MRCConnector(node);
View Full Code Here

    private void alterServerState(String server_id, boolean enable, PortletRequest request) {
        try {
            userTransaction.begin();
            try {
                Node node = (Node) entityManager.createNamedQuery("nodeByName").setParameter("name", server_id).getSingleResult();
                node.setEnabled(enable);
            } finally {
                userTransaction.commit();
            }
            if (enable) {
                addInfoMessage(request, getLocalizedString(request, "mconsole.infoMsg02", server_id));
View Full Code Here

        actionResponse.setRenderParameter("server_id", server_id);

        try {
            userTransaction.begin();
            try {
                Node node = entityManager.find(Node.class, server_id);
                node.setName(actionRequest.getParameter("name"));
                node.setHost(actionRequest.getParameter("ip"));
                node.setUserName(actionRequest.getParameter("username"));
                String password = actionRequest.getParameter("password");
                if (password != null && !password.equals("")) {
                    password = EncryptionManager.encrypt(password);
                    node.setPassword(password);
                }
                node.setPort(Integer.parseInt(actionRequest.getParameter("port")));
                node.setProtocol(actionRequest.getParameter("protocol"));
                //TODO retention??
                String snapshot = actionRequest.getParameter("snapshot");
                String retention = actionRequest.getParameter("retention");
                if (snapshot != null && retention != null) {
                    MRCConnector connector = new MRCConnector(node);
View Full Code Here

        try {
            userTransaction.begin();
            String name = actionRequest.getParameter("name");
            String host = actionRequest.getParameter("ip");
            try {
                Node node = new Node();
                node.setName(name);
                node.setHost(host);
                node.setUserName(actionRequest.getParameter("username"));
                String password = actionRequest.getParameter("password");
                if (password != null && !password.equals("")) {
                    password = EncryptionManager.encrypt(password);
                    node.setPassword(password);
                }
                node.setPort(Integer.parseInt(actionRequest.getParameter("port")));
                node.setProtocol(actionRequest.getParameter("protocol"));
                entityManager.persist(node);
            } finally {
                userTransaction.commit();
            }
            addInfoMessage(actionRequest, getLocalizedString(actionRequest, "mconsole.infoMsg11", name, host));
View Full Code Here

        actionResponse.setRenderParameter("server_id", server_id);

        try {
            userTransaction.begin();
            try {
                Node node = entityManager.find(Node.class, server_id);
                // check if there is any graph created against the node before delete it.
                List<Graph> graphs = entityManager.createNamedQuery("graphsByNode").setParameter("name", node.getName()).getResultList();
                if (!(graphs == null || graphs.isEmpty())) {
                    addErrorMessage(actionRequest, getLocalizedString(actionRequest, "mconsole.errorMsg20"));
                    return;
                }
                // check whether the snapshot query is enabled, if does, close it first
View Full Code Here

TOP

Related Classes of org.apache.geronimo.monitoring.console.data.Node

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.