{% extends "base.html" %} {% block content %} <div id=psla class=analyze> <h1>Perforce Server Log Analyzer - local Docker version</h1> <h2>Analyze Server Log: '{{ LogFile }}'</h2> <p> The table below lists up to 25 problematic commands. These operations are likely to have degraded server performance by holding database locks for extended periods of time. When a process holds database locks (especially exclusive locks) it has the potential to block other operations and make the server less responsive. </p> {% for table in tables %} <h2>{{ titles[loop.index] }}</h2> <p>{{ explanations[loop.index] }}</p> <p>{{ sql[loop.index] }}</p> {{ table|safe }} {% endfor %} </div> {% endblock %}
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#10 | 23765 | Robert Cowham | Moved things down one level to psla dir to make it easier to see what belongs | ||
#9 | 23761 | Robert Cowham | Create a parameterised loop for graphs | ||
#8 | 23760 | Robert Cowham | Simple basics with Altair chart | ||
#7 | 23724 | Robert Cowham | Tweak text | ||
#6 | 23723 | Robert Cowham | First basic chart with plotly | ||
#5 | 23718 | Robert Cowham |
New statements. Time query execution |
||
#4 | 23712 | Robert Cowham | Proper formatting of table data | ||
#3 | 23711 | Robert Cowham | More or less working with multiple SQL statements | ||
#2 | 23705 | Robert Cowham | Basics working in simplified form | ||
#1 | 23704 | Robert Cowham | Save before simplifying |