ÿØÿà JFIF ` ` ÿþ
|
Server : Apache System : Linux cloud.heroica.com.br 4.18.0-553.36.1.el8_10.x86_64 #1 SMP Wed Jan 22 03:07:54 EST 2025 x86_64 User : farolpborg ( 1053) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /lib/python3.6/site-packages/glances/outputs/ |
Upload File : |
# -*- coding: utf-8 -*-
#
# This file is part of Glances.
#
# SPDX-FileCopyrightText: 2022 Nicolas Hennion <nicolas@nicolargo.com>
#
# SPDX-License-Identifier: LGPL-3.0-only
#
"""Stdout interface class."""
import time
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)