/**
   * Simple metrics writing and reading check, that uses the standard wrapping in the {@link
   * PhoenixMetricsSink}
   *
   * @throws Exception on failure
   */
  @Test
  public void writeMetrics() throws Exception {
    // hook up a phoenix sink
    PhoenixMetricsSink sink = new PhoenixMetricsSink();
    Connection conn = getConnectionWithoutTracing();
    sink.initForTesting(conn);

    // create a simple metrics record
    long traceid = 987654;
    String description = "Some generic trace";
    long spanid = 10;
    long parentid = 11;
    long startTime = 12;
    long endTime = 13;
    String annotation = "test annotation for a span";
    String hostnameValue = "host-name.value";
    MetricsRecord record =
        createRecord(
            traceid, parentid, spanid, description, startTime, endTime, hostnameValue, annotation);

    // actually write the record to the table
    sink.putMetrics(record);
    sink.flush();

    // make sure we only get expected stat entry (matcing the trace id), otherwise we could the
    // stats for the update as well
    TraceReader reader = new TraceReader(conn);
    Collection<TraceHolder> traces = reader.readAll(10);
    assertEquals("Wrong number of traces in the tracing table", 1, traces.size());

    // validate trace
    TraceHolder trace = traces.iterator().next();
    // we are just going to get an orphan span b/c we don't send in a parent
    assertEquals("Didn't get expected orphaned spans!" + trace.orphans, 1, trace.orphans.size());

    assertEquals(traceid, trace.traceid);
    SpanInfo spanInfo = trace.orphans.get(0);
    assertEquals(description, spanInfo.description);
    assertEquals(parentid, spanInfo.getParentIdForTesting());
    assertEquals(startTime, spanInfo.start);
    assertEquals(endTime, spanInfo.end);
    assertEquals(hostnameValue, spanInfo.hostname);
    assertEquals("Wrong number of tags", 0, spanInfo.tagCount);
    assertEquals("Wrong number of annotations", 1, spanInfo.annotationCount);
  }