Werk #17273: host_config: introduction of fields selector for "Show all hosts" endpoint
Component | REST API | ||
Title | host_config: introduction of fields selector for "Show all hosts" endpoint | ||
Date | Nov 26, 2024 | ||
Level | Trivial Change | ||
Class | New Feature | ||
Compatibility | Compatible - no manual interaction needed | ||
Checkmk versions & editions |
|
This werk introduces an option to reduce the response size of the "Show all hosts" endpoint. With this option, the exact fields that are required can be selected, other keys will be omitted from the response.
The query parameter is called fields
and uses the following syntax:
- The field list is to be wrapped in parenthesis
()
- An optional excalamtion mark
!
at the start negates the entire selection - Fields are separated by commas
,
- Field names are alphanumeric characters, dashes
-
and underscores_
. - Nested paths to fields are specified with tilde
~
as a separatorfield1~field2
- Alternatively, parenthesis may be used after a field name
field1(field2,field3)
- Both nesting options can be combined
field1~field2(field3,field4)
Examples:
Select only the host IDs and all their effective attributes:
.../collections/all?fields=(value(id,extensions~effective_attributes))
Select everything except links:
.../collections/all?fields=!(links,value~links)