Maxim Logo
How toLog your application

Use tags on nodes

Tag your traces to group and filter workflow data effectively. Add tags to any node type - spans, generations, retrievals, events, and more.

Add tags to a trace

const trace = logger.trace({
    id: "trace-id",
    name: "user-query",
    tags: {
        productId: "instaTravel",
        experimentId: "fastlane",
    },
});

On this page