Count /api/*/external/* messages as "sent" in /realm_activity.

This makes it easier to see how many messages are being sent
by webhook bots.  This assumes a 1:1 relationship between
hitting webhook endpoints and sending messages, which is probably
valid enough in the near future.

(imported from commit eb272cd38b9cabd54d317ce2dfdf12099d302fce)
This commit is contained in:
Steve Howell 2013-11-25 15:27:57 -05:00
parent cbdb7152de
commit 14ae79b311
1 changed files with 1 additions and 1 deletions

View File

@ -617,7 +617,7 @@ def get_user_activity_summary(records):
update('desktop', record)
if client == 'website':
update('website', record)
if 'send_message' in query:
if ('send_message' in query) or re.search('/api/.*/external/.*', query):
update('send', record)
if query in ['/json/update_pointer', '/api/v1/update_pointer']:
update('pointer', record)