Project

General

Profile

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

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

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

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

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

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

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

    
27
                <p>
28
                  OpenAIRE’s usage statistic service uses the <i>Piwik Open Source Analytics platform</i> (piwik.org) to track usage activity. When <i>metrics</i>
29
                  are enabled for a repository, two unique identifiers are generated - a piwik-ID that associates the repository with its usage events in Piwik
30
                  and an authentication-ID that allows to track usage activity on the Piwik platform. Metadata views and item downloads are tracked and automatically sent to Piwik. Statistics are generated using the COUNTER Code of practice directives.
31
                </p>
32
                <p>
33
                  OpenAIRE's usage statistics service tracking code exploits Piwik’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:
34
                </p>
35
                <ul>
36
                  <li>as a patch for various versions of DSpace
37
                    (<a target="_blank" href="https://github.com/openaire/OpenAIRE-Piwik-DSpace">https://github.com/openaire/OpenAIRE-Piwik-DSpace</a>)</li>
38
                  <li>as an Eprints plugin for version 3
39
                    (<a target="_blank" href="https://github.com/openaire/EPrints-OAPiwik">https://github.com/openaire/EPrints-OAPiwik</a>)</li>
40
                </ul>
41
                <p>
42
                  To configure your repository to allow tracking in Piwik platform, please change the configuration files with the following parameters and values, generated for your site:
43
                </p>
44
                <dl class="uk-description-list">
45
                  <dt>PiwikID</dt>
46
                  <dd>{{ piwik.siteId }}</dd>
47
                  <dt>AuthenticationToken</dt>
48
                  <dd>{{ piwik.authenticationToken }}</dd>
49
                </dl>
50
                <p>
51
                  Details for the configuration files are given in the README of the tracking code.
52
                </p>
53
                <div class="uk-alert uk-alert-info">
54
                  <strong>NOTE</strong>
55
                  - 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.
56
                </div>
57

    
58
              </div>
59
            </div>
60
          </div>
61

    
62
        </div>
63

    
64
      </div>
65

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

    
71
    </div>
72

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

    
78
  </div>
79
</div>
80

    
(3-3/17)