i`m having this scheme in Jmeter:
> DataBase Extraction (query that gets some files - note that the extract has a variable bound to it). > ForEach Controller (runs through the files from DBExt. and stores them in a variable one at a time). > What i want to do now is to get each file name and concatenate them in a single string so i can further work with it (count lines with a SSH command).
I`m stuck here. I tried all sorts of BeanShell processors and loggers with no success. I would appreciate any hints or ideas that might help. Thank you!
Later edit:
this is the query result:
I need a variable with contents like: file1.dat file2.dat file3.dat ... lastfile.dat so i can put it in a SSH Command and perform a line count (wc -l).