Skip to content

Instantly share code, notes, and snippets.

View ProfessorSam's full-sized avatar
🎯
Focusing

Samuel Rosenstein ProfessorSam

🎯
Focusing
  • Germany - Near Dortmund
  • 06:00 (UTC +02:00)
View GitHub Profile
@ProfessorSam
ProfessorSam / Stresstest,java
Created November 18, 2023 02:09
Simple method to stress test a web service
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.time.Instant;
class Scratch {
public static void main(String[] args) {
String targetURL = "127.0.0.1"; // Replace with your URL
int numThreads = 10;