com.github.bingoohuang.blackcat.instrument.callback.BlackcatTraceMsg 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.Value;
@Value @AllArgsConstructor
public class BlackcatTraceMsg {
private final String traceId;
private final String linkId;
private final String msgType;
private final String msg;
}