Skip to content

Commit

Permalink
Merge pull request #65 from aspanner/main
Browse files Browse the repository at this point in the history
added rpm install section
  • Loading branch information
rootfs authored Jul 7, 2023
2 parents 8978b1e + d8950d2 commit 723420e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/installation/kepler.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,28 @@ kubectl apply --server-side -f manifests/setup
until kubectl get servicemonitors --all-namespaces ; do date; sleep 1; echo ""; done
kubectl apply -f manifests/
```
## Install Kepler as RPM
To install the kepler rpm [download](https://github.com/sustainable-computing-io/kepler/releases/) the latest stable version, unpack and install:

```sh
sudo dnf localinstall kepler-[version.arch].rpm

systemctl start kepler.service
```

Check status with

```sh
systemctl status kepler.service

journalctl -f | grep kepler
```

In order to do process-level energy accounting type:
```sh
mkdir -p /etc/kepler/kepler.config
echo -n true > /etc/kepler/kepler.config/ENABLE_PROCESS_METRICS
```
The kepler service runs on default port 8888.

Use your web browser to navigate to the machine IP on port 8888.

0 comments on commit 723420e

Please sign in to comment.