1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
// This file is autogenerated, DO NOT EDIT
// search/search-your-data/search-template.asciidoc:620
[source, python]
----
resp = client.render_search_template(
source="{ \"query\": { \"bool\": { \"filter\": [ { \"range\": { \"@timestamp\": { \"gte\": {{#year_scope}} \"now-1y/d\" {{/year_scope}} {{^year_scope}} \"now-1d/d\" {{/year_scope}} , \"lt\": \"now/d\" }}}, { \"term\": { \"user.id\": \"{{user_id}}\" }}]}}}",
params={
"year_scope": True,
"user_id": "kimchy"
},
)
print(resp)
----
|