Add logback to logstash test code
[vfc/nfvo/wfengine.git] / logging-sdk / src / main / java / org / openo / log / test / TestLogback2Logstash.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openo.log.test;
17
18 import java.io.IOException;
19 import java.io.InputStream;
20 import java.util.Date;
21
22 import org.openo.log.api.LogService;
23 import org.openo.log.api.SysLogMessage;
24 import org.slf4j.LoggerFactory;
25
26 import ch.qos.logback.classic.LoggerContext;
27 import ch.qos.logback.classic.joran.JoranConfigurator;
28 import ch.qos.logback.core.joran.spi.JoranException;
29
30 /**
31  * @author Huabing Zhao
32  *
33  */
34 public class TestLogback2Logstash {
35
36   /**
37    * @param args
38    * @throws JoranException
39    * @throws IOException
40    * @throws InterruptedException
41    */
42   public static void main(String[] args) throws JoranException, IOException, InterruptedException {
43     LoggerContext loggerContext = (LoggerContext) LoggerFactory.getILoggerFactory();
44     loggerContext.reset();
45     JoranConfigurator configurator = new JoranConfigurator();
46     InputStream configStream = TestLogback2Logstash.class.getResourceAsStream("logback.xml");
47     configurator.setContext(loggerContext);
48     configurator.doConfigure(configStream); // loads logback file
49     configStream.close();
50
51     for (int i = 0; i < 10; i++) {
52       SysLogMessage sysLogMessage = new SysLogMessage("a sys log example", "www.open-o.org",
53           LogService.SYSLOG_RANK_WARN, "logdetails", new Date(), new Date());
54       LogService.getInstance().recordSysLog(sysLogMessage);
55     }
56     loggerContext.stop();
57   }
58 }