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

water.api.JStackV3 Maven / Gradle / Ivy

There is a newer version: 3.8.2.9
Show newest version
package water.api;

import water.util.JStack;
import water.util.JStackCollectorTask.DStackTrace;

public class JStackV3 extends RequestSchema {
  @API(help="Stacktraces", direction=API.Direction.OUTPUT)
  public DStackTraceV3[] traces;

  public static class DStackTraceV3 extends Schema {
    public DStackTraceV3() { }

    @API(help="Node name", direction=API.Direction.OUTPUT)
    public String node;

    @API(help="Unix epoch time", direction=API.Direction.OUTPUT)
    public long time;

    @API(help="One trace per thread", direction=API.Direction.OUTPUT)
    public String[] thread_traces;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy