MCPcopy Create free account
hub / github.com/OpenTSDB/opentsdb / appendImportCell

Method appendImportCell

src/tools/DumpSeries.java:266–272  ·  view source on GitHub ↗
(final StringBuilder buf, final Cell cell, 
      final long base_time, final String tags)

Source from the content-addressed store, hash-verified

264 }
265
266 static void appendImportCell(final StringBuilder buf, final Cell cell,
267 final long base_time, final String tags) {
268 buf.append(cell.absoluteTimestamp(base_time))
269 .append(" ")
270 .append(cell.parseValue())
271 .append(tags);
272 }
273
274 static void appendAnnotation(final StringBuilder buf, final KeyValue kv,
275 final long base_time) {

Callers 1

formatKeyValueMethod · 0.95

Calls 3

absoluteTimestampMethod · 0.80
parseValueMethod · 0.80
appendMethod · 0.45

Tested by

no test coverage detected