Hi!
I have my track like this (snippet from challenges/operations)
{
"operation": "replay-listing-query",
"clients": 4,
"warmup-iterations": 10,
"iterations": 1000,
"target-throughput": 100
}
{
"name": "replay-listing-query",
"operation-type": "search",
"detailed-results": true,
"param-source": "replay-listing-query-source"
}
I can see in my py code in track.py that 4 python (threads or processes) are created. I would like to customize the behaviour of each, something like (pseudo code)
if client==1 then X
if client==2 then Y
Is there something I can use in my py class to identify each client? I cannot find anything by looking around.
thanks!