Skip to content

Commit

Permalink
SkyWalking JVM 指标的收集与存储
Browse files Browse the repository at this point in the history
  • Loading branch information
YunaiV committed Jan 6, 2018
1 parent d10357a commit aadff78
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
import org.skywalking.apm.collector.core.data.operator.NonOperation;

/**
* CPU 指标
*
* @author peng-yongsheng
*/
public class CpuMetric extends Data {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ public class CpuMetricTable extends CommonTable {

public static final String TABLE = "cpu_metric";

/**
* 实例编号
*/
public static final String COLUMN_INSTANCE_ID = "instance_id";
/**
* CPU 占用率
*/
public static final String COLUMN_USAGE_PERCENT = "usage_percent";

}

0 comments on commit aadff78

Please sign in to comment.