MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / getEndTime

Method getEndTime

src/core/SplitRollupQuery.java:100–103  ·  view source on GitHub ↗

Returns the end time of the graph. If #setEndTime was never called before, this method will automatically execute #setEndTime setEndTime(System.currentTimeMillis() / 1000) to set the end time. @return A strictly positive integer.

()

Source from the content-addressed store, hash-verified

98 * @return A strictly positive integer.
99 */
100 @Override
101 public long getEndTime() {
102 return rawQuery != null ? rawQuery.getEndTime() : rollupQuery.getEndTime();
103 }
104
105 /**
106 * Sets the end time of the graph. Converts the timestamp to milliseconds if necessary.

Callers

nothing calls this directly

Calls 1

getEndTimeMethod · 0.65

Tested by

no test coverage detected