Accessing Cerebras's Internal Grafana Dashboard¶
The Cerebras Grafana dashboard is only accessible from systems within ALCF's internal networks. To access it you will need to open a SOCKS proxy to cerebras.alcf.anl.gov and then route your connection via the SOCKS proxy. Instructions on how to configure SOCKS proxies for your browser are at the end of the page.
Using Grafana Dashboard¶
- Log in by going to https://grafana.anl0.cerebras.internal
- If you get an
Hmm. We’re having trouble finding that site.orWe can’t connect to the server at grafana.anl0.cerebras.internal.then likely your browser and proxy settings are not working. 
- You will likely get a
Warning: Potential Security Risk Aheadnotification the first time you visit the site. This is due to the internal Grafana instance using a self-signed cert. Clickadvancedand then clickAccept the Risk and Continue. 
- If you get an
- Enter your ALCF username and MobilePass+ token.
- It can take up to 10 seconds before you are let in.
- We make several read only dashboards available under the Dashboard folder UserDashboards
- If you wish to create your own dashboards, please email support and request write access for a Cerebras Grafana dashboard.
SOCKS proxies¶
Setup the socks proxy via SSH¶
- SSH's
-Doption will open a local socks proxy at the specified port. In this example, we use port 5555ssh -D5555 ${yourUsername}@cerebras.alcf.anl.gov
Instuctions for setting up via Firefox GUI¶
- Open Firefox's Application menu and click settings
- In search box, type
proxy. UnderNetwork Settingsclicksettings. - Under
Connection Settings:- select
Manual proxy configurationandProxy DNS when using SOCKS v5 
- For
SOCKS Hostput in127.0.0.1and for thePortput 5555 (Or whatever port you used for ssh's -D option 
- Click "OK" to save"
- select
- Exit out of Firefox settings/preferences tab
Instuctions for setting up Chromium-based browsers (Chrome, Brave, Vivaldi) via the CLI on Linux or MacOS¶
- Chromium-based browsers have a
--proxyflag that lets you set a proxy for the new instance of that browser. However they do not have a flag in all version that lets you proxy your DNS queries through the proxy. Requiring you to update your hosts file. The paths to your browser's binary files will be different depending on distribution and browsers. - Update
/etc/hostswith a text editor. You will need to be root or sudo.- Example:
sudo vim /etc/hosts - Add the following as a new line :
10.125.8.2 grafana.anl0.cerebrassc.local grafana.anl0.cerebras.internal - save with
:wq
- Example:
- Open your browser from the cli and the flags
--no-first-run --user-data-dir=$(mktemp -d) --proxy-server="socks5://127.0.0.1:5555"and urlhttps://grafana.anl0.cerebras.internal/login--no-first-run: Prevents browser from asking you to do a new setup of your profile.--user-data-dir=$(mktemp -d): sets a new profile so as to not interfere with an already opened browser.--proxy-server="socks5://127.0.0.1:5555": Tells the browser to use our SOCKS proxy from above.- Example paths to the browsers with flags:



