There aren’t any existing reports for chat usage, but I agree this is something we’ll need to add in the not too distant future. In the meantime, some data explorer queries might be able to help find what you need.
What kind of information about chat usage would you find particularly helpful to have quicker access to?
Is there an update on the likelihood of adding metrics for chat activity?
We’re in the process of overhauling our categories. We’ll end up simplifying the categories and encouraging more activity on chat channels. We currently capture interactions between members based on new topic, new post, new private message and likes.
So we might see a drop in those numbers as things shift towards chat. Yet we’d still like to capture data related to interactions via the chat channels and personal chat as well as categories.
No update yet, but what I think makes sense to try out here is to work on defining some data explorer queries first as a means to prototype the kind of metrics you’re looking for. Happy to help do that here with you as a first step.
I hear that “interactions between members” is the kind of thing you’re most interested in measuring. Does that hold true for chat? What kinds of things would you hope to see count as interactions within chat?
Mark in our team has set up this query. It returns the count of chat messages sent in the last 30 days. Thought it would be useful to share if anyone else is interested and stumbles across this post.
SELECT COUNT(*) FROM chat_messages WHERE created_at >= CURRENT_TIMESTAMP - INTERVAL '30 days'
We use this one in my community to see the most active users in the last 30 days.
SELECT
u.username,
COUNT(c.*) AS cnt
FROM
chat_messages AS c
LEFT JOIN users AS u ON c.user_id = u.id
WHERE c.created_at >= CURRENT_TIMESTAMP - INTERVAL '30 days'
GROUP BY u.username
ORDER BY cnt DESC
It’s been awhile since anyone chimed in here but it would be very handy to have at least one report about chat activity.
Right now there’s no way to understand what engagement for the feature looks like. For channels you can have some kind of qualitative idea of what usage is like but DMs are a total black box. The chart @fbpbdmin posted above would be great but my wish list is:
DAU/MAU for chat
Number of messages sent (ideally with breakdown for Channels vs DMs)