I am learning to use jmeter (for the first time) to do some performance testing against our geospatial postgres (postgis) database. I want to use a JDBC Request sampler sql query to continually hit the database, however I need to alter the timestamps in the query, the problem is they aren't normal parameters, they are inside a string in a function call.
SELECT int_temp_f,
observed_utc,
encode(ST_AsBinary(ST_Force_2D("geometry_4326"),'NDR'),'hex') AS geom,
"ogc_featureid"
FROM fn_surfaceobs_temperature(ST_GeomFromText('POLYGON((-180 -90,-180 90,180 90,180 -90,-180 -90))',4326),
NULL,
0,
'latest',
'observed >= ''2015-06-08 14:00:00Z'' AND observed < ''2015-06-09 15:00:00Z'' ',
TRUE)
WHERE (geometry_4326 && ST_GeomFromText('POLYGON((-180 -90,-180 90,180 90,180 -90,-180 -90))',4326))
ORDER BY COALESCE(priority,0) DESC, observed DESC;
How can I use jmeter variables to replace a user definition inside the string?
'observed >= ''2015-06-08 14:00:00Z'' AND observed < ''2015-06-09 15:00:00Z'' ',
I want to do something like this:
'observed >= ''${start_timestamp}'' AND observed < ''${end_timestamp}'' ',
Is this even possible?
Ultimately I want to update the timestamps to always be 'today'. But after looking into how to do timestamp variable in a normal SQL substitution situation I think I'm ok settling for just having to replace the timestamps as a user defined variable for now.
You can indeed use jmeter vars in JDBC queries.
The trick here is to get a valid timestamp. As RaGe pointed out above, beanShell is the answer.
You can create a simple user assigned variable like this:
OR in my case, I needed to do some additional tinkering to the timestamps so I created a beanshell preprocessor. https://stackoverflow.com/a/21847313/2532408 has a couple explanations.
Here is what I put in mine: