-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Mohammad Kasaei <[email protected]>
- Loading branch information
Showing
4 changed files
with
105 additions
and
1 deletion.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
star-docs/onboarding/checklists/debugging/backend/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"label": "سمت سرور", | ||
"label": "اشکالات سمت سرویس", | ||
"position": 0, | ||
"link": { | ||
"type": "generated-index", | ||
|
8 changes: 8 additions & 0 deletions
8
star-docs/onboarding/checklists/debugging/backend/dotnet-tools/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "ابزارهای مبتنی بر dotnet", | ||
"position": 0, | ||
"link": { | ||
"type": "generated-index", | ||
"slug": "dotnet-tools" | ||
} | ||
} |
96 changes: 96 additions & 0 deletions
96
star-docs/onboarding/checklists/debugging/backend/dotnet-tools/dotnet-counters.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
# شهبود کلی نسبت به سرویس از طریق dotnet-counters | ||
|
||
یکی از ابزارهایی که برای بررسی وضعیت کلی سرویس ارائه شده | ||
`dotnet-counters` | ||
است. | ||
|
||
:::tip | ||
از این ابزارها میتوان در محیط توسعه و همچنین در محیط عملیاتی استفاده کرد. | ||
|
||
برای استفاده از لاگها در محیطهای عملیاتی لازم است فایلهای لاگ را خروجی بگیریم و بررسی کنیم. | ||
::: | ||
|
||
|
||
مستندات رسمی این ابزارها از | ||
[این آدرس](https://learn.microsoft.com/en-us/dotnet/core/diagnostics/tools-overview) | ||
قابل دسترس است. | ||
|
||
## ابزار dotnet-counters | ||
برای مشاهدهی وضعیت کلی شرایط و منابعی که یک سرویس در حال استفاده است از ابزار | ||
`dotnet-counters` | ||
استفاده میکنیم. | ||
|
||
|
||
### مشاهدهی وضعیت فعلی | ||
برای نصب این ابزار روی سیستم خود از دستور زیر استفاده کنید. | ||
|
||
```bash | ||
dotnet tool install --global dotnet-counters | ||
``` | ||
|
||
برای یافتن تمام پردازشهای در حال اجرا از دستور زیر را وارد کنید. | ||
```bash | ||
dotnet-counters ps | ||
``` | ||
|
||
سپس برای مشاهدهی جزئیات یک پردازش خاص از دستور زیر استفاده میشود. | ||
|
||
```bash | ||
dotnet-counters monitor --refresh-interval 1 -p 8096 | ||
``` | ||
|
||
این دستور خروجی مشابه زیر دارد. | ||
|
||
![dotnet-counters output](../images/dotnet-tools/dotnet-counters-output.png) | ||
|
||
|
||
:::tip | ||
توجه کنید که حتما باید خط فرمان شما در حالت | ||
administrator | ||
باز شده باشد تا امکان اتصال به | ||
process | ||
خاص فراهم باشد. | ||
::: | ||
|
||
در این بخش موارد زیر به صورت هر ثانیه بروز میشوند و امکان مشاهدهی وضعیت سیستم را فراهم میکند. | ||
|
||
|
||
برای آشنایی با مفاهیم و اطلاعات | ||
GC | ||
پیشنهاد میشود | ||
[این راهنما](https://learn.microsoft.com/en-us/dotnet/standard/garbage-collection/fundamentals) | ||
را مطالعه کنید. به صورت خاص در مورد نسلهای | ||
GC | ||
در | ||
[این لینک](https://learn.microsoft.com/en-us/dotnet/standard/garbage-collection/fundamentals#generations) | ||
توضیح داده شده است. | ||
|
||
برای آشنایی با مفاهیم | ||
Thread pool | ||
به | ||
[این لینک](https://learn.microsoft.com/en-us/dotnet/standard/threading/the-managed-thread-pool) | ||
مراجعه کنید. | ||
و فرایند رفع باگ و ریشههای آن در | ||
[اینجا](https://learn.microsoft.com/en-us/dotnet/core/diagnostics/debug-threadpool-starvation) | ||
توضیح داده شده است. | ||
|
||
|
||
### فایل خروجی | ||
|
||
میتوان از دادهها خروجی به صورت فایل تهیه کرد که برای این کار میتوانیم از دستورات زیر استفاده کنیم. | ||
|
||
``` | ||
dotnet-counters collect -p 8096 --format json | ||
``` | ||
``` | ||
dotnet-counters collect -p 8096 --format csv | ||
``` | ||
|
||
|
||
توضیحات کامل استفاده از ابزار | ||
[dotnet-counter](https://learn.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-counters) | ||
در سایتهای مرجع آمده است. | ||
|
||
|
||
|
||
|
Binary file added
BIN
+43 KB
...ing/checklists/debugging/backend/images/dotnet-tools/dotnet-counters-output.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.