com.github.bingoohuang.blackcat.instrument.callback.BlackcatMetricMsg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blackcat-instrument Show documentation
Show all versions of blackcat-instrument Show documentation
agent that monitor a machine's memory, cpu, processes and etc.
The newest version!
package com.github.bingoohuang.blackcat.instrument.callback;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data @AllArgsConstructor
public class BlackcatMetricMsg {
private final String metricName;
private final long countValue;
}