Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have apache access logs that contain cookie information per request. Can I feed these cookie values into a load test with jmeter?

My log format in apache is:

"%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" \"%{Cookie}i\"" combined

I see the Access Log Sampler, I've got it working to the point where it reads in my access logs and generates requests, but it doesn't seem to include the cookies from the log line. I've played with the HTTPCookieManager and have gotten it to work to the point where it will use cookies returned from one call, in the next call, but it doesn't use the cookie values form the access logs. Am I trying to do something impossible or am I missing something?

Example log line:

1.2.3.4 - - [31/Jul/2012:23:04:06 -0400] "GET /someurl/ HTTP/1.1" 200 28 "http:/domain/endpoint?params" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11" "cookie1=value1;cookie2=value2"

My access log contains many lines like the one above, each having different cookie values of course. I want to create a load test where I replay that access log file, including the logged cookies.

share|improve this question

1 Answer

up vote 1 down vote accepted

Current implementation of Access Log Sampler does fully analyze the logs:

Documentation says:

*127.0.0.1 - - [21/Oct/2003:05:37:21 -0500] "GET /index.jsp?%2Findex.jsp= HTTP/1.1" 200 8343

The current implemenation of the parser only looks at the text within the quotes. Everything else is stripped out and igored.*

You can open an enhancement request with a sampler access log file.

share|improve this answer
Ah, ok, I read that differently. I thought it meant that only things in quotes were read in, not only the first set of quotes. So in my log line example, since the cookies and useragent info were in quotes, they'd be grabbed. But they way you interpret it makes more sense, cuz how could it know the order. Thx Philippe – sellerjd Aug 2 '12 at 20:44
Of answer is ok for you validate it, and i think you should open an enhancement request with file – PMD UBIK-INGENIERIE Aug 2 '12 at 20:52
Created ticket: issues.apache.org/bugzilla/show_bug.cgi?id=53648 – sellerjd Aug 2 '12 at 22:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.