MLOps/config/grafana/dashboards/csgo-mlops-dashboard.json

39 lines
796 B
JSON

{
"dashboard": {
"title": "CS:GO MLOps Dashboard",
"panels": [
{
"title": "Model Accuracy (7d Rolling)",
"targets": [{
"expr": "model_accuracy"
}],
"alert": {
"conditions": [{
"evaluator": {
"params": [0.65],
"type": "lt"
}
}]
}
},
{
"title": "Prediction Latency P95",
"targets": [{
"expr": "histogram_quantile(0.95, prediction_latency)"
}]
},
{
"title": "Data Volume (Daily Matches)",
"targets": [{
"expr": "daily_match_count"
}]
},
{
"title": "ROI (30d)",
"targets": [{
"expr": "betting_roi_30d"
}]
}
]
}
}