From 4568a4f53cc8ff9c5ad2c1d94ae91602a11f19ff Mon Sep 17 00:00:00 2001 From: "avi@robusta.dev" Date: Tue, 4 Feb 2025 11:08:56 +0200 Subject: [PATCH] remove nls --- holmes/plugins/toolsets/newrelic.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/holmes/plugins/toolsets/newrelic.py b/holmes/plugins/toolsets/newrelic.py index c1732f19..40b9107c 100644 --- a/holmes/plugins/toolsets/newrelic.py +++ b/holmes/plugins/toolsets/newrelic.py @@ -69,8 +69,6 @@ def invoke(self, params: Any) -> str: def get_parameterized_one_liner(self, params) -> str: return f"newrelic GetLogs(app='{params.get('app')}', since='{params.get('since')}')" - - class GetTraces(BaseNewRelicTool): def __init__(self, toolset: "NewRelicToolset"): super().__init__( @@ -133,7 +131,6 @@ def get_parameterized_one_liner(self, params) -> str: return f"newrelic GetTraces(trace_id='{params.get('trace_id')}')" return f"newrelic GetTraces(duration={params.get('duration')})" - class NewrelicConfig(BaseModel): nr_api_key: Optional[str] = None nr_account_id: Optional[str] = None