-
Notifications
You must be signed in to change notification settings - Fork 6
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
Enable job profiling with influxdb #38
base: main
Are you sure you want to change the base?
Enable job profiling with influxdb #38
Conversation
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.
Thanks for the PR! Just a few grammar changes to get your approval on and it'll be good to go!
@@ -15,5 +15,6 @@ See the how-to guides in this section for the steps to set up and deploy various | |||
|
|||
Deploy Slurm <deploy-slurm> | |||
Deploy a shared filesystem <deploy-shared-filesystem> | |||
Enable job profiling with InfluxDB <enable-job-profiling-with-influxdb> |
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.
Enable job profiling with InfluxDB <enable-job-profiling-with-influxdb> | |
Enable job profiling <enable-job-profiling-with-influxdb> |
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.
Just a bit too wordy for the sidebar
(howto-enable-job-profiling-with-influxdb)= | ||
# How to enable job profiling with InfluxDB | ||
|
||
Charmed-HPC integrates with the [InfluxDB Charm](https://charmhub.io/influxdb) to enable job profiling in slurm. |
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.
Charmed-HPC integrates with the [InfluxDB Charm](https://charmhub.io/influxdb) to enable job profiling in slurm. | |
Charmed HPC can integrate with the [InfluxDB Charm](https://charmhub.io/influxdb) to enable job profiling in Slurm. |
|
||
Charmed-HPC integrates with the [InfluxDB Charm](https://charmhub.io/influxdb) to enable job profiling in slurm. | ||
|
||
This how-to guide explains how enable job profiling by deploying and integrating `influxdb` with charmed-hpc. |
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.
This how-to guide explains how enable job profiling by deploying and integrating `influxdb` with charmed-hpc. | |
This guide explains how to enable job profiling by deploying and integrating `influxdb` with charmed-hpc. |
|
||
## Deploy and Integrate InfluxDB | ||
|
||
InfluxDB can be deployed using Juju in a single command. |
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.
InfluxDB can be deployed using Juju in a single command. | |
InfluxDB can be deployed using Juju in a single command: |
$ juju deploy influxdb | ||
::: | ||
|
||
Now [integrate](https://canonical-juju.readthedocs-hosted.com/en/latest/user/reference/juju-cli/list-of-juju-cli-commands/integrate/) the newly deployed influxdb charm with slurmctld. |
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.
Now [integrate](https://canonical-juju.readthedocs-hosted.com/en/latest/user/reference/juju-cli/list-of-juju-cli-commands/integrate/) the newly deployed influxdb charm with slurmctld. | |
Now [integrate](https://canonical-juju.readthedocs-hosted.com/en/latest/user/reference/juju-cli/list-of-juju-cli-commands/integrate/) the newly deployed influxdb charm with slurmctld: |
$ juju integrate influxdb slurmctld | ||
::: | ||
|
||
Once the InfluxDB charm deployment and integration are complete slurm will be configured to send job profiling metrics to influxdb, enabling the use of the [`sstat`](https://slurm.schedmd.com/sstat.html) command. |
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.
Once the InfluxDB charm deployment and integration are complete slurm will be configured to send job profiling metrics to influxdb, enabling the use of the [`sstat`](https://slurm.schedmd.com/sstat.html) command. | |
Once the InfluxDB charm deployment and integration are complete, Slurm is configured to send job profiling metrics to influxdb, enabling the use of the [`sstat`](https://slurm.schedmd.com/sstat.html) command. |
Short howto on enabling job profiling with influxdb.
Depends on charmed-hpc/slurm-charms#70