A new Flexera Community experience is coming on November 25th. Click here for more information.
Is there a log flow diagram from Agent to Beacon then Batch/Inventory server to follow? I want to follow in the logs the flow of machine inventory from start to finish. If not at least someone has an idea on the log order to review in each machine?
‎May 09, 2019 01:43 PM
Here are some pointers on what to look for to find logging related to uploads:
If you are encountering problems, it is likely that errors in one or more of these places, or the absence of logging in these places when you expect to see activity, will give some insights into what is going on.
‎May 12, 2019 10:06 PM
Hi Krystel,
As far as I know there is no log for flow like this, I manage to do a work around on this and to create a rudimentary log on every beacon server. I create a simple powershell file, that will list the content of the Incoming folder (the folder where the inventory .ndi file are landing) and populate a .csv file with this information. The script should be executed before the upload of the file is done by the beacon, I put an extra action in the upload Flexera log and inventories.
The powerhsell command that I use is :
dir 'C:\ProgramData\Flexera Software\Incoming\Inventories' | select Name,CreationTime | Export-Csv 'd:\temp\beacon_wrg.csv' -Append​
I this way I gather a csv file from each beacon server, after that with some sql/xls or what is more familiar to you, you can combine the data and create some kind of flow.
I hope this info is helpful for your.
‎May 10, 2019 02:32 AM
‎May 10, 2019 09:21 AM
Here are some pointers on what to look for to find logging related to uploads:
If you are encountering problems, it is likely that errors in one or more of these places, or the absence of logging in these places when you expect to see activity, will give some insights into what is going on.
‎May 12, 2019 10:06 PM
‎May 13, 2019 09:02 AM