fix: missing orderby in query on the nvd3 timeseries chart (#15343)

This commit is contained in:
Yongjie Zhao
2021-06-24 09:01:38 +01:00
committed by GitHub
parent b3cdff4995
commit fae4531f1e
2 changed files with 10 additions and 3 deletions

View File

@@ -1269,6 +1269,11 @@ def get_metric_names(metrics: Sequence[Metric]) -> List[str]:
return [get_metric_name(metric) for metric in metrics]
def get_main_metric_name(metrics: Sequence[Metric]) -> Optional[str]:
metric_labels = get_metric_names(metrics)
return metric_labels[0] if metric_labels else None
def ensure_path_exists(path: str) -> None:
try:
os.makedirs(path)