Skip to content

Commit e939a0b

Browse files
committed
2 parents 7283cbc + ae5a635 commit e939a0b

File tree

2 files changed

+53
-50
lines changed

2 files changed

+53
-50
lines changed

Insya.NetDash.v12.suo

0 Bytes
Binary file not shown.

README.md

Lines changed: 53 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![NetDash Logo](/http://i60.tinypic.com/2r5dthz.png)
1+
![NetDash Logo](http://i60.tinypic.com/2r5dthz.png)
22

33
NetDash - v1.4.4 [![Follow @yasinkuyu](https://dev.twitter.com/sites/default/files/images_documentation/bird_blue_32.png)](https://twitter.com/yasinkuyu) [![View Profile](https://dlc1-s.licdn.com/sites/default/files/InBug-30px-R.png)](http://www.linkedin.com/in/yasinkuyu/)
44
======
@@ -17,82 +17,85 @@ The dashboard is built using only C# libraries available in the main C# distribu
1717

1818
**Localization**:
1919

20-
(1) "App_Data\Localization\en-EN.txt" copy this file and translate the language you want to use.
21-
(2) "App_Data\Setting.ini" LANGUAGE line in the file that you want to use the written language. Example: LANGUAGE=en-EN or LANGUAGE=tr-TR
22-
(3) Started to use in their own language
20+
- (1) "App_Data\Localization\en-EN.txt" copy this file and translate the language you want to use.
21+
- (2) "App_Data\Setting.ini" LANGUAGE line in the file that you want to use the written language. Example: LANGUAGE=en-EN or LANGUAGE=tr-TR
22+
- (3) Started to use in their own language
2323

2424
**Login info**
2525

2626
user: admin
2727
pass: admin123
2828

29-
![Screenshot](/http://i59.tinypic.com/wuf1n6.png)
29+
![NetDash](http://i59.tinypic.com/wuf1n6.png)
3030

31-
**Settings**
31+
**NetDash Settings**
3232

33-
NetDash settings
34-
The only settings currently available which you can modify are the refresh rates for the different data tables. There are 3 different refresh settings under netdash/App_data/Setting.ini and values are in miliseconds:
33+
The only settings currently available which you can modify are the refresh rates for the different data tables. There are 3 different refresh settings under *netdash/App_data/Setting.ini* and values are in miliseconds:
34+
35+
36+
* TIME_JS_REFRESH = 30000 #30 seconds
37+
* TIME_JS_REFRESH_LONG = 120000 #120 seconds
38+
* TIME_JS_REFRESH_NET = 2000 #2 seconds
3539

36-
TIME_JS_REFRESH = 30000 #30 seconds
37-
TIME_JS_REFRESH_LONG = 120000 #120 seconds
38-
TIME_JS_REFRESH_NET = 2000 #2 seconds
3940
You can modify any of the values to whatever you would like the new refresh rate to be. Restart the webserver after each update to the Setting.ini file.
4041

4142
The tables and the refresh settings are as follows:
4243

43-
Memory Usage - TIME_JS_REFRESH
44-
Load Average - TIME_JS_REFRESH
45-
CPU Usage - TIME_JS_REFRESH
46-
Traffic Usage - TIME_JS_REFRESH_NET
47-
Disk Reads/Writes - TIME_JS_REFRESH_NET
48-
Uptime - TIME_JS_REFRESH_LONG
49-
Disk Usage - TIME_JS_REFRESH_LONG
50-
Online Users - TIME_JS_REFRESH_LONG
51-
Processes - TIME_JS_REFRESH_LONG
52-
Netstat - TIME_JS_REFRESH_LONG
44+
* Memory Usage - TIME_JS_REFRESH
45+
* Load Average - TIME_JS_REFRESH
46+
* CPU Usage - TIME_JS_REFRESH
47+
* Traffic Usage - TIME_JS_REFRESH_NET
48+
* Disk Reads/Writes - TIME_JS_REFRESH_NET
49+
* Uptime - TIME_JS_REFRESH_LONG
50+
* Disk Usage - TIME_JS_REFRESH_LONG
51+
* Online Users - TIME_JS_REFRESH_LONG
52+
* Processes - TIME_JS_REFRESH_LONG
53+
* Netstat - TIME_JS_REFRESH_LONG
5354

5455
**Remote data retrieval**
5556

5657
NetDash remote data retrieval
5758

5859
**App_Data\Setting.ini**
59-
; Remote or Local server name (Default local name machine name : .)
60-
; Sample remote server SERVERNAME=0.0.0.0
61-
SERVERNAME=ipaddress
62-
63-
; Remote server login info (Ony remote server)
64-
REMOTE_DOMAIN=domain.com
65-
REMOTE_USERNAME=Administrator
66-
REMOTE_PASSWORD=password
60+
61+
; Remote or Local server name (Default local name machine name : .)
62+
; Sample remote server SERVERNAME=0.0.0.0
63+
SERVERNAME=ipaddress
64+
65+
; Remote server login info (Ony remote server)
66+
67+
REMOTE_DOMAIN=domain.com
68+
REMOTE_USERNAME=Administrator
69+
REMOTE_PASSWORD=password
6770

6871
NetDash will allow you to retrieve data remotely if needed. This can be useful if you want to store any of the data in a database or another application.
6972

70-
/info/uptime/ - Uptime
71-
/info/platform/hostname/ - Hostname
72-
/info/platform/osname/ - OS Name
73-
/info/platform/kernel/ - Kernel
74-
/info/getcpus/cpucount/ - Number of CPU cores
75-
/info/getcpus/cputype/ - Type/Name of CPU
76-
/info/memory/ - Memory Usage
77-
/info/cpuusage/ - CPU Usage in percentage(%), free and used
78-
/info/getdisk/ - Disk Usage
79-
/info/getusers/ - Online Users
80-
/info/getips/ - IP Addresses
81-
/info/gettraffic/ - Internet Traffic
82-
/info/getdiskio/ - Disk Reads/Writes
83-
/info/proc/ - Running Processes
84-
/info/loadaverage/ - Load Average
85-
/info/getnetstat/ - Netstat
73+
- /info/uptime/ - Uptime
74+
- /info/platform/hostname/ - Hostname
75+
- /info/platform/osname/ - OS Name
76+
- /info/platform/kernel/ - Kernel
77+
- /info/getcpus/cpucount/ - Number of CPU cores
78+
- /info/getcpus/cputype/ - Type/Name of CPU
79+
- /info/memory/ - Memory Usage
80+
- /info/cpuusage/ - CPU Usage in percentage(%), free and used
81+
- /info/getdisk/ - Disk Usage
82+
- /info/getusers/ - Online Users
83+
- /info/getips/ - IP Addresses
84+
- /info/gettraffic/ - Internet Traffic
85+
- /info/getdiskio/ - Disk Reads/Writes
86+
- /info/proc/ - Running Processes
87+
- /info/loadaverage/ - Load Average
88+
- /info/getnetstat/ - Netstat
8689

8790
To see the format of the JSON returned datasets or data you can access any of the URLs from your browser ex. http://domain.com/info/uptime/
8891

8992
**OS Support**
9093

91-
NetDash was tested and runs under the following OSs:
92-
Windows 2000 NT
93-
Windows 2003 Server
94-
Windows 2008 Server
95-
Windows 2012 Server
94+
- NetDash was tested and runs under the following OSs:
95+
- Windows 2000 NT
96+
- Windows 2003 Server
97+
- Windows 2008 Server
98+
- Windows 2012 Server
9699

97100
**Credits**
98101

0 commit comments

Comments
 (0)