generator/dashboards/operational_monitoring_dashboard.py [133:149]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    "metric": (
                                        summary["metric"]
                                        if metric_group is None
                                        else ", ".join(
                                            f'"{m}"'
                                            for m in metric_groups[metric_group]
                                        )
                                    ),
                                    "statistic": summary["statistic"],
                                    "explore": explore,
                                    "series_colors": series_colors,
                                    "xaxis": self.xaxis,
                                    "row": int(graph_index / 2) * 10,
                                    "col": 0 if graph_index % 2 == 0 else 12,
                                    "is_metric_group": metric_group is not None,
                                }
                            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



generator/dashboards/operational_monitoring_dashboard.py [160:176]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    "metric": (
                                        summary["metric"]
                                        if metric_group is None
                                        else ", ".join(
                                            f'"{m}"'
                                            for m in metric_groups[metric_group]
                                        )
                                    ),
                                    "statistic": summary["statistic"],
                                    "explore": explore,
                                    "series_colors": series_colors,
                                    "xaxis": self.xaxis,
                                    "row": int(graph_index / 2) * 10,
                                    "col": 0 if graph_index % 2 == 0 else 12,
                                    "is_metric_group": metric_group is not None,
                                }
                            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



