Facts package for react for checking Mongo Oplog

I have followed the steps in this link to enable MongoDB Oplog Support for scaling my Meteor application.

Although, to verify if the queries are using OplogObserveDriver it is suggested to use ‘facts’ package. I added ‘facts’ package to my application. Facts package provides a blaze template ‘serverFacts’ which will list the server metrics.

I am using React as my front-end and used gadicc:blaze-react-component to render the blaze component in react using the following code:

I also added the code to tell meteor which users can see the metrics by calling:

Facts.setUserIdFilter(function (userId) {
var user = Meteor.users.findOne(userId);
return user && user.admin;
});

I am unable to see any of the server metrics where I rendered the “serverFacts” component. What I see in the browser’s Elements tab is just an empty ‘ul’.

Is there a problem in the way I am rendering it in the client side or should I be doing any additional configurations in the server side? Help is very much appreciated.

Thanks in advance,
Yashwanth