Project

General

Profile

1
<div class="uk-section-default uk-section uk-section-small uk-padding-remove-bottom" style="min-height: 325px">
2

    
3
  <!-- MARGIN-TOP  -->
4
  <div class="uk-sticky-placeholder" style="height: 84px; margin: 0px;" aria-hidden="true"></div>
5
  <div class="uk-container uk-container-large">
6

    
7
    <div class="uk-grid-margin uk-grid uk-grid-stack" uk-grid="">
8
      <div class="uk-width-1-1@m uk-first-column">
9

    
10
        <h1 class="uk-h2">Metrics Configuration & Software Details</h1>
11

    
12
        <!-- TOP HELP CONTENT -->
13
        <help-content #topHelperContent [position]="'top'"
14
                      [ngClass]="topHelperContent.isPresent()?'uk-margin-medium-top uk-margin-medium-bottom':'clear-style'">
15
        </help-content>
16

    
17
        <div class="uk-container uk-container-large uk-margin-medium-top uk-margin-medium-bottom">
18
          <div class="uk-grid">
19

    
20
            <!-- LEFT HELP CONTENT -->
21
            <aside-help-content #leftHelperContent [position]="'left'"
22
                                [ngClass]="leftHelperContent.isPresent()?'tm-sidebar uk-width-1-4@m uk-first-column':'clear-style'">
23
            </aside-help-content>
24

    
25
            <!-- MIDDLE -->
26
            <div class=" uk-width-expand@m">
27

    
28
              <div *ngIf="errorMessage" class="uk-alert uk-alert-danger">{{ errorMessage }}</div>
29
              <div *ngIf="loadingMessage" class="loading-big">
30
                <div class="loader-big" style="text-align: center; padding-top: 170px; color: rgb(47, 64, 80); font-weight: bold;">
31
                  {{ loadingMessage }}
32
                </div>
33
                <div class="whiteFilm"></div>
34
              </div>
35
              <div *ngIf="piwik">
36
                <p>
37
                  OpenAIRE’s usage statistic service uses the <i>Matomo Open Source Analytics platform</i> (matomo.org) to track usage activity. When <i>metrics</i>
38
                  are enabled for a repository, two unique identifiers are generated - a matomo-ID that associates the repository with its usage events in Matomo
39
                  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.
40
                </p>
41
                <p>
42
                  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:
43
                </p>
44
                <ul>
45
                  <li>as a patch for various versions of DSpace
46
                    (<a target="_blank" href="https://github.com/openaire/OpenAIRE-Piwik-DSpace">https://github.com/openaire/OpenAIRE-Piwik-DSpace</a>)</li>
47
                  <li>as an Eprints plugin for version 3
48
                    (<a target="_blank" href="https://github.com/openaire/EPrints-OAPiwik">https://github.com/openaire/EPrints-OAPiwik</a>)</li>
49
                  <li>as a python script for all other cases
50
                    (<a target="_blank" href="https://github.com/openaire/Generic-Matomo-Tracker">https://github.com/openaire/Generic-Matomo-Tracker</a>)</li>
51
                </ul>
52
                <p>
53
                  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:
54
                </p>
55
                <dl class="uk-description-list">
56
                  <dt>MatomoID</dt>
57
                  <dd>{{ piwik.siteId }}</dd>
58
                  <dt>AuthenticationToken</dt>
59
                  <dd>{{ piwik.authenticationToken }}</dd>
60
                </dl>
61
                <p>
62
                  Details for the configuration files are given in the README of the tracking code.
63
                </p>
64
                <div class="uk-alert uk-alert-info">
65
                  <strong>NOTE</strong>
66
                  - 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.
67
                </div>
68
              </div>
69

    
70
            </div>
71

    
72
            <!-- RIGHT HELP CONTENT -->
73
            <aside-help-content #rightHelperContent [position]="'right'"
74
                                [ngClass]="rightHelperContent.isPresent()?'tm-sidebar uk-width-1-4@m uk-first-column':'clear-style'">
75
            </aside-help-content>
76

    
77
          </div>
78
        </div>
79

    
80

    
81
        <!-- BOTTOM HELP CONTENT -->
82
        <help-content #bottomHelperContent [position]="'bottom'"
83
                      [ngClass]="bottomHelperContent.isPresent()?'uk-margin-medium-top uk-margin-medium-bottom':'clear-style'">
84
        </help-content>
85

    
86

    
87
      </div>
88
    </div>
89
  </div>
90
</div>
91

    
(3-3/17)