当前位置: 首页>>代码示例>>Python>>正文


Python UrlService.UrlService类代码示例

本文整理汇总了Python中bases.FrameworkServices.UrlService.UrlService的典型用法代码示例。如果您正苦于以下问题:Python UrlService类的具体用法?Python UrlService怎么用?Python UrlService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了UrlService类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

 def __init__(self, configuration=None, name=None):
     UrlService.__init__(self, configuration=configuration, name=name)
     self.order = ORDER
     self.definitions = CHARTS
     self.baseurl = self.configuration.get('url', 'http://localhost:5001')
     self.do_pinapi = self.configuration.get('pinapi')
     self.__storage_max = None
开发者ID:salewski,项目名称:netdata,代码行数:7,代码来源:ipfs.chart.py

示例2: __init__

 def __init__(self, configuration=None, name=None):
     UrlService.__init__(self, configuration=configuration, name=name)
     self.order = ORDER
     self.definitions = CHARTS
     self.host = self.configuration.get('host', '127.0.0.1')
     self.port = self.configuration.get('port', 15672)
     self.scheme = self.configuration.get('scheme', 'http')
开发者ID:FedericoCeratto,项目名称:netdata,代码行数:7,代码来源:rabbitmq.chart.py

示例3: __init__

 def __init__(self, configuration=None, name=None):
     UrlService.__init__(self, configuration=configuration, name=name)
     self.order = ORDER
     self.definitions = CHARTS
     pattern = self.configuration.get('regex')
     self.regex = re.compile(pattern) if pattern else None
     self.status_codes_accepted = self.configuration.get('status_accepted', [200])
     self.follow_redirect = self.configuration.get('redirect', True)
开发者ID:firehol,项目名称:netdata,代码行数:8,代码来源:httpcheck.chart.py

示例4: __init__

 def __init__(self, configuration=None, name=None):
     UrlService.__init__(self, configuration=configuration, name=name)
     self.url = self.configuration.get('url', 'http://localhost/status?full&json')
     self.order = ORDER
     self.definitions = CHARTS
     self.regex = re.compile(r'([a-z][a-z ]+): ([\d.]+)')
     self.json = '&json' in self.url or '?json' in self.url
     self.json_full = self.url.endswith(('?full&json', '?json&full'))
     self.if_all_processes_running = dict([(c_name + p_name, 0) for c_name, func in CALC
                                           for metric, p_name in PER_PROCESS_INFO])
开发者ID:FedericoCeratto,项目名称:netdata,代码行数:10,代码来源:phpfpm.chart.py

示例5: __init__

 def __init__(self, configuration=None, name=None):
     UrlService.__init__(self, configuration=configuration, name=name)
     self.order = ORDER
     self.definitions = CHARTS
     self.url = '{0}://{1}:{2}'.format(
         configuration.get('scheme', 'http'),
         configuration.get('host', '127.0.0.1'),
         configuration.get('port', 15672),
     )
     self.node_name = str()
开发者ID:firehol,项目名称:netdata,代码行数:10,代码来源:rabbitmq.chart.py

示例6: __init__

 def __init__(self, configuration=None, name=None):
     UrlService.__init__(self, configuration=configuration, name=name)
     self.order = ORDER
     self.definitions = CHARTS
     self.host = self.configuration.get('host')
     self.port = self.configuration.get('port', 9200)
     self.url = '{scheme}://{host}:{port}'.format(scheme=self.configuration.get('scheme', 'http'),
                                                  host=self.host,
                                                  port=self.port)
     self.latency = dict()
     self.methods = list()
开发者ID:Peoplecantfly,项目名称:netdata,代码行数:11,代码来源:elasticsearch.chart.py

示例7: __init__

 def __init__(self, configuration=None, name=None):
     UrlService.__init__(self, configuration=configuration, name=name)
     self.url = self.configuration.get('url', 'http://localhost:8080/health')
     self.order = ORDER
     self.definitions = CHARTS
     self.data = {
         'successful_requests': 0, 'redirects': 0, 'bad_requests': 0,
         'server_errors': 0, 'other_requests': 0, '1xx': 0, '2xx': 0,
         '3xx': 0, '4xx': 0, '5xx': 0, 'other': 0,
         'average_response_time_per_iteration_sec': 0
     }
     self.last_total_response_time = 0
     self.last_total_count = 0
开发者ID:FedericoCeratto,项目名称:netdata,代码行数:13,代码来源:traefik.chart.py

示例8: __init__

 def __init__(self, configuration=None, name=None):
     UrlService.__init__(self, configuration=configuration, name=name)
     self.order = ORDER
     self.definitions = CHARTS
     self.host = self.configuration.get('host', '127.0.0.1')
     self.port = self.configuration.get('port', 5984)
     self.node = self.configuration.get('node', '[email protected]')
     self.scheme = self.configuration.get('scheme', 'http')
     self.user = self.configuration.get('user')
     self.password = self.configuration.get('pass')
     try:
         self.dbs = self.configuration.get('databases').split(' ')
     except (KeyError, AttributeError):
         self.dbs = list()
开发者ID:lanzhiwang,项目名称:netdata,代码行数:14,代码来源:couchdb.chart.py

示例9: __init__

    def __init__(self, configuration=None, name=None):
        UrlService.__init__(self, configuration=configuration, name=name)
        # if memstats collection is enabled, add the charts and their order
        if self.configuration.get('collect_memstats'):
            self.definitions = dict(MEMSTATS_CHARTS)
            self.order = list(MEMSTATS_ORDER)
        else:
            self.definitions = dict()
            self.order = list()

        # if extra charts are defined, parse their config
        extra_charts = self.configuration.get('extra_charts')
        if extra_charts:
            self._parse_extra_charts_config(extra_charts)
开发者ID:firehol,项目名称:netdata,代码行数:14,代码来源:go_expvar.chart.py

示例10: __init__

 def __init__(self, configuration=None, name=None):
     UrlService.__init__(self, configuration=configuration, name=name)
     self.order = ORDER
     self.definitions = CHARTS
     self.host = self.configuration.get('host', '127.0.0.1')
     self.port = self.configuration.get('port', 9796)
     self.url = '{scheme}://{host}:{port}'.format(
         scheme=self.configuration.get('scheme', 'http'),
         host=self.host,
         port=self.port,
     )
     self.method = 'POST'
     self.header = {
         'Content-Type': 'application/json',
     }
开发者ID:firehol,项目名称:netdata,代码行数:15,代码来源:energid.chart.py

示例11: __init__

 def __init__(self, configuration=None, name=None):
     if 'socket' in configuration:
         SocketService.__init__(self, configuration=configuration, name=name)
         self.poll = SocketService
         self.options_ = dict(regex=REGEX['socket'],
                              stat='show stat\n'.encode(),
                              info='show info\n'.encode())
     else:
         UrlService.__init__(self, configuration=configuration, name=name)
         self.poll = UrlService
         self.options_ = dict(regex=REGEX['url'],
                              stat=self.url,
                              info=url_remove_params(self.url))
     self.order = ORDER
     self.definitions = CHARTS
开发者ID:swinsey,项目名称:netdata,代码行数:15,代码来源:haproxy.chart.py

示例12: check

    def check(self):
        # We can't start if <host> AND <port> not specified
        if not (self.host and self.port):
            self.error('Host is not defined in the module configuration file')
            return False

        # Hostname -> ip address
        try:
            self.host = gethostbyname(self.host)
        except gaierror as error:
            self.error(str(error))
            return False

        # Add handlers (auth, self signed cert accept)
        self.url = '{scheme}://{host}:{port}/api'.format(scheme=self.scheme,
                                                         host=self.host,
                                                         port=self.port)
        # Add methods
        api_node = self.url + '/nodes'
        api_overview = self.url + '/overview'
        self.methods = [METHODS(get_data=self._get_overview_stats,
                                url=api_node,
                                stats=NODE_STATS),
                        METHODS(get_data=self._get_overview_stats,
                                url=api_overview,
                                stats=OVERVIEW_STATS)]
        return UrlService.check(self)
开发者ID:FedericoCeratto,项目名称:netdata,代码行数:27,代码来源:rabbitmq.chart.py

示例13: check

    def check(self):
        if not all([self.host,
                    self.port,
                    isinstance(self.host, str),
                    isinstance(self.port, (str, int))]):
            self.error('Host is not defined in the module configuration file')
            return False

        # Hostname -> ip address
        try:
            self.host = gethostbyname(self.host)
        except gaierror as error:
            self.error(str(error))
            return False

        # Create URL for every Elasticsearch API
        self.methods = [METHODS(get_data=self._get_node_stats,
                                url=self.url + '/_nodes/_local/stats',
                                run=self.configuration.get('node_stats', True)),
                        METHODS(get_data=self._get_cluster_health,
                                url=self.url + '/_cluster/health',
                                run=self.configuration.get('cluster_health', True)),
                        METHODS(get_data=self._get_cluster_stats,
                                url=self.url + '/_cluster/stats',
                                run=self.configuration.get('cluster_stats', True))]

        # Remove disabled API calls from 'avail methods'
        return UrlService.check(self)
开发者ID:Peoplecantfly,项目名称:netdata,代码行数:28,代码来源:elasticsearch.chart.py

示例14: check

    def check(self):
        """
        Check if the module can collect data:
        1) At least one JOB configuration has to be specified
        2) The JOB configuration needs to define the URL and either collect_memstats must be enabled or at least one
           extra_chart must be defined.

        The configuration and URL check is provided by the UrlService class.
        """

        if not (self.configuration.get('extra_charts') or self.configuration.get('collect_memstats')):
            self.error('Memstats collection is disabled and no extra_charts are defined, disabling module.')
            return False

        return UrlService.check(self)
开发者ID:firehol,项目名称:netdata,代码行数:15,代码来源:go_expvar.chart.py

示例15: check

 def check(self):
     if not (self.host and self.port):
         self.error('Host is not defined in the module configuration file')
         return False
     try:
         self.host = gethostbyname(self.host)
     except gaierror as error:
         self.error(str(error))
         return False
     self.url = '{scheme}://{host}:{port}'.format(scheme=self.scheme,
                                                  host=self.host,
                                                  port=self.port)
     stats = self.url + '/_node/{node}/_stats'.format(node=self.node)
     active_tasks = self.url + '/_active_tasks'
     system = self.url + '/_node/{node}/_system'.format(node=self.node)
     self.methods = [METHODS(get_data=self._get_overview_stats,
                             url=stats,
                             stats=OVERVIEW_STATS),
                     METHODS(get_data=self._get_active_tasks_stats,
                             url=active_tasks,
                             stats=None),
                     METHODS(get_data=self._get_overview_stats,
                             url=system,
                             stats=SYSTEM_STATS),
                     METHODS(get_data=self._get_dbs_stats,
                             url=self.url,
                             stats=DB_STATS)]
     # must initialise manager before using _get_raw_data
     self._manager = self._build_manager()
     self.dbs = [db for db in self.dbs
                 if self._get_raw_data(self.url + '/' + db)]
     for db in self.dbs:
         self.definitions['db_sizes_file']['lines'].append(
             ['db_'+db+'_sizes_file', db, 'absolute', 1, 1000]
         )
         self.definitions['db_sizes_external']['lines'].append(
             ['db_'+db+'_sizes_external', db, 'absolute', 1, 1000]
         )
         self.definitions['db_sizes_active']['lines'].append(
             ['db_'+db+'_sizes_active', db, 'absolute', 1, 1000]
         )
         self.definitions['db_doc_counts']['lines'].append(
             ['db_'+db+'_doc_count', db, 'absolute']
         )
         self.definitions['db_doc_del_counts']['lines'].append(
             ['db_'+db+'_doc_del_count', db, 'absolute']
         )
     return UrlService.check(self)
开发者ID:lanzhiwang,项目名称:netdata,代码行数:48,代码来源:couchdb.chart.py


注:本文中的bases.FrameworkServices.UrlService.UrlService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。