Linden Logger

Your personal Second Life analytics dashboard. Track player visits, session durations, and aggregate statistics with ease.

Player Statistics
PlayerVisitsTotal TimeLevelAge (Days)
No player data available. Visit the region in Second Life to see data appear.

Visit Timeline

LSL Scripts

Data Sender Script
This LSL script sends player visit data to your web app.
Data Retriever Script
This LSL script is not yet functional. It's a placeholder for future development.
// Linden Logger - Data Retriever Script
// Drop this script into a prim in Second Life.
// It allows you to query player stats via chat commands.

// This script is not yet implemented with a live endpoint.
key g_request_id;

default
{
    state_entry()
    {
        llListen(1, "", llGetOwner(), ""); // Listen to owner on channel 1
        llOwnerSay("Retriever script ready. Functionality is not yet implemented.");
    }

    listen(integer channel, string name, key id, string message)
    {
        llOwnerSay("Player data retrieval is not yet implemented in the web app.");
    }
}