Google analytics does not show Event Label in real-time

google analytics

I am using the following code to send GA events:

Tracker t = ((AnalyticsHelper) getApplication()).getTracker(AnalyticsHelper.TrackerName.APP_TRACKER);
                t.send(new HitBuilders.EventBuilder()
                        .setCategory("XX")
                        .setAction("XX")
                        .setLabel("XX")
                        .build());

But on google analytics report webpage -> Real Time, it only shows the Category and Action. The Label is missing. Is Label ignored by real-time reporting? Do I need to wait for one day for the Label to show up?

Best Answer

As @stkent answered, you have to click on the category to see the labels.

But also, make sure there are no extra filters added unintentionally

enter image description here