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

Method parseTimeSeriesQuery

src/tsd/QueryRpc.java:980–985  ·  view source on GitHub ↗
(final String query)

Source from the content-addressed store, hash-verified

978 }
979
980 public static LastPointSubQuery parseTimeSeriesQuery(final String query) {
981 final LastPointSubQuery sub_query = new LastPointSubQuery();
982 sub_query.tags = new HashMap<String, String>();
983 sub_query.metric = Tags.parseWithMetric(query, sub_query.tags);
984 return sub_query;
985 }
986
987 public static LastPointSubQuery parseTSUIDQuery(final String query) {
988 final LastPointSubQuery sub_query = new LastPointSubQuery();

Callers 1

parseLastPointQueryMethod · 0.95

Calls 1

parseWithMetricMethod · 0.95

Tested by

no test coverage detected