X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=python.d%2Fexample.chart.py;h=adf97a921eb93d129a2e1be5cd833d40c1679207;hb=7e5e0bcf61f2a482530695816202d83e4e508ed5;hp=a7ce064f0a1d38a81acf3c4f54e79068b24d94ba;hpb=5b80977302957d99ee40581a34c39338c7541809;p=netdata.git diff --git a/python.d/example.chart.py b/python.d/example.chart.py index a7ce064f..adf97a92 100644 --- a/python.d/example.chart.py +++ b/python.d/example.chart.py @@ -4,7 +4,7 @@ import os import random -from base import BaseService +from base import SimpleService NAME = os.path.basename(__file__).replace(".chart.py", "") @@ -14,7 +14,7 @@ priority = 90000 retries = 60 -class Service(BaseService): +class Service(SimpleService): def __init__(self, configuration=None, name=None): super(self.__class__,self).__init__(configuration=configuration, name=name)