Display last website crawled

Is there a way to see the last website crawled? I want to display the last website crawled in my webpage.

Thank you

yes. It’s a rss feed which fills the message window in http://localhost:8090/Status.html. That message window is actually a simple small rss feed reader that takes it’s input from

http://localhost:8090/api/feed.rss?count=80&set=PEERNEWS,REMOTESEARCH,LOCALSEARCH,REMOTEINDEXING,LOCALINDEXING,DHTRECEIVE,DHTSEND,PROXY

As you can see you can use the set parameter to focus on a specific crawl list, or all of them as shown in the example.

I know that rss feeds are today a kind of old technology, but that was modern in the time it was created…

So if you want to get the last website crawled, you must take out the last entry of that list.
But if you find a rss reader, you can just use that to show what is crawled!

That will work just fine, Thank you!