com.teamscale.client.ProfilerInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of teamscale-client Show documentation
Show all versions of teamscale-client Show documentation
A tiny service client that only supports Teamscale's the external upload interface and impacted-tests service.
package com.teamscale.client;
/** Information about the profiler including the process it is attached to as well as the configuration it is running with. */
public class ProfilerInfo {
/** Information about the machine and process the profiler is running on. */
public ProcessInformation processInformation;
/** Concrete config that the profiler is running with. */
public ProfilerConfiguration profilerConfiguration;
public ProfilerInfo(ProcessInformation processInformation, ProfilerConfiguration profilerConfiguration) {
this.processInformation = processInformation;
this.profilerConfiguration = profilerConfiguration;
}
}