Skip to content

Commit

Permalink
Merge branch 'develop' into feature/feature/ZEN-26894-fix-production-…
Browse files Browse the repository at this point in the history
…state-sort-error
  • Loading branch information
jonathan borden committed Mar 16, 2017
2 parents 5d2e55f + 0d7725f commit 35a37bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Products/Zuul/infos/metricserver.py
Expand Up @@ -75,7 +75,7 @@ def contextTitle(self):
"""
For the reports we need the context in the title.
"""
title = self._context.device().deviceClass().getOrganizerName() + "/" + self._context.device().titleOrId()
title = self._context.device().deviceClass().getOrganizerName() + " - " + self._context.device().titleOrId()
if isinstance(self._context, DeviceComponent):
title = "%s - %s" %(title, self._context.titleOrId())
return "%s - %s" % (self.titleGroup, title)
Expand Down Expand Up @@ -395,7 +395,7 @@ class OSProcessMetricServiceGraphDefinition(MetricServiceGraphDefinition):

@property
def contextTitle(self):
return "{graphTitle} - {organizerName}/{deviceTitle} - {componentTitle}".format(
return "{graphTitle} - {organizerName} - {deviceTitle} - {componentTitle}".format(
graphTitle=self._object.titleOrId(),
organizerName=self._context.device().deviceClass().getOrganizerName(),
deviceTitle=self._context.device().titleOrId(),
Expand Down

0 comments on commit 35a37bb

Please sign in to comment.