-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SARC-328] Implémenter les alertes : Nombre de jobs CPU/GPU (actives ou inactives) sur un cluster sur une période X #128
Conversation
5c400d4
to
0144f20
Compare
Prêt à reviewer ! |
…ou inactives) sur un cluster sur une période X
…use full dataframe to check warnings Add supplementary tests
7b6ff2f
to
5953724
Compare
Rebased with master |
- Remove `exclude` parameter and use only `cluster_names` for both adding and excluding clusters from checking.
.count() | ||
) | ||
# Compute cluster usage: number of jobs per cluster per timestamp | ||
f_stats["jobs_per_cluster"] = f_stats["job_id"] / len(cluster_names) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmmm donc le calcul des valeurs statistiques (moyenne, écart-type) est pour l'ensemble des clusters, et pas cluster par cluster, si je comprends bien ? Je pense que ce qu'on voulait c'est des valeurs statistiques pour chaque cluster, indépendemment. (Mais je me trompe peut-être dans la lecture du code)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
En effet, les statistiques sont actuellement calculées sur l'ensemble des clusters.
Je vais modifier le code pour les calculer cluster par cluster à travers les jours.
@nurbal !
NB basée sur la PR pour SARC-327 #127 à merger en premier !