diff --git a/web/plugins/metrics/traceroute.py b/web/plugins/metrics/traceroute.py
deleted file mode 100644
index 1558c4e8b627f9fb11922c6c74174adb5d13081a..0000000000000000000000000000000000000000
--- a/web/plugins/metrics/traceroute.py
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env python3
-# -*- coding: utf-8 -*-
-#
-# License: GNU General Public License v2
-#
-# Author: thl-cmk[at]outlook[dot]com
-# URL   : https://thl-cmk.hopto.org
-# Date  : 2021-12-04
-#
-
-from cmk.gui.i18n import _
-
-from cmk.gui.plugins.metrics import (
-    metric_info,
-    perfometer_info
-
-)
-
-metric_info['hops'] = {
-    'title': _('Number of hops'),
-    'unit': 'count',
-    'color': '41/a',
-}
-
-perfometer_info.append({
-    'type': 'linear',
-    'segments': ['hops'],
-    'total': 30,
-})