Bug 52214

Summary: Save Responses to a file - improve naming algorithm
Product: JMeter - Now in Github Reporter: Sebb <sebb>
Component: MainAssignee: JMeter issues mailing list <issues>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: P2    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   

Description Sebb 2011-11-19 00:41:49 UTC
At present, the numeric suffixes generated by Save Responses to a file create file names that do not sort correctly.

This could be fixed by using sufficient leading zeros when generating the number.

However, subsequent test runs would re-use the same numbers, so it might also be useful to append a timestamp (e.g. YYYYMMDD-HHMM) for the start of a run.

So the generated name stem would become:

<prefix><timestamp><fixed width number>.

An alternative scheme to ensure uniqueness and chronological sorting would be to use the result of System.nanoTime(), or System.currentTimeMillis() or an ISO-format timestamp (with milliseconds).

Such timestamps have the advantage that the capture time is encoded in the file name. However the disadvantage is that duplicates are not impossible, and there will be gaps in the numbering scheme.
Comment 1 Sebb 2011-11-21 17:20:53 UTC
URL: http://svn.apache.org/viewvc?rev=1204607&view=rev
Log:
Bug 52214 - Save Responses to a file - improve naming algorithm
- add fixed width numbers
- add optional timestamp
- fix synchronisation
Comment 2 The ASF infrastructure team 2022-09-24 20:37:48 UTC
This issue has been migrated to GitHub: https://github.com/apache/jmeter/issues/2652