Lines Matching full:topic
45 'name', 'topic', 'desc',
323 self.topic = ''
437 def read_json_events(path: str, topic: str) -> Sequence[JsonEvent]:
446 event.topic = topic
464 for event in read_json_events(item.path, topic=''):
471 def add_events_table_entries(item: os.DirEntry, topic: str) -> None:
473 for e in read_json_events(item.path, topic):
489 … return (fix_none(j.pmu).replace(',','_'), fix_none(j.name), j.desc is not None, fix_none(j.topic),
595 def get_topic(topic: str) -> str:
596 if topic.endswith('metrics.json'):
598 return removesuffix(topic, '.json').replace('-', ' ')
626 topic = get_topic(item.name)
627 for event in read_json_events(item.path, topic):