for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# -*- coding: utf-8 -*-
#
# This file is part of Glances.
# SPDX-FileCopyrightText: 2022 Nicolas Hennion <[email protected]>
# SPDX-License-Identifier: LGPL-3.0-only
"""Stdout interface class."""
import time
from glances.logger import logger
from glances.compat import printandflush
class GlancesStdoutJson(object):
"""This class manages the Stdout JSON display."""
def __init__(self, config=None, args=None):
# Init
self.config = config
self.args = args
# Build the list of plugin to display
self.plugins_list = self.build_list()
def build_list(self):
"""Return a list of tuples taken from self.args.stdout_json
:return: A list of tuples. Example -[(plugin, attribute), ... ]
"""
return self.args.stdout_json.split(',')
def end(self):
pass
def update(self, stats, duration=3):
"""Display stats in JSON format to stdout.
Refresh every duration second.
for plugin in self.plugins_list:
# Check if the plugin exist and is enable
if plugin in stats.getPluginsList() and stats.get_plugin(plugin).is_enabled():
stat = stats.get_plugin(plugin).get_json()
else:
continue
# Display stats
printandflush('{}: {}'.format(plugin, stat))
# Wait until next refresh
if duration > 0:
time.sleep(duration)