diff options
author | Tibor Frank <tifrank@cisco.com> | 2022-04-25 16:55:01 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2022-04-26 08:49:11 +0000 |
commit | c01befc28450d5c2003d25876dda0201eb827735 (patch) | |
tree | 4bd0eacbe76c605b8950e7b001ef296bbeca277a /resources/tools/dash/app/pal/trending/graphs.py | |
parent | 76def9e0a3404b38c9e7fbd58260700207b17639 (diff) |
feat(uti): Add statistics
Change-Id: I14046fd1050f130d201bbe81a72e48ad4fd10057
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/dash/app/pal/trending/graphs.py')
-rw-r--r-- | resources/tools/dash/app/pal/trending/graphs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/dash/app/pal/trending/graphs.py b/resources/tools/dash/app/pal/trending/graphs.py index 7089e2c080..16cb5a2cb3 100644 --- a/resources/tools/dash/app/pal/trending/graphs.py +++ b/resources/tools/dash/app/pal/trending/graphs.py @@ -165,7 +165,7 @@ def select_trending_data(data: pd.DataFrame, itm:dict) -> pd.DataFrame: phy = itm["phy"].split("-") if len(phy) == 4: topo, arch, nic, drv = phy - if drv in ("dpdk", "ixgbe"): + if drv == "dpdk": drv = "" else: drv += "-" |