This probject is frozen. An active maintained fork of it with performance improvements under the hood can be found here: https://github.com/jschaef/sarfile_analyzer_ng
The app is using streamlit, altair, pandas and other great python modules
for graphical presentation of various metrics from ascii sar files.
you might have a look here: https://share.streamlit.io/jschaef/sar_file_analyzer/main/code/first_st.py. Create your own account and upload a sar file or use admin/password
- pyhton3
- python3x-pip*
- python3x-tk*
- sar files with '.' as decimal separator (LC_NUMERIC en,us)
- 8GB RAM for better user experience
cd sar_file_analyzer/code
python3x -m venv venv, e.g. python3.10 -m venv venv
source venv/bin/activate
pip install -U pip
pip install -r requirements.txt
install nodejs-common via your package manager (you need the npm binary)
npm install vega-lite vega-cli canvas
- edit config.py
- edit code/.streamlit/config.toml
streamlit run first_st.py
- open a webbrowser and navigate to the page displayed before
- username admin/password
- change password of admin
- upload your first sar file "Manage Sar Files"
Newer versions of sar_file_analyzer may rely on the latest streamlit version.
Such when pulling the newest git changes it might be that it is not working
within your old virtual environment.
In this case do a pip install -U streamlit
below a sample config.toml. Put it into code/.streamlit/config.toml
[global]
dataFrameSerialization = "legacy"
[server]
maxUploadSize = 300
[theme]
primaryColor="#6eb52f"
backgroundColor="#f0f0f5"
secondaryBackgroundColor="#e0e0ef"
textColor="#262730"
font="sans serif"
server {
listen 443 ssl;
server_name <fqdn of your server>;
ssl_certificate /etc/ssl/server/<pub_cert>.crt.pem;
ssl_certificate_key /etc/ssl/private/<priv_key>.key.pem;
location / {
client_max_body_size 2048M;
proxy_pass http://127.0.0.1:8501;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_read_timeout 86400;
}
}
In case the app is throwing an error about helpers.py line 381 format(precision=4)
correct it to set_precision(4)
.
Depending on the pandas version the second one is deprecated but the first one still not known.
In case altair saver is throwing an error when trying to download PDF's anmol098/waka-readme-stats#337 patch ./venv/lib/python3.10/site-packages/altair_saver/savers/_node.py altair_saver.patch