mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00

This PR consists of improvements and fixes related to SigNoz in Docker Standalone and Docker Swarm. - Docker/Swarm deploy directory restructuring and improvements - Prometheus metrics scraping using labels in Docker Standalone and Docker Swarm - Swarm: single schema-migrator container for both sync/async migrations - Remove Kubernetes HOTRod files (will be migrated to charts) - Fetch histogram-quantile from release instead of local binary mount --------- Signed-off-by: Prashant Shahi <prashant@signoz.io>
17 lines
535 B
Python
17 lines
535 B
Python
from locust import HttpUser, task, between
|
|
class UserTasks(HttpUser):
|
|
wait_time = between(5, 15)
|
|
|
|
@task
|
|
def rachel(self):
|
|
self.client.get("/dispatch?customer=123&nonse=0.6308392664170006")
|
|
@task
|
|
def trom(self):
|
|
self.client.get("/dispatch?customer=392&nonse=0.015296363321630757")
|
|
@task
|
|
def japanese(self):
|
|
self.client.get("/dispatch?customer=731&nonse=0.8022286220408668")
|
|
@task
|
|
def coffee(self):
|
|
self.client.get("/dispatch?customer=567&nonse=0.0022220379420636593")
|