Skip to content

Commit

Permalink
fix zon url
Browse files Browse the repository at this point in the history
  • Loading branch information
yunstanford committed Jun 16, 2018
1 parent d5f525f commit 7e7ca77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/graphite/zon/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def full_path_zon_test(request):
metric_name = queryParams.get('metric', 'test.fullstack.graphite')

# 1. Send data to graphite
timestamp = time.time()
frm = int(timestamp)
timestamp = int(time.time())
frm = timestamp - (timestamp % 60) - 30
random_data = _send_random_data(metric_name, timestamp)

# 2. Wait (allow some latency)
Expand Down

0 comments on commit 7e7ca77

Please sign in to comment.