what's the max value for `per_page` field in fleet...
# fleet
e
what's the max value for
per_page
field in fleet rest api? for example in a call like this:
GET /api/v1/fleet/hosts?page=0&per_page=100&order_key=host_name
n
I believe there is no max value for the
per_page
field.
e
so I can set it to something like
1000000
?
n
Yes, but setting it very large may have undesirable performance spikes
e
what if I send a get request to this api path: /api/v1/fleet/hosts, but with no query params? Does it just default to return everything in one page?