See your logs as they happen, in real-time, in your dashboard.
Connect multiple sources to your dashboard and see all their logs in one place.
Add tags to your logs to make them easier to categorize and filter.
Filter your logs by source, date, regular expression and tags.
Save your most used filters as presets to quickly apply them to your logs.
The oldest logs are automatically dropped when the limit is reached.
Set custom retention rules per tag. Keep important logs longer while automatically cleaning up the rest.
Send your logs to Hamsterlog with our simple SDK or API.
import { Hamster } from "./hamster-node.js";
var hamster = new Hamster({
apiKey: "YOUR_API_KEY",
defaultTags: ["node", "my-node-app"],
});
console.log("This log shows up in hamsterlog!");
console.error("This error too.");
hamster.log("Add some tags like this.", ["demo"]);