허당 레몬도리
article thumbnail
[dotnet core] 프로세스 모니터링(dotnet-counters monitor)
카테고리 없음 2023. 2. 1. 14:55

참고 : https://learn.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-counters dotnet-counters diagnostic tool - .NET CLI Learn how to install and use the dotnet-counter CLI tool for ad-hoc health monitoring and first-level performance investigation. learn.microsoft.com 1. 설치 dotnet tool install --global dotnet-counters 2. 실행 dotnet-counters [-h|--help] [--version] - 프로세스 목록 확인 > dotnet-counters..

[dotnet core] web api file upload(feat. windows forms)
가. 언어유형/C# 2019. 10. 25. 18:12

webserver 를 이용해 파일 업로드 기능을 만들다가 남겨놓으면 좋을거 같아 남깁니다. 코드는 아래 받으면 되고 Visual Studio 2017버전으로 작성이 되었습니다. 기본적인 코드를 소개(?)하겠습니다. 1. web server project create 1.1 Controllers folder - new controller 1.2 Code using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.IO; namespace WebServer.Controllers { [ApiController] public class FIleUploadController : ControllerBase { [HttpPost] [Rou..