Site Page is not giving the details (Popularity Trends)

Sajith Gopalakrishnan Hema 1,036 Reputation points
2020-10-24T08:31:29.8+00:00

Site Page is not giving the details (Popularity Trends)

34803-2020-10-24-10-04-33.png

What are the items needs to be selected in the Usage Health Data Collection Service Applications in order to show the details

SharePoint Server Management
SharePoint Server Management
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Management: The act or process of organizing, handling, directing or controlling something.
2,934 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Allen Xu_MSFT 13,821 Reputation points
    2020-10-26T09:48:05.87+00:00

    Hi @Sajith Gopalakrishnan Hema ,

    In SharePoint server, analysis is part of the Search Service, so first of all please make sure the search service application is actively crawling the content, and the files are crawled.

    If Search works properly, try the following steps to troubleshoot the issue.

    1) Enable Usage Report in SharePoint via go to Central Administration -> Monitoring -> Configure Usage and health data collection:
    34878-1.png

    Then check the related timer jobs are running via go to Monitoring> Review job definitions -> find “Microsoft SharePoint Foundation Usage Data Import” and “Microsoft SharePoint Foundation Usage Data Processing” timer jobs:
    34979-2.png

    2) Configuring Usage Definition

    In order to get Popularity Trends Report, it’s necessary to add receivers and configure "EnableReceivers" settings.

    Using PowerShell command below to check if the relevant Instantiating usage receivers are missing:

    $aud = Get-SPUsageDefinition | where {$_.Name -like “Analytics*”}   
    $aud | fl   
    
    $prud = Get-SPUsageDefinition | where {$_.Name -like “Page Requests”}    
    $prud | fl  
    

    If they are disabled, the result will be displayed like this:
    34947-3.png

    You can refer to this article to enable and attach Event Receivers:
    https://social.technet.microsoft.com/wiki/contents/articles/51478.sharepoint-2016-popularity-trends-and-usage-data-return-no-results.aspx

    The correct result should be like this:
    34948-4.png
    34949-5.png

    After completing all of the configuration above, it may take 24hrs or more to take into effect and you need to wait.

    I hope this information has been useful, please let me know if you still need assistance.


    If an Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.