]> arthur.barton.de Git - netdata.git/blobdiff - python.d/tomcat.chart.py
Merge pull request #1998 from ktsaou/master
[netdata.git] / python.d / tomcat.chart.py
index 154e4e4ba69ca8ea766c861eabc9a1491ce3a025..c20f85e1ecd2818a6b87386e1f2e8d1c368f7591 100644 (file)
@@ -51,10 +51,6 @@ class Service(UrlService):
         self.definitions = CHARTS
 
     def check(self):
-        if not self.url.endswith('manager/status?XML=true'):
-            self.error('Bad url(%s). Must be http://<ip.address>:<port>/manager/status?XML=true' % self.url)
-            return False
-
         netloc = urlparse(self.url).netloc.rpartition(':')
         if netloc[1] == ':': port = netloc[2]
         else: port = 80