The Best Way to Add Health Checks in Any .NET App

  Рет қаралды 85,223

Nick Chapsas

Nick Chapsas

11 ай бұрын

Check out my courses: dometrain.com
Become a Patreon and get source code access: / nickchapsas
Hello, everybody, I'm Nick, and in this video, I will show you the right way to add clean and elegant Health Checks to your .NET application. I've never worked in a company, big or small, where we did not have health checks in our applications so it's safe to see that every app needs this.
Workshops: bit.ly/nickworkshops
Give health checks a star on GitHub: github.com/Xabaril/AspNetCore...
Don't forget to comment, like and subscribe :)
Social Media:
Follow me on GitHub: bit.ly/ChapsasGitHub
Follow me on Twitter: bit.ly/ChapsasTwitter
Connect on LinkedIn: bit.ly/ChapsasLinkedIn
Keep coding merch: keepcoding.shop
#csharp #dotnet

Пікірлер: 144
@kerimbal3214
@kerimbal3214 11 ай бұрын
ATTENTION! If you are running a database which works on demand for cost optimization, keep in mind that if you use this method to check its heath, the database will be pinged in every few seconds and will be up all the time. Been there... :)
@DoorThief
@DoorThief 11 ай бұрын
Comments like these are pretty valuable. Thanks for sharing!
@kdcapparelli
@kdcapparelli 11 ай бұрын
So, what's the recommendation (alternative) in this case ? 🤔
@nickchapsas
@nickchapsas 11 ай бұрын
It’s mentioned in the video. Rate limiting or auth to ensure that you’re the only one calling those endpoints in acceptable intervals
@amnesia3490
@amnesia3490 11 ай бұрын
Good point, it's easy to put it in strict intervals as Nick mentioned
@SOYLUISO
@SOYLUISO 9 ай бұрын
@@amnesia3490 how can i define this strict intervals? thanks!
@Denominus
@Denominus 11 ай бұрын
Health checks are important, I have to give a warning when designing them though. K8s/Nomad/ECS etc. generally take the view that "unhealthy" services need to be restarted/reallocated. If your services make other services and database dependencies part of their health checks, when those dependencies have issues or network outages, you can cause all your services to crash and get yourself into a thundering herd of service restarts and failures across your entire system. They can also create a startup sequence for your services, generally a bad thing when working with distributed systems. ie. Y service cannot start and pass its health check until X service is running. Keep this in mind when designing your health checks.
@DoorThief
@DoorThief 11 ай бұрын
Sage words of wisdom
@johncerpa3782
@johncerpa3782 11 ай бұрын
How do we solve this?
@devhagen
@devhagen 11 ай бұрын
@@johncerpa3782 As with everything, configure k8s to give it some time before shutting it off, and think about your whole service infrastructure. k8s gives you two options, a "alive" health check to see if your application is running, and a ready health check to se if you are ready to receive traffic, with lots of options for each of them :)
@icymaru00yue
@icymaru00yue 11 ай бұрын
Thanks for this man
@pilotboba
@pilotboba 11 ай бұрын
Sure with this iirc you can create different endpoints. One would be a container-level service check for k8 and one could be an application service level for the load balancer/target group, etc.
@AJax2012
@AJax2012 11 ай бұрын
I've been a software developer for almost 5 years. Worked on projects for ~5 different companies. Never knew this existed. Now I might need to bring this up at work... I can't imagine how much time this could save us. Great stuff Nick. Thanks!
@rogerfar
@rogerfar 11 ай бұрын
Very cool, wouldn't mind seeing a followup video to explain how to actually have a alerting tool connected to it.
@tsankotsankov760
@tsankotsankov760 11 ай бұрын
I double that suggestion
@maskettaman1488
@maskettaman1488 11 ай бұрын
I like using Uptime Kuma as the client for healthchecks. My scenarios are fairly simply and all I want is a notification which it's great for
@Astral100
@Astral100 11 ай бұрын
Blows my mind. I didn't realise there was such a simple but powerful tool for health checks built in already. Thanks for demonstrating!
@therealantiarchitect
@therealantiarchitect 11 ай бұрын
Thanks for this Nick. I have been using these health checks for a few projects now and can't live without them. Glad you're bringing more people into the fold.
@ourjamie
@ourjamie 11 ай бұрын
You know not only does Nick make my c# so much better , his way of developing is cross transferable to other languages. As soon as I've mastered things like this, I then go looking for the same type of things in rust, go & erlang. Thank for being brilliant mate you're a star
@bodek321
@bodek321 11 ай бұрын
100% Agree! If I can suggest: become a Patreon :-)
@pilotboba
@pilotboba 11 ай бұрын
This is also nice because you can set up different checks, and how deep they go. You can use a very high level check for a status dashboard, and then a lower-level check for the load balancer, and then even a lower-level one for the main service of a container, etc. It's really flexible.
@adamoneil7435
@adamoneil7435 11 ай бұрын
I knew health checks were a thing, but didn't know how comprehensive and easy they are to setup. So thank you! I was curious to see more about the authorization options on the _health endpoint. You said it could be "network based" but you didn't show an example of that.
@joseduque2406
@joseduque2406 11 ай бұрын
Thanks Nick! A lot of people explain how to use these, but so far you are the only one I have seen that has mentioned how to secure it. On the Microsoft microservices shop on containers they use the UI as well. It is pretty cool.
@codingbloke
@codingbloke 11 ай бұрын
I was aware but hadn't seen them implemented. Thanks, just started a fresh API project, that's going in up front.
@aksous9084
@aksous9084 9 ай бұрын
This was really useful information. Thank you very much Nick!
@sivakumarr28
@sivakumarr28 11 ай бұрын
I know the health checks and I use it in my projects. But I am unaware of the packages. Thank you for introducing new things to us.
@ArifjMamun
@ArifjMamun 11 ай бұрын
Didn't know that in such detail and comprehensive implementation. Amazing!
@noelfrancisco5778
@noelfrancisco5778 11 ай бұрын
very helpful, so glad to know there are now available packages to ease our healthchecks. Thanks for sharing :)
@jakubsuchybio
@jakubsuchybio 11 ай бұрын
Didn't know about it. Nice! Thanks for sharing it with us!
@jaygiles5783
@jaygiles5783 11 ай бұрын
More awesome content, brilliant thanks. Will be implementing this in the services we're currently building.
@TampaCEO
@TampaCEO 8 ай бұрын
I was planning on creating 2 methods in my APIs. 1, "Ping" shows the API is "alive". 2. "HealthCheck" digs down into all of the "dependencies". I'm thanking God I came across your videos first. No matter what you want to build, there is probably a library or API that already does it. Thanks for another great video.
@vitoramorim6589
@vitoramorim6589 11 ай бұрын
I'm Brazilian, i really love your content!
@tremblben
@tremblben 11 ай бұрын
Nice introduction to health check, super useful 😁Once I lost our company an hour of sales at peak hour because it was considered unhealthy. The database was being slow and the health check were failing, rightfully so. Because I knew nothing about configuring Kubernetes correctly, it was killing the pods thinking they need to be restarted to be healthy. Little did I knew this was adding more pressure to other pods and were making the issue worst. The database was the problem and now we no longer had enough instances to handle the traffic properly on top of that. Learn the difference between liveness probe (does it need to be restarted?) and readiness probe (should it receive traffic?). Putting your health check on the liveness probe might cost you a lot of money!!! 🙀
@XenidRol
@XenidRol 11 ай бұрын
never heard of such a tool, definitely gonna try using these in my project
@sam2943
@sam2943 11 ай бұрын
Good video, I didn't know about the health checks. Thanks for sharing your knowledge.
@bujin1977
@bujin1977 11 ай бұрын
I kind of knew health checks existed but I haven't used them in the past. I am in the process of writing an app at the moment that would really benefit from using them so I'll be looking into integrating it into the project this week.
@InshuMussu
@InshuMussu 4 ай бұрын
Nick, you are the best. God bless you with more success. Thank you for sharing great stuff with us.
@antonyndungu5514
@antonyndungu5514 9 ай бұрын
Awesome video, thanks
@davidpccode
@davidpccode 11 ай бұрын
Nice and clean Nick, Thanks for this amazing content..buuuut the applications HealthCheck shouldn't check components external to itself, because if the DB fails, it doesn't make much sense to redeploy all the containers that use that DB, doing this won't bring up the DB because the The problem is not in the application container but in the DB. What is suggested is to establish a HC for the DB, although for infrastructure issues a monitoring or alarm system works better, because it is not as simple as just creating a new Postgres or a new Rabbit, etc.
@lordmetzgermeister
@lordmetzgermeister 11 ай бұрын
You don't necessarily have to restart the service. Just raise an alert and have someone handle it manually or, as shown with the health check response writer, you can get a detailed overview of what's borked so you can automate the actions.
@xpoftik
@xpoftik 7 ай бұрын
As usually a super simple explanation of matters that everybody should know. Just perfectly!
@alex222kyselov
@alex222kyselov 11 ай бұрын
Great video! Would be also good to see how would you implement health checks in azure functions isolated.
@guybahar6856
@guybahar6856 11 ай бұрын
Excellent video Nick.
@shahnawazk
@shahnawazk 11 ай бұрын
The best on Health check ever, thanks Nick.
@dvldev
@dvldev 11 ай бұрын
New skill has unlocked.! Thanks Nick!
@DavidWengier
@DavidWengier 11 ай бұрын
Health checks are really important. You know what else is important? More podcast episodes!! 😛
@ankushmadankar1756
@ankushmadankar1756 11 ай бұрын
Excellent video Nick
@neilvermeulen5283
@neilvermeulen5283 11 ай бұрын
Thank you Nick. This works!
@devmarkmonster
@devmarkmonster 11 ай бұрын
I’ve been using the mentioned packages as well. They even have a UI package to enable an visual overview of health checks. I run this UI in my k8s cluster to get a nice detailed overview of the micro services health.
@elvis7097
@elvis7097 11 ай бұрын
Hi, what's the name of the Ui Package?
@NoName-1337
@NoName-1337 11 ай бұрын
Thank you for this great video!
@EricOnYouTube
@EricOnYouTube 6 ай бұрын
I had no clue that this was built in. I will add this when I return to work.
@yunietpiloto4425
@yunietpiloto4425 11 ай бұрын
Nice video, didn't know about this tbh...really neat, thanks for sharing!
@wellingtonmapiku
@wellingtonmapiku 11 ай бұрын
This is great. Thanks.
@alexdarvel238
@alexdarvel238 11 ай бұрын
Thanks a lot! But I still have a question - how to implement health checks in console applications? I have workers in my project and I need to be sure that they are alive
@roderick9665
@roderick9665 11 ай бұрын
Thanks for sharing good practices! Maybe you should make a video of all useful 3rd party packages used by you and other trusted sources 🙏
@paulecampbell
@paulecampbell 11 ай бұрын
Great one Nick
@reikooters
@reikooters 11 ай бұрын
Didn't know about this. Good one
@ArnonDanon
@ArnonDanon 11 ай бұрын
Awsome content 🙏🏼
@frankbanini8884
@frankbanini8884 11 ай бұрын
Good to know this. Nick is spoiling us !!!!!! Lol
@ram6030
@ram6030 11 ай бұрын
I didn't know this I'm gonna use it in my project
@yoannvisentin3465
@yoannvisentin3465 11 ай бұрын
Thanks great video once again. Do you think you can do a video about your previous role as Software engineering manager ? pro and cons of the role, and what makes a good software engineer manager ? Thanks!
@Guillen8606
@Guillen8606 11 ай бұрын
Are you speed talking right to the end of the video? LOL. Great content by the way
@VladyslavHorbachov
@VladyslavHorbachov 11 ай бұрын
Great video!
@AbdullahKhan-kd1cv
@AbdullahKhan-kd1cv 11 ай бұрын
Another excellent informative video. My only comment would be... it would be nice if these updates found their way into your courses as well
@nickchapsas
@nickchapsas 11 ай бұрын
They do. The REST API course covers healthchecks
@ThiagoSoli
@ThiagoSoli 4 ай бұрын
thx a lot!
@balagurunathanmarimuthu2807
@balagurunathanmarimuthu2807 11 ай бұрын
Hi Nick, Nice informative video tutorial as always. I learnt many things from your content especially regarding API. I have one question. Is there any possibilities to health check the worker service which is hosted in remote server? Your comment is much appreciated. Thanks.
@rikkyhasibuan260
@rikkyhasibuan260 11 ай бұрын
very neat!
@DavidGarus
@DavidGarus 9 ай бұрын
Could you please share a link for the naming convention? everything i found on the web is naming the endpoint "/health" ... i know this is just a detail but would be great to know this anyways :D
@nick066hu
@nick066hu 9 ай бұрын
Thank you for the great tip and video. Could you or someone please direct me to an example of adding some server performance parameters to the health checks return json report, like current workload, number of request in the past x time, concurrent requests, average response time, etc. I plan to use this data with my supervising/orchestrating server for fault tolerance routing, load balancing and also serve data to my dashboard app showing all my servers well-being and operation. UPDATE: Never mind, just found your other video "Creating Dashboards with .NET 8’s New Metrics!" exactly what I needed. Thanks. (not deleting my post, maybe will be useful for somebody else)
@nicholassmith831
@nicholassmith831 10 ай бұрын
Great video. How does the memory usage look when the health checks are used periodically? Is this a lightweight function or does it leave objects in memory?
@FraserMcLean81
@FraserMcLean81 11 ай бұрын
Cool video, thanks for sharing. I have been using health checks but I have a question. Say you are using shared dependencies like Cosmos DB or 3rd party API, if those go down then all of your apps will be marked as unhealthy. What is the best way to handle this?
@Warpgatez
@Warpgatez 11 ай бұрын
Nick, I checked out your courses. I plan on doing them in the future if you send out promo codes. $80+ USD is expensive for a course, I don’t doubt they are worth every penny but courses are used for familiarizing developers with information. And in todays world of teachable and Udemy $80+ is expensive for one course. Standing by for newsletter promos.
@haxi52
@haxi52 11 ай бұрын
Would you expand on this and show how to configure something like nginx running as a LB to detect unhealth endpoints and reroute traffic?
@nove1398
@nove1398 11 ай бұрын
Didn't know about that library support, but do you have a video on how to limit access to internal servers? Or is it just a matter of making the requireHost?
@irhas6555
@irhas6555 8 ай бұрын
great
@jouel123
@jouel123 11 ай бұрын
Great content as always. Do you have the projects that you show around here hosted anywhere? I was actually searching for your movies api on github and didn't found it. I was looking for a piece of code that you probably already have shown on another video but couldn't figure out which of them 😅
@jouel123
@jouel123 11 ай бұрын
I actually just checked that it's on patreon rigth?
@nickchapsas
@nickchapsas 11 ай бұрын
Yeah all the code in my videos is on Patreon
@jouel123
@jouel123 11 ай бұрын
@@nickchapsas A suggestion for future videos, would enjoy to see you talk about specification pattern.
@NextProgrammer
@NextProgrammer 11 ай бұрын
Awesome! very informative. We don't use health checks. We love surprises! (lol)
@serhiyradzyniak1353
@serhiyradzyniak1353 6 ай бұрын
Hello Nick! Thanks for this great video! Wanted to ask you if you know what is invoking health check endpoint periodically -- period is 1 minute. And Request logging middleware is not processing those health check requests, so it must be something inside the application. And each times in logs I see the following string tracked with severity "Debug": "Running health check publishers". Many thanks if you (or anybody else) could help me with answering this stuff...
@user-sz9kn5kl6q
@user-sz9kn5kl6q 11 ай бұрын
Would you make a video for null object pattern?
@dolaudz3285
@dolaudz3285 11 ай бұрын
What are your thoughts on monitors that run periodically (for example every 10 minutes) and check for invalid data for certain states or db entries?
@MarusykRoman
@MarusykRoman 9 ай бұрын
what if I have a simple worker(non-web) application? is there an elegant way to provide HTTP endpoint with health without converting it to WebHost?
@dorins3787
@dorins3787 11 ай бұрын
This maps quite ok to kubernetes restart policies. But a lot more implementation is needed
@kumardeveloper3873
@kumardeveloper3873 3 ай бұрын
Excellent video Nick. Can I get link to the code ?
@alvaromp1106
@alvaromp1106 9 ай бұрын
I am using them and they are great but how do I test them in integration tests (not unit test) ? I mean how can I fake the response this checks get from the services or resources ?
@krudolph
@krudolph 11 ай бұрын
Great tool to have. Does anyone use any kind of monitoring service to actively monitor these endpoints though? I'm looking to implement this on several client APIs and would love to have something that can just monitor all of them and email me if something changes from Healthy to Degraded or Unhealthy. Haven't really found anything that will do that yet and am hoping to avoid needing to roll my own monitoring app.
@herrhardi
@herrhardi 11 ай бұрын
can you do video on healthcheck strategies? e.g. what to put on startup checks, readiness and live
@lennarthammarstrom1321
@lennarthammarstrom1321 11 ай бұрын
Awesome video as per usual! I do have one caveat though, if I want the health checks to appear in my Swagger automagically, how would I go about doing that without having to reimplement larger parts myself?
@nickchapsas
@nickchapsas 11 ай бұрын
You would just register the health check middleware after the swagger one
@lennarthammarstrom1321
@lennarthammarstrom1321 11 ай бұрын
@@nickchapsas Does that work even with a custom response writer?
@FarukLuki111
@FarukLuki111 11 ай бұрын
We implement healtchecks, but within a controller and MediatR and inside the handler we make SQL select RabbitMQ message publishing So basically „manually“
@jameshancock
@jameshancock 11 ай бұрын
Yes I knew. And it’s a really tricky problem with k8s if you’re using external cloud services that then fail. It creates a recycle loop because it’s down for the pods but the pod itself is healthy. It’s the services that aren’t and no amount of recycling will fix it. Needs to be something more for k8s like “healthy but screwed” that you can throw notifications on but doesn’t cause k8s to do try and recover.
@anasseelhayati7231
@anasseelhayati7231 11 ай бұрын
I have one question: what’s the best way to call these checks? If you don’t wanna use batch jobs running most likely on the same servers as the app you wanna check. Is it best to call them using “external” tools like Selenium or Control-M?
@inzyster
@inzyster 11 ай бұрын
Would you return Degraded instead of Unhealthy if there were still requests you’d be able to handle without the database?
@stoqndimitrov4339
@stoqndimitrov4339 11 ай бұрын
Can you explain Null Object Pattern?
@juliocesartovar4231
@juliocesartovar4231 3 ай бұрын
Hi @nickchapsas how you can add/implement a healthcheck for a Ftp server?
@ibrahimhussain3248
@ibrahimhussain3248 11 ай бұрын
Didnt know about health checks. How would you go about checking those though? Have a sevice that calls the endpoint within set intervals and send a mail or somthing?
@DoorThief
@DoorThief 11 ай бұрын
Yep! Also, for docker + orchestration you generally get this out of the box. Some cloud apps also use health checks and plug in to this pattern pretty easily
@ananthasubramanian938
@ananthasubramanian938 3 ай бұрын
The health check API can be created for cron jobs ? (a utility which runs periodically and doesnt have UI however can create a domain and have a health status endpoint)
@christiannickel9801
@christiannickel9801 11 ай бұрын
Are there some pre-built systems to interact with these health checks or would you make your own?
@nickchapsas
@nickchapsas 11 ай бұрын
The "calling" of the health check is part of a different service, for example DataDog alerting or K8s health endpoints
@sranmajstorovic2935
@sranmajstorovic2935 11 ай бұрын
Most of time services have more than one downstream dependency and are using them in different ways on diferent endpoint. Rare are the situation where all your endpoints depend on all of dependencies. In the example fron video if you decide to say I'm unhealthy if db is down, you wont be able to serve that isvaligithubusername requests. Nic did mentioned degraded state but that doesnt tell anything to the k8s. Diferent way to undestand this is that health of service means its own health, not dependencies. If dependency is down I'll throw 500, big deal. Health check is used when pipeline spins new version of pods and trafic needs to be redirected from old version to new version of pods. Boot of the app takes time, and all that time new pod is being pinged on /health to check if it can recieve trafic. When it says ok, trafic goes to new one, old ones die.
@aj0413_
@aj0413_ 11 ай бұрын
weird timing, I was *just* learning about this and implementing it
@MarkTrudgeonRulez
@MarkTrudgeonRulez 11 ай бұрын
I have found that connecting to the database every time causes issues with the connection session pools when using Oracle when run in a Kubernetes pod so our DBAs have forbidden us to call database connection checks.
@guybahar6856
@guybahar6856 11 ай бұрын
There a way to redirect this request to other service when health check not pass ?
@NabeelFarooqui
@NabeelFarooqui 11 ай бұрын
After configuring these. Should I have some other separate monitoring app or service periodically calling the health endpoint and notifying me if it's down?
@amnesia3490
@amnesia3490 11 ай бұрын
Well yes thats one way to know if your service is healthy. Projects that handles huge traffic usually has some proxy api acting like load balancing. Those load balancing APIs can call the /health and would know which instance is healthy and up
@dennycrane2938
@dennycrane2938 11 ай бұрын
You gotta be careful with this as it doesn't play well with a lot of infrastructure out of the box. A lot of times, health checks are required to verify startup of a service which means if some dependencies are down, it could prevent the successful reporting of your service startup to something like an orchestrator (e.g. kubernetes) which could cause a chain of service restarts. I've even seen secondary effects with Anthos (Istio) where changes to the cluster get blocked for 30 minutes because it's unable to verify the last change which is this service that's not coming up because the health check is either failing or otherwise unhealthy. Additionally, I would urge you to not use this same endpoint to be the health check endpoint used by your load balancers to check backend health, or at least not without some additional considerations. Oftentimes, those health checks need to be lightning fast or it will timeout and lead to it being taken out of the pool. Our solve involved us having to insert some middleware to handle HEAD requests specifically and immediately respond with 200 without running any deeper tests and then making sure the LBs were using HEAD requests specifically. In retrospect, it may have been better to even separate these "health checks" in this video to be on /health for public (e.g. loadbalancers, responds immediately) and /healthz for internal (the report/deeper/etc)
@rfphill
@rfphill 8 ай бұрын
This is a great comment, definitely some things to consider. I followed your advice as it made a great deal of sense...
@terryaney73
@terryaney73 11 ай бұрын
I see all the packages discussed at the end of the video use the HealthCheckRegistration object for registering IHealthCheck classes. I've tried passing a timeout down but it doesn't seem to obey my timeout. For example I've tried passing in TimeSpan.FromSeconds( 2 ) as the time out but the health check still runs for the default Redis timeout length of 5 seconds before returning. Has anyone successfully used the timeout property of HealthCheckRegistration and is there something special that needs to be done?
@terryaney73
@terryaney73 11 ай бұрын
I see the problem. The current nuget package for Redis healthchecks is early '22. The current source code shows that it is using timeout as I'd expect. However, when I decompiled the current nuget package, I see that the source is different and they aren't leveraging the time out.
@PeterSkillman108
@PeterSkillman108 11 ай бұрын
Nick -how to get emails via health checks?
@mariocamspam72
@mariocamspam72 11 ай бұрын
The term "Health Check" reminds me of that crappy React + Fluent "PC Health Check" applet from MS.
@rostik18
@rostik18 11 ай бұрын
I have a funny one: the health check BackgroundService creates an empty file every 5 mins, and if Kubernetes won't see this file for 15 mins it restarts the pod
@nayanchoudhary4353
@nayanchoudhary4353 11 ай бұрын
Now, next video on how to integrate these with service fabric 😂
@GlebWritesCode
@GlebWritesCode 11 ай бұрын
Those are passive healthchecks - they run only when you call the endpoint. I've seen another implementation - they are triggered periodically (e.g. every minute) and endpoint gets you the last results
@sergeybenzenko6629
@sergeybenzenko6629 11 ай бұрын
Wow, did I miss anything? Since when can you do CancellationToken cancellationToken = new() ? No default? No CancellationTokenSource?
@nickchapsas
@nickchapsas 11 ай бұрын
This feature was added in C# 9
@sergeybenzenko6629
@sergeybenzenko6629 11 ай бұрын
@@nickchapsas I'm not talking about new(), I'm talking about creating Token directly, not through the CTSource.
@LeMustache
@LeMustache 11 ай бұрын
​@@sergeybenzenko6629 CancellationToken is a struct. All structs have the default constructor. It is the same as using default
@ZhenyaKolobov
@ZhenyaKolobov 11 ай бұрын
new CancellationToken() - or equivalently CancellationToken.None produces a cancellation token which never will be cancelled.
11 ай бұрын
We depend on our customers notifying us that something goes down 😃
@rfphill
@rfphill 8 ай бұрын
LOL... We do too. Monitoring for "free"?
@weluvmusicz
@weluvmusicz 11 ай бұрын
Create a database connection for every http connection? Does not sound like a good way to me.
@pattypeppermint3753
@pattypeppermint3753 11 ай бұрын
"in Any .NET App" is not true
@megaman2016
@megaman2016 11 ай бұрын
🤯🤯🤯
@stoyangrigorov5634
@stoyangrigorov5634 11 ай бұрын
🌐🚂
Getting Started with Event Sourcing in .NET
37:07
Nick Chapsas
Рет қаралды 8 М.
3 .NET "Best Practices" I Changed My Mind About
10:16
Nick Chapsas
Рет қаралды 98 М.
GADGETS VS HACKS || Random Useful Tools For your child #hacks #gadgets
00:35
FLIP FLOP Hacks
Рет қаралды 101 МЛН
ПЕЙ МОЛОКО КАК ФОКУСНИК
00:37
Masomka
Рет қаралды 9 МЛН
The magical amulet of the cross! #clown #小丑 #shorts
00:54
好人小丑
Рет қаралды 24 МЛН
Every Most POPULAR Programming Language in 7 Minutes | 2024
7:28
Every Explanation
Рет қаралды 5
Intro to Health Checks in .NET Core
1:13:53
IAmTimCorey
Рет қаралды 48 М.
Make Your LINQ Up to 10x Faster!
11:08
Nick Chapsas
Рет қаралды 52 М.
Background Tasks Are Finally Fixed in .NET 8
10:29
Nick Chapsas
Рет қаралды 95 М.
Forget Grafana And Prometheus! Start With This.
10:51
Nick Chapsas
Рет қаралды 38 М.
Swagger is Going Away in .NET 9!
10:48
Nick Chapsas
Рет қаралды 60 М.
ChatGPT Can Now Talk Like a Human [Latest Updates]
22:21
ColdFusion
Рет қаралды 65 М.
The Auth Setting That Everyone MUST Change in .NET
10:35
Nick Chapsas
Рет қаралды 43 М.
.NET 8 💥 - Web API Health Checks ⛑🚑🚑
19:32
Mohamad Lawand
Рет қаралды 1,8 М.
GADGETS VS HACKS || Random Useful Tools For your child #hacks #gadgets
00:35
FLIP FLOP Hacks
Рет қаралды 101 МЛН