Our new official repo is on github
LCD Smartie version 5.6 is released!
Download it now: https://github.com/LCD-Smartie/LCDSmartie/releases

LCD Smartie doesn't show Networkstats

General discussion about LCD Smartie.

Moderators: _X7JAY7X_, caesar, IFR, mattcro, limbo, Fast351

Post Reply
klist
Posts: 1
Joined: March 10th, 2010, 10:27 pm

LCD Smartie doesn't show Networkstats

Post by klist »

Hello,
my LCD Smartie doesn't show me my networkstat on win7 32 bit.
And even my MBM doesnt work.
What can I do to see my network stats?

Thanks

caesar
Forum Supporter
Posts: 734
Joined: October 15th, 2005, 10:39 am
Location: Romania
Contact:

Re: LCD Smartie doesn't show Networkstats

Post by caesar »

On win7 it is advisable to use the perf plugin available on the forums.

New version is here: http://forums.lcdsmartie.org/viewtopic.php?f=8&t=1134

mattcro
Forum Supporter
Posts: 590
Joined: March 8th, 2006, 1:58 pm
Location: Scotland

Re: LCD Smartie doesn't show Networkstats

Post by mattcro »

MotherBoardMonitor is a separate utility, but it hasn't been updated in ages and doesn't support newer motherboards. You can use Everest or Speedfan instead. Smartie has plugins for getting temperature, fanspeed, voltage etc data from these utilities. Search the forum for details and links to the plugins.

Septillion
Posts: 5
Joined: April 15th, 2007, 2:34 am
Location: Enschede - The Netherlands

Re: LCD Smartie doesn't show Networkstats

Post by Septillion »

I had the same problem and fixed the current speed with perf and math

Code: Select all

$dll(math,11,$dll(math,4,$dll(perf,4,5,\Netwerkinterface(realtek PCIe GBE Family Controller)\Ontvangen bytes per seconde),1048576),1)
But I can't seem to display my transfer "history", like the total amount of transferred GB. Does anybody know how to?

Zhenchik
Posts: 3
Joined: June 28th, 2010, 10:17 pm

Re: LCD Smartie doesn't show Networkstats

Post by Zhenchik »

Septillion wrote:I had the same problem and fixed the current speed with perf and math

Code: Select all

$dll(math,11,$dll(math,4,$dll(perf,4,5,\Netwerkinterface(realtek PCIe GBE Family Controller)\Ontvangen bytes per seconde),1048576),1)
But I can't seem to display my transfer "history", like the total amount of transferred GB. Does anybody know how to?
You can use plugin WMIQuery and write something like this:

Code: Select all

$dll(WMIQuery,1,select * from Win32_PerfRawData_Tcpip_NetworkInterface WHERE Name="Realtek PCI GBE Family Controller",BytesReceivedPersec)
$dll(WMIQuery,1,select * from Win32_PerfRawData_Tcpip_NetworkInterface WHERE Name="Realtek PCI GBE Family Controller",BytesSentPersec)
It's a TOTAL amount of bytes.

Post Reply