diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-09-25 14:51:16 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-09-25 14:51:16 +1300 |
commit | 53bcb5c788e6b24bf8f6f631445b61a87c5f715f (patch) | |
tree | bffd421a1e538090ba868ff981635b1b5a01da65 /debug.xml | |
parent | d8dd2091c36099e5f2e5eeb00734cad54f342cbb (diff) | |
download | trackermap-server-53bcb5c788e6b24bf8f6f631445b61a87c5f715f.tar.gz trackermap-server-53bcb5c788e6b24bf8f6f631445b61a87c5f715f.tar.bz2 trackermap-server-53bcb5c788e6b24bf8f6f631445b61a87c5f715f.zip |
Implement server statistics collection
Diffstat (limited to 'debug.xml')
-rw-r--r-- | debug.xml | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -353,6 +353,15 @@ DELETE FROM attribute_aliases WHERE id = :id; </entry> + <entry key='database.selectStatistics'> + SELECT * FROM statistics; + </entry> + + <entry key='database.insertStatistics'> + INSERT INTO statistics (captureTime, activeUsers, activeDevices, requests, messagesReceived, messagesStored, attributes) + VALUES (:captureTime, :activeUsers, :activeDevices, :requests, :messagesReceived, :messagesStored, :attributes); + </entry> + <!-- PROTOCOL CONFIG --> <entry key='gps103.port'>5001</entry> |