Jason
02/08/2022, 4:15 AMagent_options:
config:
decorators:
load:
- SELECT uuid AS host_uuid FROM system_info;
- SELECT computer_name AS hostname FROM system_info;
sharvil
02/08/2022, 12:00 PMload
in the config, which usually means that those queries are only run when the config is loaded, maybe try changing them to always
and see if that works?Tomas Touceda
02/08/2022, 12:11 PMselect * from system_info limit 1
, unless the decorator changes what's returned there, it probably won't change itJason
02/08/2022, 2:12 PM