1

what is this time format? - 2017-02-06T08:11:24.6728677Z How can this be implemented in jmeter?

Nikhil
  • 393
  • 1
  • 6
  • 25

1 Answers1

2

The time format in is timestamp for local timezone. The Z stands for timezone.

In JMeter you need to use

${__time(yyyy-MM-dd'T'hh:mm:ssssZ)}

in order to receive the timestamp for current timezone

2017-02-15T12:20:0053+0200

If you want to keep the Z in the date use

${__time(yyyy-MM-dd'T'hh:mm:ssss)}Z

References:

Community
  • 1
  • 1
Man Ionut
  • 318
  • 2
  • 8