I am trying to configure caching in KONGA for certain URL with query params.
What I would like to achieve is :
This should be cached -> GET /my-awesome-service/get-something?filter-one=this&filter-two=that
This should be cached differently -> GET /my-awesome-service/get-something?filter-one=this&filter-two=their
What I am facing is GET /my-awesome-service/get-something is being cached and hence returning incorrect data for different filters.

As explain into the documentation you need to set the query param to use on the cache key via
config.vary_query_paramsor keep it undefined to use all query params. You already set it totimeframeso you need to addfilter-oneandfilter-twoYaml should be something like that: