Turn Your Vehicle Into a Smart Earning Asset

While you’re not driving your car or bike, it can still be working for you. MOTOSHARE helps you earn passive income by connecting your vehicle with trusted renters in your city.

🚗 You set the rental price
🔐 Secure bookings with verified renters
📍 Track your vehicle with GPS integration
💰 Start earning within 48 hours

Join as a Partner Today

It’s simple, safe, and rewarding. Your vehicle. Your rules. Your earnings.

Appdynamics: Lab – Create a Sample Load for APM in petclinic App using Jmeter

Here’s the exact JMeter setup to create Owners at
http://43.204.220.89:8080/petclinic/owners/new.

Thread Group (your load)

  • Users: as needed (e.g., 50/200/1000)
  • Ramp-up: e.g., 60s
  • Loop: as needed

Config Elements

  1. HTTP Request Defaults
  • Server Name: 43.204.220.89
  • Port: 8080
  • Protocol: http
  1. HTTP Cookie Manager (enable cookies for session)
  2. HTTP Header Manager
  • Content-Type: application/x-www-form-urlencoded
  1. CSV Data Set Config (to feed random data at scale)
  • Filename: owners.csv
  • Variable Names: first,last,address,city,phone
  • Recycle on EOF: True
  • Stop thread on EOF: False
  • Example owners.csv line:
    John,Doe,12 Baker Street,London,0700012345

Samplers & Post-Processors

1) GET form page (fetch cookies and optional CSRF)

Sampler: HTTP Request

  • Method: GET
  • Path: /petclinic/owners/new

Post-Processor (optional, if CSRF is enabled): CSS Selector Extractor

  • Name of created variable: csrf
  • CSS Selector: input[name=_csrf]
  • Attribute: value
    (If you don’t see a hidden _csrf field in the HTML, skip this extractor and the _csrf param below.)

2) POST create owner

Sampler: HTTP Request

  • Method: POST
  • Path: /petclinic/owners/new
  • Parameters (add as form params):
    • firstName = ${first}
    • lastName = ${last}
    • address = ${address}
    • city = ${city}
    • telephone = ${phone}
    • _csrf = ${csrf} (only if extractor above succeeded)

(Alternative body if you prefer raw):
firstName=${first}&lastName=${last}&address=${address}&city=${city}&telephone=${phone}&_csrf=${csrf}

Assertion (to confirm success): Response Assertion

  • Contains: Owner Information
    (Petclinic typically redirects to /petclinic/owners/{id} showing that text on success.)

Tips for mass traffic

  • Add a Uniform Random Timer (e.g., 300–1200 ms) to better mimic users.
  • Scale Thread Group users + loop to hit your target RPS.
  • If you see 302 redirects, enable “Follow Redirects” on the POST sampler.

That’s it—this pair of samplers (GET→POST) with CSV data will flood the endpoint with realistic owner-creation requests.

Sample JMeter File and Sample Data

Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.

0
Would love your thoughts, please comment.x
()
x