Skip to content

Instantly share code, notes, and snippets.

View ibki's full-sized avatar

Lim Ki-Sung ibki

  • Republic of Korea
  • 20:05 (UTC +09:00)
View GitHub Profile
@jacking75
jacking75 / ProcessPerformanceCounterHelper.cs
Created March 19, 2020 07:07
.NET Core에서 CPU, Memory 등의 성능 측정하기(Linux에서는 제대로 동작하지 않을 수 있음)
// 출처: SuperSocket
// Nuget으로 System.Diagnostics.PerformanceCounter 추가 필요
// [Use Performance Counters in .NET to measure Memory, CPU, and Everything – Full Guide] https://michaelscodingspot.com/performance-counters/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;