From 93e20c6f77e12cd9dd340421c26732eaee01cbc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20G=C3=A9czi?= Date: Mon, 21 Feb 2022 00:00:00 +0000 Subject: [PATCH 1/2] fix(doc): Fix host collector docstring --- instana/collector/host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instana/collector/host.py b/instana/collector/host.py index 97c08ead..38c0c44b 100644 --- a/instana/collector/host.py +++ b/instana/collector/host.py @@ -12,7 +12,7 @@ class HostCollector(BaseCollector): - """ Collector for AWS Fargate """ + """ Collector for Host """ def __init__(self, agent): super(HostCollector, self).__init__(agent) logger.debug("Loading Host Collector") From 8fd7283030ef4bfd15f68e13a4c303509909eeb9 Mon Sep 17 00:00:00 2001 From: Ferenc- Date: Tue, 22 Feb 2022 11:01:56 +0100 Subject: [PATCH 2/2] fix(doc): Clarify the description in docstring Co-authored-by: Andrey Slotin --- instana/collector/host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instana/collector/host.py b/instana/collector/host.py index 38c0c44b..2ec2bd8b 100644 --- a/instana/collector/host.py +++ b/instana/collector/host.py @@ -12,7 +12,7 @@ class HostCollector(BaseCollector): - """ Collector for Host """ + """ Collector for host agent """ def __init__(self, agent): super(HostCollector, self).__init__(agent) logger.debug("Loading Host Collector")