Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
6de25bf5
Commit
6de25bf5
authored
11 years ago
by
Carlos Andrés Rocha
Browse files
Options
Downloads
Patches
Plain Diff
Monitor event tracking time by backend using statsd
parent
fbc243db
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/djangoapps/track/tracker.py
+7
-2
7 additions, 2 deletions
common/djangoapps/track/tracker.py
with
7 additions
and
2 deletions
common/djangoapps/track/tracker.py
+
7
−
2
View file @
6de25bf5
...
...
@@ -21,6 +21,8 @@ below::
import
inspect
from
importlib
import
import_module
from
dogapi
import
dog_stats_api
from
django.conf
import
settings
from
track.backends
import
BaseBackend
...
...
@@ -81,14 +83,17 @@ def _instantiate_backend_from_name(name, options):
return
backend
@dog_stats_api.timed
(
'
track.send
'
)
def
send
(
event
):
"""
Send an event object to all the initialized backends.
"""
for
backend
in
backends
.
itervalues
():
backend
.
send
(
event
)
dog_stats_api
.
increment
(
'
track.send.count
'
)
for
name
,
backend
in
backends
.
iteritems
():
with
dog_stats_api
.
timer
(
'
track.send.backend.{0}
'
.
format
(
name
)):
backend
.
send
(
event
)
_initialize_backends_from_django_settings
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment