Conky Interface
I am investigating a way to access remotely statistics about a linux server, the kind of information that conky would display. Is there a way to interface with conky and obtain th
Solution 1:
You could have conky write to stdout (the out_to_console
option) and redirect that to a file. Of course you'd still need to gain external access to the file.
Conky gets most of its data from the files in sysfs
and procfs
. You could write a program that gathers the information you need from there and puts it on a webpage that you can read remotely (assuming the server runs a webserver).
Edit: According to this the file format in sysfs
files is really simple; there is only one floating point value (as text) per file.
Post a Comment for "Conky Interface"