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

water.api.ProfilerNodeV3 Maven / Gradle / Ivy

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

import water.Iced;

public class ProfilerNodeV3 extends Schema {
  public static class ProfilerNodeEntryV3 extends Schema {
    @API(help="Stack trace", direction=API.Direction.OUTPUT)
    public String stacktrace;

    @API(help="Profile Count", direction=API.Direction.OUTPUT)
    public int count;
  }

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

  @API(help="Timestamp (millis since epoch)", direction=API.Direction.OUTPUT)
  public long timestamp;

  @API(help="Profile entry list", direction=API.Direction.OUTPUT)
  public ProfilerNodeEntryV3[] entries;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy