0

I have a bunch of server logs with api requests I'd like to replicate for testing. Is there an easy way to "export" those logs {uri: $path, query: $queryparams} as input for blazemeter to test?

Noon Time
  • 976
  • 7
  • 17

2 Answers2

0

Jmeter is open source. Just modify the source to replay the logs and to handle the user input and dynamic components. Every time you see a new source IP, fork a new thread. Use the delays between requests to define the think time. And you will have created "Web replay," the equivalent of Oracle's DB Replay

James Pulley
  • 5,606
  • 1
  • 14
  • 14
0

There might be a chance that JMeter's Access Log Sampler will work for you if your server is in: Tomcat, Resin, Weblogic, and SunOne.

If it's not you might need to convert the log to the supported format or implement your own versions of LogParser and Generator

More information: The JMeter Access Log Sampler - A Guide

Dmitri T
  • 159,985
  • 5
  • 83
  • 133