1

我正在尝试在 python 中使用 kafka 主题并使用 prometheus 客户端通过 http 提供服务,但我似乎在主题消费上被阻止了。我放置了一些占位符来简单地添加指标,但看起来那部分被阻止了。

import os
from pykafka import KafkaClient
import threading
from kafka import KafkaConsumer
from prometheus_client import start_http_server, Metric, REGISTRY

class CustomCollector(threading.Thread):
    daemon = True

    def collect(self):
        client = KafkaClient(hosts=os.environ['KAFKA_ADDRESS'])
        topic = client.topics[b'os.environ['KAFKA_TOPIC']
        consumer = topic.get_simple_consumer()
        for message in consumer:
            if message is not None:
                print(message.value)

        metric = Metric('test_name', 'description', 'summary')
        metric.add_sample('test_name', 'description', 'summary')
        yield metric

if __name__ == '__main__':
    start_http_server(9998)
    REGISTRY.register(CustomCollector())
    while True: time.sleep(1)

如果我运行代码,我会看到主题数据按预期流式传输到控制台。但是,我的度量端点永远不会被填充,并且对 Web 服务器的任何请求都会挂起,直到我终止应用程序,它会使用库中的标准度量来响应该应用程序。

4

1 回答 1

1

Metric每个消费的消息都应该构造一个实例。也就是说,Metric()调用应该在for message in consumer循环内部。此外,您可能希望message.value在创建Metric实例时以某种方式使用。

于 2018-06-05T21:55:39.220 回答