I'm working on something where I need to poll an http URL and get the numbers available as part of the response and show graphical stats on a web page.
Does anyone know of any opensource software which can do something like this?
Sample URL:
which Results 15000
then another url would result 10000 etc.
If I understand your question correctly, you can use plain Javascript to achieve something like this. Here's an example that does a server request every five seconds:
There are also libraries that make this easier, for example PollJS. You can find more on Github. If you have control over the server, you might want to check out Socket.io.