zipkin.internal.Util.toLowerHex()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(2.0k)|赞(0)|评价(0)|浏览(181)

本文整理了Java中zipkin.internal.Util.toLowerHex()方法的一些代码示例,展示了Util.toLowerHex()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.toLowerHex()方法的具体详情如下:
包路径:zipkin.internal.Util
类名称:Util
方法名:toLowerHex

Util.toLowerHex介绍

暂无

代码示例

代码示例来源:origin: io.zipkin.java/zipkin-storage-cassandra

  1. @Override public String toString() {
  2. return "(" + table + "," + partitionKey + "," + Util.toLowerHex(traceId) + ")";
  3. }

代码示例来源:origin: io.zipkin.java/zipkin-storage-elasticsearch

  1. @Override public ListenableFuture<List<Span>> getRawTrace(long traceIdHigh, long traceIdLow) {
  2. String traceIdHex = Util.toLowerHex(strictTraceId ? traceIdHigh : 0L, traceIdLow);
  3. return client.findSpans(catchAll, termQuery("traceId", traceIdHex));
  4. }

代码示例来源:origin: io.zipkin.java/zipkin-storage-elasticsearch-http

  1. @Override
  2. public void getRawTrace(long traceIdHigh, long traceIdLow, Callback<List<Span>> callback) {
  3. String traceIdHex = Util.toLowerHex(strictTraceId ? traceIdHigh : 0L, traceIdLow);
  4. SearchRequest request = SearchRequest.create(asList(allIndices), SPAN)
  5. .term("traceId", traceIdHex);
  6. submit(search.newCall(request, NULLABLE_SPANS), callback);
  7. }

代码示例来源:origin: io.zipkin.sparkstreaming/zipkin-sparkstreaming

  1. static void streamSpansToStorage(
  2. JavaDStream<byte[]> stream,
  3. ReadSpans readSpans,
  4. AdjustAndConsumeSpansSharingTraceId adjustAndConsumeSpansSharingTraceId
  5. ) {
  6. JavaDStream<Span> spans = stream.flatMap(readSpans);
  7. // TODO: plug in some filter to drop spans regardless of trace ID
  8. // spans = spans.filter(spanFilter);
  9. JavaPairDStream<String, Iterable<Span>> tracesById = spans
  10. .mapToPair(s -> new Tuple2<>(Util.toLowerHex(s.traceIdHigh, s.traceId), s))
  11. .groupByKey();
  12. tracesById.foreachRDD(rdd -> {
  13. rdd.values().foreachPartition(adjustAndConsumeSpansSharingTraceId);
  14. });
  15. }

代码示例来源:origin: io.zipkin.java/zipkin-storage-mysql

  1. .traceId(toLowerHex(traceIdHi != null ? traceIdHi : 0L, traceIdLo))
  2. .parentId(parentId != null ? toLowerHex(parentId) : null)
  3. .id(toLowerHex(spanId));

相关文章