onionr/src/onionrstatistics/serializeddata.py

57 lines
1.8 KiB
Python
Raw Normal View History

"""Onionr - Private P2P Communication.
2019-02-02 03:49:11 +00:00
Serialize various node information
"""
import json
from gevent import sleep
from psutil import Process
from coredb import blockmetadb
import communicator
"""
2019-02-02 03:49:11 +00:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
2019-02-02 03:49:11 +00:00
class SerializedData:
2019-08-04 04:52:57 +00:00
def __init__(self):
"""
2019-02-02 03:49:11 +00:00
Serialized data is in JSON format:
{
'success': bool,
'foo': 'bar',
etc
}
"""
2019-09-14 06:29:31 +00:00
def get_stats(self):
"""Return statistics about our node"""
2019-02-02 03:49:11 +00:00
stats = {}
proc = Process()
2019-08-05 05:25:27 +00:00
try:
self._too_many
except AttributeError:
sleep(1)
2019-08-05 05:25:27 +00:00
comm_inst = self._too_many.get(communicator.OnionrCommunicatorDaemon, args=(self._too_many,))
2019-10-11 09:28:43 +00:00
connected = []
[connected.append(x) for x in comm_inst.onlinePeers if x not in connected]
2019-08-04 04:52:57 +00:00
stats['uptime'] = comm_inst.getUptime()
2019-10-11 09:28:43 +00:00
stats['connectedNodes'] = '\n'.join(connected)
stats['blockCount'] = len(blockmetadb.get_block_list())
2019-08-04 04:52:57 +00:00
stats['blockQueueCount'] = len(comm_inst.blockQueue)
stats['threads'] = proc.num_threads()
2020-03-20 23:39:26 +00:00
stats['ramPercent'] = proc.memory_percent()
2019-02-02 03:49:11 +00:00
return json.dumps(stats)