To track how many times a property was satisfied, use the cover property
statement
instead of assert property.
// Count how many times we had a burst of 4 items
property p_burst_4;
@(posedge clk) $rose(req) |-> ack [*4];
endproperty
c_burst_4: cover property (p_burst_4);