Replies: 2 comments 12 replies
-
Hi! Thanks for raising this. I think #1789 might be worth a look. |
Beta Was this translation helpful? Give feedback.
-
Personally, I think the line is a bit blurry regarding what should be done where:
I'm a bit vary of introducing too many concurrent techniques which do similar but not quite identical things. At the same time, I'm well aware that there is your rather simply, specified wish for a specific feature with a workable implementation idea (protocol extension). Countering that with "but some arbitrary time in the future we may have a better way to do that" would not seem logical either.
I think the current HTML file is non-optimal. It would have been better, if this was structured data in the first place. So,
I'd say yes.
That's the harder part, I guess. :/ |
Beta Was this translation helpful? Give feedback.
-
As a server admin, I'd like to be able to get more information about the running state of a server in a programmatic way. For example, I'd like to be able to know the current recording state as well as the IP's of the connected clients. Keeping security in mind (with respect to IP's), I believe there are two ways to accomplish this.
First would be to create a new set of connection-less messages to provide this information. The messages would be 'secured' by only responding if requestor is localhost (or even perhaps an IP specified as authorized via cmd line arg). (Pros: on-demand query; Cons: Not as extendable, security)
Alternatively, create a file similar to the HTML status file that would generate machine readable (txt, xml, json, whatever) output to reflect various server information. (Pros: easier, extendable; Cons: always updated even when no one is looking; unpredictable update frequency)
I've experimented by modifying the HTML status file code to generate the information I'm looking for. Is there an appetite for this type of functionality and, if there is, what would the preferred implementation method be?
Beta Was this translation helpful? Give feedback.
All reactions