The plugin used for provisioning is the yet-another-docker-plugin.
Here is one //org.jenkinsci.plugins.cloudstats.CloudStatistics/log/data/org.jenkinsci.plugins.cloudstats.ProvisioningActivity entry:
<org.jenkinsci.plugins.cloudstats.ProvisioningActivity>
<id>
<cloudName>Swarm</cloudName>
<templateName>the-image:latest</templateName>
<fingerprint>660965903</fingerprint>
</id>
<name>Swarm-65034ee5fc80</name>
<progress class="java.util.Collections$SynchronizedMap" serialization="custom">
<java.util.Collections_-SynchronizedMap>
<default>
<m class="linked-hash-map">
<entry>
<org.jenkinsci.plugins.cloudstats.ProvisioningActivity_-Phase>PROVISIONING</org.jenkinsci.plugins.cloudstats.ProvisioningActivity_-Phase>
<org.jenkinsci.plugins.cloudstats.PhaseExecution>
<attachments class="java.util.concurrent.CopyOnWriteArrayList" />
<started>1552358629697</started>
<phase>PROVISIONING</phase>
</org.jenkinsci.plugins.cloudstats.PhaseExecution>
</entry>
<entry>
<org.jenkinsci.plugins.cloudstats.ProvisioningActivity_-Phase>LAUNCHING</org.jenkinsci.plugins.cloudstats.ProvisioningActivity_-Phase>
<org.jenkinsci.plugins.cloudstats.PhaseExecution>
<attachments class="java.util.concurrent.CopyOnWriteArrayList" />
<started>1552358639701</started>
<phase>LAUNCHING</phase>
</org.jenkinsci.plugins.cloudstats.PhaseExecution>
</entry>
<entry>
<org.jenkinsci.plugins.cloudstats.ProvisioningActivity_-Phase>OPERATING</org.jenkinsci.plugins.cloudstats.ProvisioningActivity_-Phase>
<org.jenkinsci.plugins.cloudstats.PhaseExecution>
<attachments class="java.util.concurrent.CopyOnWriteArrayList" />
<started>1552358643963</started>
<phase>OPERATING</phase>
</org.jenkinsci.plugins.cloudstats.PhaseExecution>
</entry>
<entry>
<org.jenkinsci.plugins.cloudstats.ProvisioningActivity_-Phase>COMPLETED</org.jenkinsci.plugins.cloudstats.ProvisioningActivity_-Phase>
<org.jenkinsci.plugins.cloudstats.PhaseExecution>
<attachments class="java.util.concurrent.CopyOnWriteArrayList" />
<started>1552358907655</started>
<phase>COMPLETED</phase>
</org.jenkinsci.plugins.cloudstats.PhaseExecution>
</entry>
</m>
<mutex class="java.util.Collections$SynchronizedMap" reference="../../.." />
</default>
</java.util.Collections_-SynchronizedMap>
</progress>
</org.jenkinsci.plugins.cloudstats.ProvisioningActivity>
An entry in //org.jenkinsci.plugins.cloudstats.CloudStatistics/active/org.jenkinsci.plugins.cloudstats.ProvisioningActivity is basically identical, apart from the timestamps and the fingerprint IDs. In fact, every fingerprint ID is different, there are no duplicate fingerprint IDs for provisioning activities. If that is any help to you.
I guess you're hinting at provisioning activities, that were not correctly completed. So I also looked at the difference in //org.jenkinsci.plugins.cloudstats.CloudStatistics/active/org.jenkinsci.plugins.cloudstats.ProvisioningActivity between the count of PROVISIONING, LAUNCHING, OPERATING and COMPLETED (via xmlstarlet sel -t -c '//org.jenkinsci.plugins.cloudstats.CloudStatistics/active/org.jenkinsci.plugins.cloudstats.ProvisioningActivity' org.jenkinsci.plugins.cloudstats.CloudStatistics.xml.copy | grep COMPLETED | wc -l):
- PROVISIONING: 7232
- LAUNCHING: 7232
- OPERATING: 7229
- COMPLETED: 7204
This seems plausible, as the difference is explained by the number of active agents at that time.
Let me know if you need more information, happy to help.
To add on this: There is actually a default limit of 100 entries to be logged. This is indeed true and corresponds with the persistence file:
xmlstarlet sel -t -v 'count(//org.jenkinsci.plugins.cloudstats.CloudStatistics/log/data/org.jenkinsci.plugins.cloudstats.ProvisioningActivity)' org.jenkinsci.plugins.cloudstats.CloudStatistics.xml.bak 100
However, there are lots of active provisionings in that 150MB file:
xmlstarlet sel -t -v 'count(//org.jenkinsci.plugins.cloudstats.CloudStatistics/active/org.jenkinsci.plugins.cloudstats.ProvisioningActivity)' org.jenkinsci.plugins.cloudstats.CloudStatistics.xml.bak 52680
24h after purging the persistence file, the number of active provisionings already reached 3225.