Commit 51e587f8 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Added database query stats (JM-797).

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@4818 b35dd754-fafc-0310-a699-88a17e54d16e
parent fb17cf39
......@@ -919,6 +919,34 @@ server.db.multiple_connect2=open at once:
server.db.read_only_mode=In read-only mode:
server.db_stats.title=Database Query Statistics
server.db_stats.description=Enable database query statistics to trace all database queries made. \
This can be useful to debug issues and monitor database performance. However, it's \
not recommended that you leave query statistics permanently running, as they will cause \
performance to degrade slightly.
server.db_stats.status=Query Statistics Status
server.db_stats.enabled=Enabled
server.db_stats.disabled=Disabled
server.db_stats.update=Update
server.db_stats.refresh=Refresh
server.db_stats.none=none
server.db_stats.settings=Query Statistics Settings
server.db_stats.seconds=seconds
server.db_stats.set=Set
server.db_stats.clear_stats=Clear All Stats
server.db_stats.select_stats=SELECT Query Statistics
server.db_stats.insert_stats=INSERT Query Statistics
server.db_stats.update_stats=UPDATE Query Statistics
server.db_stats.delete_stats=DELETE Query Statistics
server.db_stats.operations=Total # of operations
server.db_stats.total_time=Total time for all operations (ms)
server.db_stats.avg_rate=Average time for each operation (ms)
server.db_stats.total_rate=Operations per second
server.db_stats.queries=Most common SQL queries
server.db_stats.query=Query
server.db_stats.count=Count
server.db_stats.time=Total Time
server.db_stats.average_time=Avg. Time
server.db_stats.no_queries=No queries
# Server properties Page
......
This diff is collapsed.
......@@ -151,6 +151,15 @@
catch (SQLException e) { Log.error(e); }
}
%>
<br/><br/>
<table border="0">
<tr>
<td valign="center">
<a href="server-db-stats.jsp"><img src="images/arrow_right_blue.gif" width="24" height="24" border="0" alt="<fmt:message key="server.db_stats.title" />" /></a>
</td>
<td valign="center"><a href="server-db-stats.jsp"><fmt:message key="server.db_stats.title" /></a></td>
</tr>
</table>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment