tarantool / grafana-dashboard

Dashboard for Tarantool application and database server monitoring with Grafana
MIT License
34 stars 11 forks source link

Fix context switches monitoring #151

Closed DifferentialOrange closed 2 years ago

DifferentialOrange commented 2 years ago

dashboard: fix context switches panel

tnt_fiber_csw is not a monotonic metric since it summarize context switches over all current fibers. If fiber is already dead, its share is no more included. Thus, using rate on tnt_fiber_csw is incorrect.

alerts: remove fiber csw example

Using rate with tnt_fiber_csw metric is incorrect.

Follows up #72