Expand my Community achievements bar.

Join us for the Adobe Campaign Community Q&A Coffee Break on 30th September at 8 am PT with Campaign experts Arthur Lacroix and Sandra Hausmann.

Dashboard report

Avatar

Level 2

Hello everyone,

 

We are analyzing a campaign report we have on the dashboard and we found out that there's a difference between the number of generated click streams  in the "Delivery summary" report and the total number of Top 10 most visited links in the "Urls and click streams" report (The number is higher in the "Urls and click streams report") can anyone explain why there's such difference please?

 

Thanks

1 Reply

Avatar

Community Advisor

Try recomputing delivery statistics, the how to is listed under this blog https://blog.floriancourgey.com/2019/03/recompute-delivery-stats-adobe-campaign

 

Javascript code

var nmsDeliveryDirtyFlags_tracking = 1; // tracking logs (1)
var nmsDeliveryDirtyFlags_messageCounters = 8; // broad logs (1)
var flags = nmsDeliveryDirtyFlags_tracking | nmsDeliveryDirtyFlags_messageCounters; // bit operation (2)
NLWS.nmsDelivery.RecomputeStats(vars.deliveryId, flags);
  1. nmsDeliveryDirtyFlags_tracking and nmsDeliveryDirtyFlags_messageCounters come from the schema nms:delivery in the dirtyFlags enumeration.
  2. The pipe | is a bit operation to sum 1 (0001) and 8 (1000) which results in 9 (1001).