org.graylog2.rest.resources.system.StatsResource Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog2.rest.resources.system;
import com.codahale.metrics.annotation.Timed;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.apache.shiro.authz.annotation.RequiresAuthentication;
import org.graylog2.shared.rest.resources.RestResource;
import org.graylog2.shared.system.stats.StatsService;
import org.graylog2.shared.system.stats.SystemStats;
import org.graylog2.shared.system.stats.fs.FsStats;
import org.graylog2.shared.system.stats.jvm.JvmStats;
import org.graylog2.shared.system.stats.network.NetworkStats;
import org.graylog2.shared.system.stats.os.OsStats;
import org.graylog2.shared.system.stats.process.ProcessStats;
import javax.inject.Inject;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
@Api(value = "System/Stats", description = "Node system stats")
@Path("/system/stats")
@Produces(MediaType.APPLICATION_JSON)
@RequiresAuthentication
public class StatsResource extends RestResource {
private final StatsService statsService;
@Inject
public StatsResource(StatsService statsService) {
this.statsService = statsService;
}
@GET
@Timed
@ApiOperation(value = "System information about this node.",
notes = "This resource returns information about the system this node is running on.")
public SystemStats systemStats() {
return statsService.systemStatsWithoutNetwork();
}
@GET
@Path("/fs")
@Timed
@ApiOperation(value = "Filesystem information about this node.",
notes = "This resource returns information about the filesystems of this node.")
public FsStats fsStats() {
return statsService.fsStats();
}
@GET
@Path("/jvm")
@Timed
@ApiOperation(value = "JVM information about this node.",
notes = "This resource returns information about the Java Virtual Machine of this node.")
public JvmStats jvmStats() {
return statsService.jvmStats();
}
@GET
@Path("/network")
@Timed
@ApiOperation(value = "Networking information about this node.",
notes = "This resource returns information about the networking system this node is running with.")
public NetworkStats networkStats() {
return statsService.networkStats();
}
@GET
@Path("/os")
@Timed
@ApiOperation(value = "OS information about this node.",
notes = "This resource returns information about the operating system this node is running on.")
public OsStats osStats() {
return statsService.osStats();
}
@GET
@Path("/process")
@Timed
@ApiOperation(value = "Process information about this node.",
notes = "This resource returns information about the process this node is running as.")
public ProcessStats processStats() {
return statsService.processStats();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy