/* * 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.ignite.internal; import java.io.StringWriter; import org.apache.ignite.Ignite; import org.apache.ignite.IgniteCache; import org.apache.ignite.configuration.IgniteConfiguration; import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; import org.apache.ignite.testframework.junits.common.GridCommonTest; import org.apache.log4j.Layout; import org.apache.log4j.Logger; import org.apache.log4j.SimpleLayout; import org.apache.log4j.WriterAppender; /** * Check logging local node metrics */ @SuppressWarnings({"ProhibitedExceptionDeclared"}) @GridCommonTest(group = "Kernal") public class GridNodeMetricsLogSelfTest extends GridCommonAbstractTest { /** */ public GridNodeMetricsLogSelfTest() { super(false); } /** {@inheritDoc} */ @SuppressWarnings({"unchecked"}) @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName); cfg.setMetricsLogFrequency(1000); return cfg; } @Override protected void afterTest() throws Exception { stopAllGrids(); } /** * @throws Exception If failed. */ public void testNodeMetricsLog() throws Exception { // Log to string, to check log content Layout layout = new SimpleLayout(); StringWriter strWr = new StringWriter(); WriterAppender app = new WriterAppender(layout, strWr); Logger.getRootLogger().addAppender(app); Ignite g1 = startGrid(1); IgniteCache<Integer, String> cache1 = g1.createCache("TestCache1"); cache1.put(1, "one"); Ignite g2 = startGrid(2); IgniteCache<Integer, String> cache2 = g2.createCache("TestCache2"); cache2.put(2, "two"); Thread.sleep(10000); //Check that nodes are alie assert cache1.get(1).equals("one"); assert cache2.get(2).equals("two"); String fullLog = strWr.toString(); Logger.getRootLogger().removeAppender(app); assert fullLog.contains("Metrics for local node"); assert fullLog.contains("uptime="); assert fullLog.contains("Non heap"); assert fullLog.contains("Outbound messages queue"); } }