in hbase-noop-htrace/src/main/java/org/apache/htrace/core/LocalFileSpanReceiver.java [42:46]
public static String getUniqueLocalTraceFileName() {
String tmp = System.getProperty("java.io.tmpdir", "/tmp");
String nonce = UUID.randomUUID().toString();
return new File(tmp, nonce).getAbsolutePath();
}