How Are Impressions Generated?

Impressions are automatically logged each time a flag is evaluated with the flag function, capturing the variant served to the user.

client.flag<T>(flagKey: string, defaultValue?: T);

Example

For a flag like signup-cta with variants Join Now, Register, Sign Up:

const value = client.flag('signup-cta', 'Register');

console.log(`signup-cta is ${value}`);

If User ABC is shown Join Now, an impression is logged “User ABC saw Join Now for signup-cta.”

Next Steps