For downloads to be converted into metrics, your usage statistics logs must be processed by cron or acron. This is intended to happen daily. As such you will not see your clicks today translate into metrics until that process runs, which will be at least after the close of the day.
If you don’t see any activity for 2017, you may not have an active cron or acron process which is parsing the logs into metrics.
I think I know what is going wrong in your metrics: I think you need this patch:pkp/pkp-lib#2087 fix usage event on article page · pkp/ojs@75ced9f · GitHub
In your DB table metrics you have only entries for submission ID = 1 and you actually do not have that submission published. Because of the bug above, the system logged the issue ID instead of the article ID. Thus, after you have applied the patch you should wait for a few days (for statistics to get generated again) and then you should see the right numbers on your pages.
Can you check if you statistic log files since Jan 12th are there – in your files folder under usageStats/? You could check if the logging is functioning correctly: when you for example go to an article page, that that page is logged correctly in the current log file under usageStats/usageEventsLogs/. If this is correct, then something is wrong with the log file processing…
Concerning the View Report Plugin: do you see any PHP errors in your php error log file when you try to create the report?
Concerning the usage statistics log files: I do not know why are they in those folders – it seems like they are not processed. Maybe there is an error occurring, that disables processing.
Initially, the statistics log files are in the folder usageEventLogs. Then when they are processed, they are moved into the folder stage and the file that is processed right now is moved to the folder processing. If the data could not be loaded from that file, the file will be returned to the folder stage, s. https://github.com/pkp/pkp-lib/blob/master/plugins/generic/usageStats/PKPUsageStatsLoader.inc.php#L239-L243.
And I do not know why is this happening
Maybe the same error that makes View Report Plugin not work is the problem here as well…
Also, what do you see in your files folder > scheduledTaskLogs and then one of the latest Usagestatisticsfileloadertask.. .log files?
Please take a look also in the statistics log files, if the usage is logged correcty i.e. when you click on an article page if the log entry is correct…