Skip to content

Instantly share code, notes, and snippets.

@monkeygroover
Last active August 10, 2017 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monkeygroover/da0d1c6e2aff177c273bcbe65693730e to your computer and use it in GitHub Desktop.
Save monkeygroover/da0d1c6e2aff177c273bcbe65693730e to your computer and use it in GitHub Desktop.
Gatling
/**
* Copyright 2011-2017 GatlingCorp (http://gatling.io)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package stresstest
import io.gatling.core.Predef._
import io.gatling.http.Predef._
import scala.concurrent.duration._
class StressTest extends Simulation {
val httpConf = http
.baseURL("http://localhost:8500") // Here is the root for all relative URLs
.acceptHeader("text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8") // Here are the common headers
.doNotTrackHeader("1")
.acceptLanguageHeader("en-US,en;q=0.5")
.acceptEncodingHeader("gzip, deflate")
.userAgentHeader("Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0")
val scn = scenario("Scenario Name") // A scenario is a chain of requests and pauses
.repeat(500) {
exec(http("request_1").get("/v1/catalog/service/imp_server?tag=production"))
}
setUp(scn.inject(atOnceUsers(100)).protocols(httpConf))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment