Replies: 3 comments
-
I've also tried json dumps. It does not work either. please help filters={"vm_name": "matest"},
params = {
"subject": [
"wyusera-wenyanzuhu"
],
"groupBy": [
"vm_name"
],
"filterGroupBy": json.dumps(filters),
"from": "2025-03-21T07:00:00Z",
"to": "2025-03-21T08:00:00Z",
"windowTimeZone": "Etc/GMT-8",
"windowSize": "DAY",
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
l've figured it out |
Beta Was this translation helpful? Give feedback.
0 replies
-
I've figured it out: it turns out python request cannot pass a nested json, so one has to flatten it out as: params = {
"subject": [
"wyusera-wenyanzuhu"
],
"groupBy": [
"vm_name"
],
"filterGroupBy[vm_name]": "matest",
"from": "2025-03-21T07:00:00Z",
"to": "2025-03-21T08:00:00Z",
"windowTimeZone": "Etc/GMT-8",
"windowSize": "DAY",
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hi, community,
I can successfully do
filterGroupBy
in query via curl, but no with pythonrequests
. Something must be wrong with the parameter. Please help. thankscurl:
curl -gLs 'http://localhost:8888/api/v1/meters/pod_exec_time/query?subject=wyusera-wenyanzuhu&groupBy=vm_name&filterGroupBy[vm_name]=matest&from=2025-03-21T07:00:00Z&to=2025-03-21T08:00:00Z&windowTimeZone=Etc/GMT-8&windowSize=DAY'
curl output
my python
python output
Beta Was this translation helpful? Give feedback.
All reactions