Logging data to the internet?

Hello,
I am designing a program for the beagle bone black that needs to log temperature and lighting data onto a web server, which could be accessed by a web application to display the data. The data is continuous (taken at least every second) and logged to the server about one every 10 minutes or so, so there are about 500 to 1000 enteries each time the data is logged.

I’m really stuck here, this seems like such a basic application, but I can’t find the answer anywhere. Does anyone know of a tutorial or example application that logs data to the internet?

Take a look at MQTT. You could periodically publish your data from the Beagle Bone via MQTT then subscribe to that channel on the server. On each message reception store the data into a local database. Your web app. could then query that database for display.