]> source.dussan.org Git - sonarqube.git/blob
8ab8a07f1e267927639bdb9f6e55f40c6dbbf2bb
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.server.platform.monitoring.cluster;
21
22 import org.sonar.api.config.Configuration;
23 import org.sonar.api.platform.Server;
24 import org.sonar.api.server.ServerSide;
25 import org.sonar.process.ProcessProperties;
26 import org.sonar.process.systeminfo.SystemInfoSection;
27 import org.sonar.process.systeminfo.protobuf.ProtobufSystemInfo;
28 import org.sonar.server.health.Health;
29 import org.sonar.server.health.HealthChecker;
30 import org.sonar.server.platform.ServerLogging;
31 import org.sonar.server.platform.monitoring.OfficialDistribution;
32
33 import static org.sonar.process.systeminfo.SystemInfoUtils.setAttribute;
34
35 @ServerSide
36 public class NodeSystemSection implements SystemInfoSection {
37
38   private final Configuration config;
39   private final Server server;
40   private final ServerLogging serverLogging;
41   private final OfficialDistribution officialDistribution;
42   private final HealthChecker healthChecker;
43
44   public NodeSystemSection(Configuration config, Server server, ServerLogging serverLogging,
45     OfficialDistribution officialDistribution, HealthChecker healthChecker) {
46     this.config = config;
47     this.server = server;
48     this.serverLogging = serverLogging;
49     this.officialDistribution = officialDistribution;
50     this.healthChecker = healthChecker;
51   }
52
53   @Override
54   public ProtobufSystemInfo.Section toProtobuf() {
55     ProtobufSystemInfo.Section.Builder protobuf = ProtobufSystemInfo.Section.newBuilder();
56     protobuf.setName("System");
57
58     Health health = healthChecker.checkNode();
59     setAttribute(protobuf, "Health", health.getStatus().name());
60     setAttribute(protobuf, "Health Causes", health.getCauses());
61     setAttribute(protobuf, "Version", server.getVersion());
62     setAttribute(protobuf, "Official Distribution", officialDistribution.check());
63     setAttribute(protobuf, "Home Dir", config.get(ProcessProperties.PATH_HOME).orElse(null));
64     setAttribute(protobuf, "Data Dir", config.get(ProcessProperties.PATH_DATA).orElse(null));
65     setAttribute(protobuf, "Temp Dir", config.get(ProcessProperties.PATH_TEMP).orElse(null));
66     setAttribute(protobuf, "Logs Dir", config.get(ProcessProperties.PATH_LOGS).orElse(null));
67     setAttribute(protobuf, "Logs Level", serverLogging.getRootLoggerLevel().name());
68     return protobuf.build();
69   }
70
71 }