Searched refs:json_data (Results 1 – 2 of 2) sorted by relevance
33 json_data = json.load(json_file)34 self._metrics.append(json_data)35 self._PrintJson(filename, json_data)37 def _PrintJson(self, filename, json_data): argument39 stream_names = json_data.keys()41 metrics_list = json_data.get(stream_name)
13 as input, reads the json file and adds the json object to json_data. The _PrintJson function14 takes the filename and corresponding json_data and prints out the streams as key, value pairs.