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

net.opentsdb.tools.BuildData Maven / Gradle / Ivy

Go to download

OpenTSDB is a distributed, scalable Time Series Database (TSDB) written on top of HBase. OpenTSDB was written to address a common need: store, index and serve metrics collected from computer systems (network gear, operating systems, applications) at a large scale, and make this data easily accessible and graphable.

There is a newer version: 2.4.1
Show newest version
/* This file was generated by /Users/clarsen/Documents/opentsdb/opentsdb_OFFICIAL/build-aux/gen_build_data.sh.  Do not edit manually.  */
package net.opentsdb.tools;

/** Build data for {@code net.opentsdb.tools} */
public final class BuildData {
  /** Version string MAJOR.MINOR.MAINT */
  public static final String version = "BuildData";
  /** Short revision at which this package was built. */
  public static final String short_revision = "14ab3ef8";
  /** Full revision at which this package was built. */
  public static final String full_revision = "14ab3ef8a865816cf920aa69f2e019b7261a7847";
  /** UTC date at which this package was built. */
  public static final String date = "2018/12/17 02:38:50 +0000";
  /** UNIX timestamp of the time of the build. */
  public static final long timestamp = 1545014330;

  /** Represents the status of the repository at the time of the build. */
  public static enum RepoStatus {
    /** The status of the repository was unknown at the time of the build. */
    UNKNOWN,
    /** There was no local modification during the build. */
    MINT,
    /** There were some local modifications during the build. */
    MODIFIED;
  }
  /** Status of the repository at the time of the build. */
  public static final RepoStatus repo_status = RepoStatus.MINT;

  /** Username of the user who built this package. */
  public static final String user = "clarsen";
  /** Host on which this package was built. */
  public static final String host = "C02VQ1KGHTDD";
  /** Path to the repository in which this package was built. */
  public static final String repo = "/Users/clarsen/Documents/opentsdb/opentsdb_OFFICIAL";
  /** Git branch */
  public static final String branch = "master";

  /** Human readable string describing the revision of this package. */
  public static final String revisionString() {
    return "net.opentsdb.tools BuildData built at revision 14ab3ef8 (MINT)";
  }
  /** Human readable string describing the build information of this package. */
  public static final String buildString() {
    return "Built on 2018/12/17 02:38:50 +0000 by clarsen@C02VQ1KGHTDD:/Users/clarsen/Documents/opentsdb/opentsdb_OFFICIAL";
  }

  // These functions are useful to avoid cross-jar inlining.

  /** Version string MAJOR.MINOR.MAINT */
  public static String version() {
    return version;
  }
  /** Short revision at which this package was built. */
  public static String shortRevision() {
    return short_revision;
  }
  /** Full revision at which this package was built. */
  public static String fullRevision() {
    return full_revision;
  }
  /** UTC date at which this package was built. */
  public static String date() {
    return date;
  }
  /** UNIX timestamp of the time of the build. */
  public static long timestamp() {
    return timestamp;
  }
  /** Status of the repository at the time of the build. */
  public static RepoStatus repoStatus() {
    return repo_status;
  }
  /** Username of the user who built this package. */
  public static String user() {
    return user;
  }
  /** Host on which this package was built. */
  public static String host() {
    return host;
  }
  /** Path to the repository in which this package was built. */
  public static String repo() {
    return repo;
  }

  // Can't instantiate.
  private BuildData() {}

  public static void main(String[] args) {
    System.out.println(revisionString());
    System.out.println(buildString());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy