Re: [dspace-tech] Solr item view stats not updating in browser

2017-11-29 Thread Claudia Jürgen
Hello Gary, actually 319 views are displayed for 2017-11 and the item ws published 2017-11-26T23:47:36Z. A lot of hits you view in the logs will most likely come from bots and these are per default not counted see

Re: [dspace-tech] Solr item view stats not updating in browser

2017-11-28 Thread Terry Brady
Gary, That is correct. DSpace makes some attempt to filter out bot traffic. When you look directly at the SOLR records, you may see some records with an isBot field. To view the item counts, the following query will reveal those: type:2 AND id:2924 The bundle filter does not apply to the item

Re: [dspace-tech] Solr item view stats not updating in browser

2017-11-28 Thread Gary Browne
Thanks Terry, So I'm assuming "bitstream views" equate to "dowloads"? If so, that gives me a figure more like what I would expect. And how would I get item view counts for this particular item? We haven't sharded our stats. Ta, Gary On Wednesday, November 29, 2017 at 10:21:38 AM UTC+11,

Re: [dspace-tech] Solr item view stats not updating in browser

2017-11-28 Thread Terry Brady
If you get the database id for the item, you can run the following query from your SOLR console for the statistics repo. In DSpace 6, the id will be a UUID. In DSpace 3-5, it will be an integer. 2924 is being used in the sample query below. type:0 AND owningItem:2924 AND bundleName:ORIGINAL