XQL query to get the list of new software/applications

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements

XQL query to get the list of new software/applications

L0 Member

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.

1 accepted solution

Accepted Solutions

L5 Sessionator

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.

Ashutosh Patil

View solution in original post

2 REPLIES 2

L5 Sessionator

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.

Ashutosh Patil

Worked and thank you very much.

  • 1 accepted solution
  • 785 Views
  • 2 replies
  • 0 Likes
Like what you see?

Show your appreciation!

Click Like if a post is helpful to you or if you just want to show your support.

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!