Skip to content

Commit 2b2c57c

Browse files
committed
W-17312191: Debugging point persistence
1 parent 7fe4619 commit 2b2c57c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

carbonj.service/src/main/java/com/demandware/carbonj/service/db/points/DataPointArchiveRocksDB.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,9 @@ public int put( DataPoints points )
324324
int interval = policy.interval(p.ts);
325325
byte[] key = DataPointRecord.toKeyBytes(p.metricId, interval, longId);
326326
byte[] value = DataPointRecord.toValueBytes(p.val);
327+
if (p.name.startsWith("pod262.ecom.bfdk.bfdk_prd")) {
328+
log.info("=====>>>>> {} {} {} {}", p.name, p.val, p.ts, p.metricId);
329+
}
327330
batch.put(key, value);
328331
String namespace = nameUtils.firstSegment(p.name);
329332
if (!latencyByNamespaceMap.containsKey(namespace)) {

0 commit comments

Comments
 (0)