- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
03-19-2024 11:37 AM
Looking for help. I would like to come up with the query to find all new applications installed compare to the last month inventory.
The logic would be what new application/software have been installed on the hosts this month.
03-21-2024 01:13 AM
Hello @S.Ahmad ,
Thanks for reaching out on LiveCommunity!
Please refer to below query:
preset = host_inventory_applications
| fields application_name , vendor , version , endpoint_name, install_date
| alter aa = parse_timestamp("%Y-%m-%d", format_string("%s",install_date ))
| alter diffdiff = timestamp_diff(current_time(), aa, "DAY")
| filter diffdiff <30
If you feel this has answered your query, please let us know by clicking on "mark this as a Solution". Thank you.
03-21-2024 01:13 AM
Hello @S.Ahmad ,
Thanks for reaching out on LiveCommunity!
Please refer to below query:
preset = host_inventory_applications
| fields application_name , vendor , version , endpoint_name, install_date
| alter aa = parse_timestamp("%Y-%m-%d", format_string("%s",install_date ))
| alter diffdiff = timestamp_diff(current_time(), aa, "DAY")
| filter diffdiff <30
If you feel this has answered your query, please let us know by clicking on "mark this as a Solution". Thank you.
03-21-2024 12:35 PM
Worked and thank you very much.
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!