mirror of
https://github.com/datahub-project/datahub.git
synced 2025-06-27 05:03:31 +00:00
14 lines
281 B
Python
14 lines
281 B
Python
import json
|
|
|
|
from locust import HttpUser, between, task
|
|
|
|
|
|
class GraphUser(HttpUser):
|
|
wait_time = between(1, 5)
|
|
|
|
@task
|
|
def relationships(self):
|
|
self.client.get(
|
|
"/relationships?direction=INCOMING&urn=urn:li:corpuser:common&types=OwnedBy''"
|
|
)
|