Here you can find the source of setClusterShard(String cluster, String shard)
public static void setClusterShard(String cluster, String shard)
//package com.java2s; //License from project: Apache License import org.slf4j.MDC; public class Main { public static void setClusterShard(String cluster, String shard) { MDC.put("xpipe.cluster.shard", "[" + cluster + "." + shard + "]"); }/*from w w w.ja v a 2 s. com*/ }