- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
Enhanced Security Measures in Place: To ensure a safer experience, we’ve implemented additional, temporary security measures for all users.
01-16-2022 12:56 PM
Hello All
I would like to use host insights to provide a list of each machine with a specific software installed.
For example computer that have software containing 'docker'
I can go to host insights, Applications, filter to include 'docker' and see the versions and numbers of assets. however you cannot export the lost of each asset here, just the versions and numbers.
I am new to XQL and have not managed to create a query for the host_inventory dataset.
01-16-2022 06:37 PM
Hi @GarethDavies Does the query below aid you?
config case_sensitive = false timeframe=365d
| dataset = host_inventory
| filter applications != null
| arrayexpand applications
| alter applications=json_extract(applications, "$.application_name")
| filter applications contains "docker"
|fields applications, ip_addresses, host_name
01-16-2022 06:37 PM
Hi @GarethDavies Does the query below aid you?
config case_sensitive = false timeframe=365d
| dataset = host_inventory
| filter applications != null
| arrayexpand applications
| alter applications=json_extract(applications, "$.application_name")
| filter applications contains "docker"
|fields applications, ip_addresses, host_name
01-17-2022 12:17 PM
Hello Thank you
that solution will work and gives me the raw output that I can investigate further , I see I can add more fields that I may want in the last line
04-12-2022 08:28 PM
Hi Bbarmanroy,thank you for sharing. I try to output more fields, such as the application version, but it doesn't work. Look forward to your suggestions.
config case_sensitive = false timeframe=365d
| dataset = host_inventory
| filter applications != null
| arrayexpand applications
| alter applications=json_extract(applications, "$.application_name")
| alter version=json_extract(applications, "$.raw_version")
|fields applications, ip_addresses, host_name, version
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!