Within Domino there are no 'Collaboration' metrics. The following mongo queries can be used if you are looking to have some measure of how much collaboration is occurring. Note that these queries require administrative access in the Domino UI.
All Mongo queries can be executed in the UI via the Admin>>Advanced>>MogoDB menu.
How many Projects were forked
db.projects.find({ baseForkedProjectId: { $exists:true}}).count()
How many projects are public vs private
db.projects.find({ projectVisibility: { $eq:"Public"}}).count()
db.projects.find({ projectVisibility: { $eq:"Private"}}).count()
How many APP views have there been in total?
db.hourly_usage_statistics.aggregate([{$group: { _id: null, 'Totalviews':{ $sum: '$data.viewCount'}}}])
and how many App views per month?
db.hourly_usage_statistics.aggregate([
{ $match:{"time": {'$gte':ISODate('2021-05-01T00:00:00Z'),'$lt':ISODate('2021-06-01T00:00:00Z')}}},
{$group: { _id: null, 'Totalviews_May':{ $sum: '$data.viewCount'}}}
])
Comments
0 comments
Article is closed for comments.