I haven't seen this mentioned yet, and I thought it would be a neat addition: GA supports custom variables, and I would love to have this product add the username and usergroup as custom variables.
Code:
pageTracker._setCustomVar(
1, // Custom slot 1
"UserName", // Custom slot 1 name
"insert username here", // Have vB insert the username
1 // Visitor-level data - doesn't change
);
pageTracker._setCustomVar(
2, // Custom slot 2
"UserGroup", // Custom slot 2 name
"user's group title", // have vB insert the user's primary usergroup title
2 // Session level data (can change over time)
);
I played with this a bit last night, but I'm not enough of a vB hacker to get it functioning well for the usergroup titles. Lack of sleep my have also played a hand ...