Category: Monitoring
-

⚖️ GPU Balance Pro: Risparmia sulla tua Build Gaming
Quante volte ti sei chiesto: “Questa scheda grafica è troppo potente per il mio monitor?” oppure “Sto buttando soldi in una GPU che non sfrutterò mai al 100%?” Ho creato GPU Balance Pro, un tool web gratuito che risponde a queste domande in modo visivo e immediato, analizzando il bilanciamento tra GPU, monitor e impostazioni…
-

PC Monitoring con OpenHWMonitor, Home Assistant e Grafana
Se sei un appassionato di gaming su PC, sai bene quanto sia importante ottenere le migliori prestazioni possibili dal tuo hardware. Con la rapida evoluzione dei giochi e della tecnologia, la necessità di ottimizzare il proprio computer per assicurarsi non solo performance eccellenti, ma anche una buona durata dei componenti, è diventata cruciale. Questo desiderio…
-

Monitoring Wait Events of a single Session or Query in SQL Server
When troubleshooting a slow query or a specific application session, the instance-level wait statistics in sys.dm_os_wait_stats are too coarse: they aggregate wait events from all processes since the last restart. Resetting the view with DBCC SQLPERF is also problematic on busy instances where hundreds of other sessions generate noise. SQL Server 2008’s Extended Events framework…
-

SQL Jobs Monitoring: check last run datetime and duration
SQL Server Agent jobs are the backbone of automated database maintenance: backups, index rebuilds, integrity checks, ETL pipelines. Knowing at a glance when each job last ran and how long it took is essential for fast daily monitoring, especially when managing multiple instances. This query reads directly from the Agent system tables in msdb and…