Commit 12da22a9 authored by litaolemo's avatar litaolemo

update

parent 5f4fa23f
This diff is collapsed.
# -*- coding:UTF-8 -*- # -*- coding:UTF-8 -*-
# @Time : 2020/12/11 16:12 # @Time : 2020/12/11 16:12
# @File : es_locust.py # @File : es_locust_service.py
# @email : litao@igengmei.com # @email : litao@igengmei.com
# @author : litao # @author : litao
# 运行方式 nohup locust -f locust_test/es_locust.py -H http://172.16.52.25:9200 -u 5000 --headless & # 运行方式 nohup locust -f locust_test/es_locust_service.py -H http://172.16.52.25:9200 -u 5000 --headless &
import json import json
import time import time
from locust import HttpUser, task from locust import HttpUser, task
...@@ -860,7 +860,7 @@ class QuickstartUser(FastHttpUser): ...@@ -860,7 +860,7 @@ class QuickstartUser(FastHttpUser):
"Content-Type": "application/x-www-form-urlencoded" "Content-Type": "application/x-www-form-urlencoded"
} }
response = self.client.post('/gm-dbmw-service-read/_search',json=data, verify=False, auth=tuple(auth.split(':',1))) response = self.client.post('/gm-dbmw-service-read/_search',json=data, verify=False, auth=tuple(auth.split(':',1)))
response = requests.post('http://172.16.52.25/gm-dbmw-service-read/_search', json=query, verify=False,auth=("elastic","elastic:gengmei!@#")) # response = requests.post('http://172.16.52.25/gm-dbmw-service-read/_search', json=query, verify=False,auth=("elastic","elastic:gengmei!@#"))
# print(response.text) # print(response.text)
# self.client.get("/hello") # self.client.get("/hello")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment