cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Nick_VDB
Champion Sweeper III
Added in v.6.0.100

The report below lists Windows computers and gives back their network adapter speed.

The report will only list assets that meet all of the following criteria:
  • The computer's state is set to "active".
  • The computer has been successfully scanned at least once
  • The asset is a Windows computer.


Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
Coalesce(tsysOS.Image, tsysAssetTypes.AssetTypeIcon10) As icon,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tsysOS.OSname As OS,
tblAssets.SP,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblNetworkAdapter.Name As NetworkAdapter,
tblNetworkAdapter.Manufacturer As AdapterManufacturer,
tblNetworkAdapter.MACAddress,
tblNetworkAdapter.Speed As BitsPerSecond,
tblNetworkAdapter.NetConnectionID As ConnectionID,
tblNetworkAdapter.Lastchanged As LastChanged
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblState On tblState.State = tblAssetCustom.State
Inner Join tblNetworkAdapter On tblAssets.AssetID = tblNetworkAdapter.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblState.Statename = 'Active' And Case tblNetworkAdapter.NetEnabled
When 0 Then 'No' When 1 Then 'Yes' End = 'Yes'
Order By tblAssets.Domain,
tblAssets.AssetName,
NetworkAdapter
3 REPLIES 3
Argon0
Champion Sweeper
Possibly, but both reports have the same values in the same column.

Is this report giving actual bandwidth consumption at the moment the measurement is taken (pretty useless, unless done on a regular basis, and history is kept), OR is it giving the reported speed of the adapter (I suspect the latter), in which case I am pretty sure I don't have a single PC on the network which has an adapter speed of 10 bits per second.

Thanks

Esben_D
Lansweeper Employee
Lansweeper Employee
The database documentation reads as follows:

Estimate of the current bandwidth in bits per second. For endpoints which vary in bandwidth or for those where no accurate estimation can be made, this property should contain the nominal bandwidth.


In this case the report seems accurate. It might be that the other report you're referring to uses the field to calculate Mbit/s or MB/s.
Argon0
Champion Sweeper
Is this really bits per second? As I have a bunch of machines telling me they are running at 10 b/s then...

I'm going to assume it Mbit/s as there is another report (not built in) from 2015 which looks very similar bar that one line:

tblNetworkAdapter.Speed As BitsPerSecond,

reads

tblNetworkAdapter.Speed As SpeedInMb

Cheers