All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.teamscale.client.ProcessInformation Maven / Gradle / Ivy

Go to download

A tiny service client that only supports Teamscale's the external upload interface and impacted-tests service.

There is a newer version: 34.2.0
Show newest version
package com.teamscale.client;

/** Information about the process and machine the profiler is attached to. */
public class ProcessInformation {

	/** Hostname of the machine it is running on */
	public final String hostname;

	/** Profiled PID */
	public final String pid;

	/** The timestamp at which the process was started. */
	public final long startedAtTimestamp;

	public ProcessInformation(String hostname, String pid, long startedAtTimestamp) {
		this.hostname = hostname;
		this.pid = pid;
		this.startedAtTimestamp = startedAtTimestamp;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy