Project

General

Profile

1
<div id="page_content_inner">
2
  <h2 *ngIf="piwik" class="heading_b uk-margin-bottom">Usage Statistics Configuration & Software Details for {{piwik.repositoryName}}</h2>
3

    
4
  <!-- TOP HELP CONTENT -->
5
  <help-content #topHelperContent [position]="'top'"
6
                [ngClass]="topHelperContent.isPresent()?'uk-margin-medium-top uk-margin-medium-bottom':'clear-style'">
7
  </help-content>
8

    
9
  <div class="uk-grid">
10

    
11
    <!-- LEFT HELP CONTENT -->
12
    <aside-help-content #leftHelperContent [position]="'left'"
13
                        [ngClass]="leftHelperContent.isPresent()?'tm-sidebar uk-width-1-4@m uk-first-column':'clear-style'">
14
    </aside-help-content>
15

    
16
    <!-- MIDDLE -->
17
    <div class=" uk-width-expand@m">
18

    
19
      <div *ngIf="errorMessage" class="uk-alert uk-alert-danger">{{ errorMessage }}</div>
20
      <div *ngIf="piwik">
21

    
22
        <div class="md-card">
23
          <div class="md-card-content large-padding">
24
            <div class="uk-article">
25

    
26
              <p>
27
                OpenAIRE’s usage statistic service uses the <i>Matomo Open Source Analytics platform</i> (matomo.org) to track usage activity. When <i>metrics</i>
28
                are enabled for a repository, two unique identifiers are generated - a matomo-ID that associates the repository with its usage events in Matomo
29
                and an authentication-ID that allows to track usage activity on the Matomo platform. Metadata views and item downloads are tracked and automatically sent to Matomo. Statistics are generated using the COUNTER Code of practice directives.
30
              </p>
31
              <p>
32
                OpenAIRE's usage statistics service tracking code exploits Matomo’s API. In order to make the tracking of usage events from repositories more robust, it was necessary to implement repository platform specific patches and plugins starting with DSpace and EPrints. The code is maintained on Github:
33
              </p>
34
              <ul>
35
                <li>as a patch for various versions of DSpace
36
                  (<a target="_blank" href="https://github.com/openaire/OpenAIRE-Piwik-DSpace">https://github.com/openaire/OpenAIRE-Piwik-DSpace</a>)</li>
37
                <li>as an Eprints plugin for version 3
38
                  (<a target="_blank" href="https://github.com/openaire/EPrints-OAPiwik">https://github.com/openaire/EPrints-OAPiwik</a>)</li>
39
                <li>as a python script for all other cases
40
                  (<a target="_blank" href="https://github.com/openaire/Generic-Matomo-Tracker">https://github.com/openaire/Generic-Matomo-Tracker</a>)</li>
41
              </ul>
42
              <p>
43
                To configure your repository to allow tracking in Matomo platform, please change the configuration files with the following parameters and values, generated for your site:
44
              </p>
45
              <dl class="uk-description-list">
46
                <dt>MatomoID</dt>
47
                <dd>{{ piwik.siteId }}</dd>
48
                <dt>AuthenticationToken</dt>
49
                <dd>{{ piwik.authenticationToken }}</dd>
50
              </dl>
51
              <p>
52
                Details for the configuration files are given in the README of the tracking code.
53
              </p>
54
              <div class="uk-alert uk-alert-info">
55
                <strong>NOTE</strong>
56
                - You will be informed by e-mail that the installation of the tracking code has been validated and when the usage statistics will be available.
57
              </div>
58

    
59
            </div>
60
          </div>
61
        </div>
62

    
63
      </div>
64

    
65
    </div>
66

    
67
    <!-- RIGHT HELP CONTENT -->
68
    <aside-help-content #rightHelperContent [position]="'right'"
69
                        [ngClass]="rightHelperContent.isPresent()?'tm-sidebar uk-width-1-4@m uk-first-column':'clear-style'">
70
    </aside-help-content>
71

    
72
  </div>
73

    
74
  <!-- BOTTOM HELP CONTENT -->
75
  <help-content #bottomHelperContent [position]="'bottom'"
76
                [ngClass]="bottomHelperContent.isPresent()?'uk-margin-medium-top uk-margin-medium-bottom':'clear-style'">
77
  </help-content>
78

    
79
</div>
80

    
(3-3/15)