Skip to content

Commit 6aabae3

Browse files
author
Sergey
committed
REadme fix
1 parent 0c49138 commit 6aabae3

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,17 @@ It has built-in REST API and UI dashboard.
88

99
[See Demo page only, returned from Perfon.Net Api](http://perfon.1gb.ru/api/perfcountersui "See Demo page only, returned from Perfon.Net Api")
1010

11-
Install from NuGet: `Install-Package Perfon.WebApi` for using in Asp.Net WebApi projects.
12-
Install from NuGet: `Install-Package Perfon.Mvc` for using in Asp.Net Mvc 5 projects.
11+
Install from NuGet: `Install-Package Perfon.WebApi` [link](https://www.nuget.org/packages/Perfon.WebApi "Nuget link") for using in Asp.Net WebApi projects.
12+
13+
Install from NuGet: `Install-Package Perfon.Mvc` [link](https://www.nuget.org/packages/Perfon.Mvc "Nuget link") for using in Asp.Net Mvc 5 projects.
1314

1415

1516
It is designed mainly for use in WebApi and MVC projects, placed on shared hosting plans, when you have no access to IIS or OS and work without access to IIS or OS, or have non-privileged rights.
1617

1718

1819
It has three built-in storage drivers, allowing to save counters data to CSV file, in embedded LiteDB database (www.litedb.org, SQLite analog) or to keep it in memory cache.
19-
You could develop own storage driver implementing simple interface.
20-
Custom counters could be impelemented easily deriving from Peron.Net base performance counters.
20+
You could develop own storage driver by implementing simple interface.
21+
Custom counters could be impelemented easily deriving from Perfon.Net base performance counters.
2122
Threshold notifications could be set on counters.
2223

2324

@@ -36,19 +37,16 @@ A list of implemented performance counters:
3637

3738
Perfon.Net provides Web Api for getting performance counters and built-in dashboard:
3839

39-
get counters list: api/perfcounters
40-
41-
get values for selected counter: api/perfcounters?name={name} [&date={date}&skip={number}]
42-
43-
html page dashboard iwth visualization of counters: api/perfcountersui
44-
45-
html div: api/perfcountersuipanel
40+
* get counters list: api/perfcounters
41+
* get values for selected counter: api/perfcounters?name={name} [&date={date}&skip={number}]
42+
* html page dashboard with visualization of counters: api/perfcountersui
43+
* html div: api/perfcountersuipanel
4644

4745

4846
It could be tested on the Demo site: [http://perfon.1gb.ru/api/perfcountersui](http://perfon.1gb.ru/api/perfcountersui "http://perfon.1gb.ru/api/perfcountersui")
4947

5048

51-
Counter values are the same as that of in JMeter and Windows PerfMon for both WebApi and MVC projects.
49+
Counter values have need verified with counters of JMeter and Windows PerfMon for both WebApi and MVC projects.
5250
(TODO: add comparison images)
5351

5452

@@ -102,7 +100,9 @@ A wrapper for painless use Perfon with Web Mvc 5 projects.
102100
PerfMonitor.Configuration.EnablePerfApi = true;
103101
PerfMonitor.Configuration.EnablePerfUIApi = true;
104102
PerfMonitor.Start(this, RouteTable.Routes, 2000);
103+
```
105104

105+
---
106106
107107
### Perfon.Core
108108
Core library, that monitors performance metrics of your application.
@@ -114,17 +114,17 @@ It does not uses windows perfomance counters, so it could used with non-privileg
114114
### TestServer
115115
Example of using Perfon.WebApi. One could run and monitor with Perfon using JMeterTests stress tests.
116116

117-
--
117+
---
118118

119119

120120
### TestMvcApp
121121
Example of using Perfon.Mvc.
122122

123-
--
123+
---
124124

125125
License: MIT
126126

127-
--
127+
---
128128

129129
### TODO:
130130
* add sample for custom counter.

0 commit comments

Comments
 (0)