Generates a TSUID given the metric and tag UIDs. @param metric A metric UID. @param tags A set of UIDs @return A TSUID as a hex string
(final byte[] metric, final byte[]... tags)
| 541 | * @return A TSUID as a hex string |
| 542 | */ |
| 543 | public static String getTSUIDString(final byte[] metric, final byte[]... tags) { |
| 544 | return UniqueId.uidToString(getTSUID(metric, tags)); |
| 545 | } |
| 546 | |
| 547 | /** |
| 548 | * Generates a TSUID given the mocked UID strings. |
no test coverage detected