Repository: kylin Updated Branches: refs/heads/master 4bee8d9ef -> 004a25e97
KYLIN-1501 Print some environment information at init Project: http://git-wip-us.apache.org/repos/asf/kylin/repo Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/004a25e9 Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/004a25e9 Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/004a25e9 Branch: refs/heads/master Commit: 004a25e97d052ca0cefed49006f897502310e465 Parents: 4bee8d9 Author: lidongsjtu <[email protected]> Authored: Tue Mar 22 15:03:02 2016 +0800 Committer: lidongsjtu <[email protected]> Committed: Tue Mar 22 15:03:11 2016 +0800 ---------------------------------------------------------------------- .../apache/kylin/rest/init/ClientInfoTask.java | 49 ++++++++++++++++++++ 1 file changed, 49 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kylin/blob/004a25e9/server/src/main/java/org/apache/kylin/rest/init/ClientInfoTask.java ---------------------------------------------------------------------- diff --git a/server/src/main/java/org/apache/kylin/rest/init/ClientInfoTask.java b/server/src/main/java/org/apache/kylin/rest/init/ClientInfoTask.java new file mode 100644 index 0000000..1877c7d --- /dev/null +++ b/server/src/main/java/org/apache/kylin/rest/init/ClientInfoTask.java @@ -0,0 +1,49 @@ +/* + * 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.kylin.rest.init; + +import org.apache.kylin.common.KylinVersion; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +/** + * Created by dongli on 3/16/16. + */ +public class ClientInfoTask extends InitialTask { + + private static final Logger logger = LoggerFactory.getLogger(ClientInfoTask.class); + + @Override + public void execute() { + StringBuilder buf = new StringBuilder(); + + buf.append("Client information:").append("\n"); + buf.append("kylin.version:").append(KylinVersion.getCurrentVersion()).append("\n"); + buf.append("os.name:").append(System.getProperty("os.name")).append("\n"); + buf.append("os.arch:").append(System.getProperty("os.arch")).append("\n"); + buf.append("os.version:").append(System.getProperty("os.version")).append("\n"); + buf.append("java.class.path:").append(System.getProperty("java.class.path")).append("\n"); + buf.append("java.version:").append(System.getProperty("java.version")).append("\n"); + buf.append("java.vendor:").append(System.getProperty("java.vendor")).append("\n"); + buf.append("java.library.path:").append(System.getProperty("java.library.path")); + + logger.info(buf.toString()); + } + +}
