blob: 959c4afe1312fdebe7ba0d6b906ece4fe44f1d3b [file] [log] [blame]
#!/usr/bin/env python
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Functions for adding results to perf dashboard.
NOTE: This file is deprecated and no longer maintained by the
perf team after crbug.com/757933. Please use src side
script src/tools/perf/core/results_dashboard.py instead.
"""
import calendar
import datetime
import httplib
import httplib2
import json
import os
import subprocess
import sys
import traceback
import urllib
import urllib2
import zlib
# The paths in the results dashboard URLs for sending and viewing results.
SEND_RESULTS_PATH = '/add_point'
SEND_HISTOGRAMS_PATH = '/add_histograms'
RESULTS_LINK_PATH = '/report?masters=%s&bots=%s&tests=%s&rev=%s'
# CACHE_DIR/CACHE_FILENAME will be created in options.build_dir to cache
# results which need to be retried.
CACHE_DIR = 'results_dashboard'
CACHE_FILENAME = 'results_to_retry'
ERROR_NO_OAUTH_TOKEN = (
'No oauth token provided, cannot upload HistogramSet. Discarding.')
class SendResultException(Exception):
pass
class SendResultsRetryException(SendResultException):
pass
class SendResultsFatalException(SendResultException):
pass
def LuciAuthTokenGeneratorCallback(service_account_file):
args = ['luci-auth', 'token']
if service_account_file:
args += ['-service-account-json', service_account_file]
else:
print ('service_account_file is not set. '
'Use LUCI swarming task service account')
p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if p.wait() == 0:
return p.stdout.read()
else:
raise RuntimeError(
'Error generating authentication token.\nStdout: %s\nStder:%s' %
(p.stdout.read(), p.stderr.read()))
def SendResults(data, url, build_dir, json_url_file=None,
send_as_histograms=False, oauth_token=None):
"""Sends results to the Chrome Performance Dashboard.
This function tries to send the given data to the dashboard, in addition to
any data from the cache file. The cache file contains any data that wasn't
successfully sent in a previous run.
Args:
data: The data to try to send. Must be JSON-serializable.
url: Performance Dashboard URL (including schema).
build_dir: Directory name, where the cache directory shall be.
json_url_file: Optional file to which to write the dashboard viewing URL.
send_as_histograms: True if result is to be sent to /add_histograms.
oauth_token: string; used for flushing oauth uploads from cache.
"""
results_json = json.dumps({
'is_histogramset': send_as_histograms,
'data': data
})
# Write the new request line to the cache file, which contains all lines
# that we shall try to send now.
cache_file_name = _GetCacheFileName(build_dir)
_AddLineToCacheFile(results_json, cache_file_name)
# Send all the results from this run and the previous cache to the dashboard.
fatal_error, errors = _SendResultsFromCache(cache_file_name, url, oauth_token)
if json_url_file:
# Dump dashboard url to file.
dashboard_url = _DashboardUrl(url, data)
with open(json_url_file, 'w') as f:
json.dump(dashboard_url if dashboard_url else '', f)
# Print any errors; if there was a fatal error, it should be an exception.
for error in errors:
print error
if fatal_error:
return False
return True
def _GetCacheFileName(build_dir):
"""Gets the cache filename, creating the file if it does not exist."""
cache_dir = os.path.join(os.path.abspath(build_dir), CACHE_DIR)
if not os.path.exists(cache_dir):
os.makedirs(cache_dir)
cache_filename = os.path.join(cache_dir, CACHE_FILENAME)
if not os.path.exists(cache_filename):
# Create the file.
open(cache_filename, 'wb').close()
return cache_filename
def _AddLineToCacheFile(line, cache_file_name):
"""Appends a line to the given file."""
with open(cache_file_name, 'ab') as cache:
cache.write('\n' + line)
def _SendResultsFromCache(cache_file_name, url, oauth_token):
"""Tries to send each line from the cache file in a separate request.
This also writes data which failed to send back to the cache file.
Args:
cache_file_name: A file name.
url: The instance URL to which to post results.
oauth_token: An oauth token to use for histogram uploads. Might be None.
Returns:
A pair (fatal_error, errors), where fatal_error is a boolean indicating
whether there there was a major error and the step should fail, and errors
is a list of error strings.
"""
with open(cache_file_name, 'rb') as cache:
cache_lines = cache.readlines()
total_results = len(cache_lines)
fatal_error = False
errors = []
lines_to_retry = []
for index, line in enumerate(cache_lines):
line = line.strip()
if not line:
continue
print 'Sending result %d of %d to dashboard.' % (index + 1, total_results)
# We need to check whether we're trying to upload histograms. If the JSON
# is invalid, we should not try to send this data or re-try it later.
# Instead, we'll print an error.
try:
is_histogramset, data = _GetData(line)
except ValueError:
errors.append('Could not parse JSON: %s' % line)
continue
data_type = ('histogram' if is_histogramset else 'chartjson')
try:
if is_histogramset:
# TODO(eakuefner): Remove this discard logic once all bots use
# histograms.
if oauth_token is None:
oauth_token = LuciAuthTokenGeneratorCallback(None)
_SendHistogramJson(url, json.dumps(data), oauth_token)
else:
_SendResultsJson(url, json.dumps(data))
except SendResultsRetryException as e:
error = 'Error while uploading %s data: %s' % (data_type, str(e))
if index != len(cache_lines) - 1:
# The very last item in the cache_lines list is the new results line.
# If this line is not the new results line, then this results line
# has already been tried before; now it's considered fatal.
fatal_error = True
# The lines to retry are all lines starting from the current one.
lines_to_retry = [l.strip() for l in cache_lines[index:] if l.strip()]
errors.append(error)
break
except SendResultsFatalException as e:
error = 'Error uploading %s data: %s' % (data_type, str(e))
errors.append(error)
fatal_error = True
break
except Exception:
error = 'Unexpected error while uploading %s data: %s' % (
data_type, traceback.format_exc())
errors.append(error)
fatal_error = True
break
# Write any failing requests to the cache file.
cache = open(cache_file_name, 'wb')
cache.write('\n'.join(set(lines_to_retry)))
cache.close()
return fatal_error, errors
def _GetData(line):
line_dict = json.loads(line)
return bool(line_dict.get('is_histogramset')), line_dict['data']
def MakeHistogramSetWithDiagnostics(histograms_file, chromium_checkout_path,
test_name, bot, buildername, buildnumber,
revisions_dict, is_reference_build,
perf_dashboard_machine_group):
add_diagnostics_args = []
add_diagnostics_args.extend([
'--benchmarks', test_name,
'--bots', bot,
'--builds', buildnumber,
'--masters', perf_dashboard_machine_group,
'--is_reference_build', 'true' if is_reference_build else '',
])
url = _MakeStdioUrl(test_name, buildername, buildnumber)
if url:
add_diagnostics_args.extend(['--log_urls_k', 'Buildbot stdio'])
add_diagnostics_args.extend(['--log_urls_v', url])
for k, v in revisions_dict.iteritems():
add_diagnostics_args.extend((k, v))
add_diagnostics_args.append(histograms_file)
# Subprocess only accepts string args
add_diagnostics_args = [str(v) for v in add_diagnostics_args]
add_reserved_diagnostics_path = os.path.join(
chromium_checkout_path, 'src', 'third_party', 'catapult', 'tracing',
'bin', 'add_reserved_diagnostics')
cmd = [sys.executable, add_reserved_diagnostics_path] + add_diagnostics_args
subprocess.call(cmd)
# TODO: Handle reference builds
with open(histograms_file) as f:
hs = json.load(f)
return hs
def MakeListOfPoints(charts, bot, test_name, buildername,
buildnumber, supplemental_columns,
perf_dashboard_machine_group,
revisions_dict=None):
"""Constructs a list of point dictionaries to send.
The format output by this function is the original format for sending data
to the perf dashboard.
Args:
charts: A dictionary of chart names to chart data, as generated by the
log processor classes (see process_log_utils.GraphingLogProcessor).
bot: A string which comes from perf_id, e.g. linux-release.
test_name: A test suite name, e.g. sunspider.
buildername: Builder name (for stdio links).
buildnumber: Build number (for stdio links).
supplemental_columns: A dictionary of extra data to send with a point.
perf_dashboard_machine_group: Builder's perf machine group.
Returns:
A list of dictionaries in the format accepted by the perf dashboard.
Each dictionary has the keys "master", "bot", "test", "value", "revision".
The full details of this format are described at http://goo.gl/TcJliv.
"""
results = []
for chart_name, chart_data in sorted(charts.items()):
point_id, revision_columns = _RevisionNumberColumns(
revisions_dict if revisions_dict is not None else chart_data, prefix='r_')
for trace_name, trace_values in sorted(chart_data['traces'].items()):
is_important = trace_name in chart_data.get('important', [])
test_path = _TestPath(test_name, chart_name, trace_name)
result = {
'master': perf_dashboard_machine_group,
'bot': bot,
'test': test_path,
'revision': point_id,
'supplemental_columns': {}
}
# Add the supplemental_columns values that were passed in after the
# calculated revision column values so that these can be overwritten.
result['supplemental_columns'].update(revision_columns)
result['supplemental_columns'].update(
_GetStdioUriColumn(test_name, buildername, buildnumber))
result['supplemental_columns'].update(supplemental_columns)
result['value'] = trace_values[0]
result['error'] = trace_values[1]
# Add other properties to this result dictionary if available.
if chart_data.get('units'):
result['units'] = chart_data['units']
if is_important:
result['important'] = True
results.append(result)
return results
def MakeDashboardJsonV1(chart_json, revision_dict, test_name, bot, buildername,
buildnumber, supplemental_dict, is_ref,
perf_dashboard_machine_group):
"""Generates Dashboard JSON in the new Telemetry format.
See http://goo.gl/mDZHPl for more info on the format.
Args:
chart_json: A dict containing the telmetry output.
revision_dict: Dictionary of revisions to include, include "rev",
which determines the point ID.
test_name: A test suite name, e.g. sunspider.
bot: A string which comes from perf_id, e.g. linux-release.
buildername: Builder name (for stdio links).
buildnumber: Build number (for stdio links).
supplemental_dict: A dictionary of extra data to send with a point;
this includes revisions and annotation data.
is_ref: True if this is a reference build, False otherwise.
perf_dashboard_machine_group: Builder's perf machine group.
Returns:
A dictionary in the format accepted by the perf dashboard.
"""
if not chart_json:
print 'Error: No json output from telemetry.'
print '@@@STEP_FAILURE@@@'
point_id, versions = _RevisionNumberColumns(revision_dict, prefix='')
supplemental = {}
for key in supplemental_dict:
if key.startswith('r_'):
versions[key.replace('r_', '', 1)] = supplemental_dict[key]
if key.startswith('a_'):
supplemental[key.replace('a_', '', 1)] = supplemental_dict[key]
supplemental.update(
_GetStdioUriColumn(test_name, buildername, buildnumber))
# TODO(sullivan): The android recipe sends "test_name.reference"
# while the desktop one just sends "test_name" for ref builds. Need
# to figure out why.
# https://github.com/catapult-project/catapult/issues/2046
test_name = test_name.replace('.reference', '')
fields = {
'master': perf_dashboard_machine_group,
'bot': bot,
'test_suite_name': test_name,
'point_id': point_id,
'supplemental': supplemental,
'versions': versions,
'chart_data': chart_json,
'is_ref': is_ref,
}
return fields
def _MakeStdioUrl(test_name, buildername, buildnumber):
"""Returns a string url pointing to buildbot stdio log."""
# TODO(780914): Link to logdog instead of buildbot.
if not buildername or not buildnumber:
return ''
return '%sbuilders/%s/builds/%s/steps/%s/logs/stdio' % (
_GetBuildBotUrl(),
urllib.quote(buildername),
urllib.quote(str(buildnumber)),
urllib.quote(test_name))
def _GetStdioUriColumn(test_name, buildername, buildnumber):
"""Gets a supplemental column containing buildbot stdio link."""
url = _MakeStdioUrl(test_name, buildername, buildnumber)
if not url:
return {}
return _CreateLinkColumn('stdio_uri', 'Buildbot stdio', url)
def _CreateLinkColumn(name, label, url):
"""Returns a column containing markdown link to show on dashboard."""
return {'a_' + name: '[%s](%s)' % (label, url)}
def _GetBuildBotUrl():
"""Gets the buildbot URL which contains hostname and master name."""
return os.environ.get('BUILDBOT_BUILDBOTURL',
'http://build.chromium.org/p/chromium/')
def _GetTimestamp():
"""Get the Unix timestamp for the current time."""
return int(calendar.timegm(datetime.datetime.utcnow().utctimetuple()))
def _RevisionNumberColumns(data, prefix):
"""Get the point id and revision-related columns from the given data.
Args:
data: A dict of information from one line of the log file.
master: The name of the buildbot master.
prefix: Prefix for revision type keys. 'r_' for non-telemetry json, '' for
telemetry json.
Returns:
A tuple with the point id (which must be an int), and a dict of
revision-related columns.
"""
revision_supplemental_columns = {}
# The dashboard requires points' x-values to be integers, and points are
# ordered by these x-values. If data['rev'] can't be parsed as an int, assume
# that it's a git commit hash and use timestamp as the x-value.
try:
revision = int(data['rev'])
if revision and revision > 300000 and revision < 1000000:
# Revision is the commit pos.
# TODO(sullivan,qyearsley): use got_revision_cp when available.
revision_supplemental_columns[prefix + 'commit_pos'] = revision
except ValueError:
# The dashboard requires ordered integer revision numbers. If the revision
# is not an integer, assume it's a git hash and send a timestamp.
revision = _GetTimestamp()
revision_supplemental_columns[prefix + 'chromium'] = data['rev']
# An explicit data['point_id'] overrides the default behavior.
if 'point_id' in data:
revision = int(data['point_id'])
# For other revision data, add it if it's present and not undefined:
for key in ['webrtc_git', 'v8_rev']:
if key in data and data[key] != 'undefined':
revision_supplemental_columns[prefix + key] = data[key]
# If possible, also send the git hash.
if 'git_revision' in data and data['git_revision'] != 'undefined':
revision_supplemental_columns[prefix + 'chromium'] = data['git_revision']
return revision, revision_supplemental_columns
def _TestPath(test_name, chart_name, trace_name):
"""Get the slash-separated test path to send.
Args:
test: Test name. Typically, this will be a top-level 'test suite' name.
chart_name: Name of a chart where multiple trace lines are grouped. If the
chart name is the same as the trace name, that signifies that this is
the main trace for the chart.
trace_name: The "trace name" is the name of an individual line on chart.
Returns:
A slash-separated list of names that corresponds to the hierarchy of test
data in the Chrome Performance Dashboard; doesn't include master or bot
name.
"""
# For tests run on reference builds by builds/scripts/slave/telemetry.py,
# "_ref" is appended to the trace name. On the dashboard, as long as the
# result is on the right chart, it can just be called "ref".
if trace_name == chart_name + '_ref':
trace_name = 'ref'
chart_name = chart_name.replace('_by_url', '')
# No slashes are allowed in the trace name.
trace_name = trace_name.replace('/', '_')
# The results for "test/chart" and "test/chart/*" will all be shown on the
# same chart by the dashboard. The result with path "test/path" is considered
# the main trace for the chart.
test_path = '%s/%s/%s' % (test_name, chart_name, trace_name)
if chart_name == trace_name:
test_path = '%s/%s' % (test_name, chart_name)
return test_path
def _SendResultsJson(url, results_json):
"""Make a HTTP POST with the given JSON to the Performance Dashboard.
Args:
url: URL of Performance Dashboard instance, e.g.
"https://chromeperf.appspot.com".
results_json: JSON string that contains the data to be sent.
Returns:
None if successful, or an error string if there were errors.
"""
# When data is provided to urllib2.Request, a POST is sent instead of GET.
# The data must be in the application/x-www-form-urlencoded format.
data = urllib.urlencode({'data': results_json})
req = urllib2.Request(url + SEND_RESULTS_PATH, data)
try:
urllib2.urlopen(req)
except (urllib2.HTTPError, urllib2.URLError, httplib.HTTPException):
error = traceback.format_exc()
if 'HTTPError: 400' in error or 'HTTP Error 400' in error:
# If the remote app rejects the JSON, it's probably malformed,
# so we don't want to retry it.
raise SendResultsFatalException('Discarding JSON, error:\n%s' % error)
raise SendResultsRetryException(error)
def _Httplib2Request(url, data, oauth_token):
data = zlib.compress(data)
headers = {
'Authorization': 'Bearer %s' % oauth_token,
'User-Agent': 'perf-uploader/1.0'
}
http = httplib2.Http()
return http.request(
url + SEND_HISTOGRAMS_PATH, method='POST', body=data, headers=headers)
def _SendHistogramJson(url, histogramset_json, oauth_token):
"""POST a HistogramSet JSON to the Performance Dashboard.
Args:
url: URL of Performance Dashboard instance, e.g.
"https://chromeperf.appspot.com".
histogramset_json: JSON string that contains a serialized HistogramSet.
oauth_token: An oauth token to be used for this upload.
Returns:
None if successful, or an error string if there were errors.
"""
try:
response, _ = _Httplib2Request(url, histogramset_json, oauth_token)
# A 500 is presented on an exception on the dashboard side, timeout,
# exception, etc. The dashboard can also send back 400 and 403, we could
# recover from 403 (auth error), but 400 is generally malformed data.
if response.status == 403:
raise SendResultsRetryException(traceback.format_exc())
if response.status != 200:
raise SendResultsFatalException('HTTP Response %d: %s' % (
response.status, response.reason))
except httplib2.HttpLib2Error:
raise SendResultsRetryException(traceback.format_exc())
def _DashboardUrl(url, data):
"""Returns link to the dashboard if possible.
Args:
url: The Performance Dashboard URL, e.g. "https://chromeperf.appspot.com"
data: The data that's being sent to the dashboard.
Returns:
An annotation to print, or None.
"""
if not data:
return None
if isinstance(data, list):
master, bot, test, revision = (
data[0]['master'], data[0]['bot'], data[0]['test'], data[0]['revision'])
else:
master, bot, test, revision = (
data['master'], data['bot'], data['chart_data']['benchmark_name'],
data['point_id'])
results_link = url + RESULTS_LINK_PATH % (
urllib.quote(master), urllib.quote(bot), urllib.quote(test.split('/')[0]),
revision)
return results_link