Analytics Sitecore 8 Experience Empty Reports

I am very new to Sitecore. I am running Sitecore 8 (rev. 150621) on the local computer. When I check the profile dashboard, there are profiles created with the name "Anonymous" and I created contacts using the Contact Creator xDB (Market Place module). I have some entries (visits, etc.) under these contacts. The problem is that when I check that the visitors to the Analytics Analytics dashboard are empty.

I tried Refresh Analytics Dashboard / Experience Reports , didn’t get any results for Analytics Experience reports.

On my current site, I have a couple of pages (Items). I also tried with some persons, but no luck.

As I can see, the data is populated in the analytic database (Mongo and SQL)

LOG:

6984 10:09:56 INFO MemoryMonitor initialized. Threshold: 2 GB. Interval: 00:00:05 6984 10:09:57 INFO [Analytics]: Started background service for 'maintenanceService'. 6984 10:09:57 INFO Cache created: 'taxonomy.campaigngroups' (max size: 20MB, running total: 848MB) 6984 10:09:57 INFO Cache created: 'taxonomy.channels' (max size: 20MB, running total: 868MB) 6984 10:09:57 INFO Cache created: 'taxonomy.assets' (max size: 20MB, running total: 888MB) 6984 10:09:57 INFO [Analytics]: Started background service for 'aggregation/aggregator'. 6984 10:09:57 INFO [Analytics]: Started background service for 'aggregation/contactProcessing'. 6984 10:09:57 INFO [Analytics]: Started background service for 'aggregation/cleanup'. 6984 10:09:57 INFO [Analytics]: Started background service for 'aggregation/recovery'. 6984 10:09:57 INFO [Analytics]: Started background service for 'aggregation/rebuildAgent'. 6984 10:09:57 INFO [Analytics]: Started background service for 'aggregation/historyWorker'. 6984 10:09:57 INFO [Analytics]: Started background service for 'aggregation/historyCompletionCheck'. 6984 10:09:57 INFO [Analytics]: Started background service for 'aggregation/automationAggregator'. 6984 10:09:57 INFO [Analytics]: Started background service for 'aggregation/automationRangeManager'. 6984 10:09:57 INFO [Analytics]: Started background service for 'aggregation/automationCleanupService'. 6984 10:09:57 INFO [Analytics]: Automation aggregation SubsystemLoader hook initialized. 6984 10:09:57 INFO [Analytics]: Started background service for 'processing/taskAgent'. 6984 10:09:57 INFO Cache created: 'rules' (max size: 800KB, running total: 889MB) 6984 10:09:57 INFO Cache created: '[FieldReaderCache]' (max size: 5MB, running total: 894MB) 6984 10:09:59 INFO [Analytics]: Started background service for 'pathAnalyzer/newMapAgent'. 6984 10:09:59 INFO [Analytics]: Started background service for 'pathAnalyzer/dailyMapAgent'. 6984 10:09:59 INFO [Analytics]: Started background service for 'pathAnalyzer/smartMergeAgent'. 6984 10:09:59 INFO [Path Analyzer]() Path Analyzer subsystem hook initialized. 6984 10:09:59 INFO [Analytics]: Started background service for 'experienceAnalytics/reduce/agent'. 6984 10:09:59 INFO [Experience Analytics]: ExperienceAnalytics reduce subsystem initialized. 6984 10:09:59 INFO Scheduler - Initializing 6984 10:10:11 INFO [Experience Analytics]: ExperienceAnalytics SegmentInitializer 6984 10:10:11 INFO Cache created: 'ReportDataCache' (max size: 50MB, running total: 2077MB) ManagedPoolThread #5 10:10:12 INFO Job ended: Sitecore.ListManagement.Analytics.UnlockContactListsAgent (units processed: ) 4828 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/contactProcessing'. 7736 10:10:12 INFO Cache created: 'Task Manager - tasks' (max size: 100 bytes, running total: 2077MB) 9016 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/historyCompletionCheck'. 7660 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/automationCleanupService'. 4536 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/historyWorker'. 7756 10:10:12 DEBUG [Analytics]: Created new agent instance: 'processing/taskAgent'. 8348 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/automationAggregator'. 6948 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/aggregator'. 7388 10:10:12 DEBUG [Analytics]: Registered aggregation context for the pool 'live'. 7388 10:10:12 DEBUG [Analytics]: Registered aggregation context for the pool 'live'. 7388 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/recovery'. 7936 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/automationAggregator'. 7736 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/rebuildAgent'. 732 10:10:12 DEBUG [Analytics]: Registered aggregation context for the pool 'live'. 732 10:10:12 DEBUG [Analytics]: Registered aggregation context for the pool 'live'. 732 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/cleanup'. 4692 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/automationRangeManager'. 7660 10:10:12 INFO Cache created: 'ReportingStorageProviderProperties.Properties' (max size: 100 bytes, running total: 2077MB) 8452 10:10:12 DEBUG [Analytics]: Created new agent instance: 'aggregation/automationAggregator'. 9016 10:10:12 DEBUG [Analytics]: MongoDbHistoryTaskManager - deactivated history task. 6984 10:10:12 INFO [Experience Analytics]: WebApiInitializer 6984 10:10:12 INFO [Experience Analytics]: Filter (Sitecore.ExperienceAnalytics.Api.Http.Filters.CacheHeaderFilterAttribute) added 6984 10:10:12 INFO Sitecore.Social: The Social remote events are initialized. 
+4
source share
2 answers

Thanks to Sergey Plashenko (Sitecore Community). Analytics Analytics reports now show data. In my case, I had data in TrafficOverview , but no data in ReportDataView in SQL Analytics Db, and also had data in Contacts and Interactions in Mongo.

This is a link to a forum post. Analytics Analytics Sitecore 8 reports are empty

Decision:

Open the report database using SQL Management Studio and run the following query:

SELECT * FROM [Segments]

If the table is empty, follow these steps:

  • Go to sitecore / admin / redeploymarketingdata.aspx and click the Repeat Segments button.
  • Open the report database using SQL Management Studio and run the following query:

UPDATE [dbo]. [Segments] SET [DeployDate] = '2001-08-05 08: 44: 45.500'

  1. Restore report database.
+1
source

One more thing to check: make sure your site has a VisitorIdentification tag. Without this visit will not be recorded.

In addition, you can verify that you are receiving the correct data for visits in MongoDB by looking at the Interactions collection.

To test SQL, run a view called ReportDataView in the Google Analytics database - this will tell you if there is data in your reports.

+4
source

All Articles