├── .github └── workflows │ └── pythonpublish.yml ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── EXPORT.md ├── HISTORY.rst ├── INSTALLATION.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── UNINSTALL.md ├── UPDATE.md ├── config └── COUNTER_Robots_list.json ├── docs ├── Makefile ├── README_BR.rst ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── pipeline-diagram.png ├── readme.rst └── usage.rst ├── dspace_stats_collector ├── __init__.py ├── collector.py ├── configcontext.py ├── configure.py ├── counterfilter.py ├── croninstaller.py ├── dspacedb.py ├── dspacedb4.py ├── dspacedb5.py ├── dspacedb5cris.py ├── dspacedb5oracle.py ├── dspacedb6.py ├── dspacedb6oracle.py ├── dspacedb7.py ├── dspacefilter.py ├── elasticoutput.py ├── eventpipeline.py ├── export.py ├── fileoutput.py ├── matomooutput.py ├── sessionfilter.py ├── solrinput.py └── test.py ├── install-standalone-develop.sh ├── install-standalone-failsafe.sh ├── install-standalone-oracle.sh ├── install-standalone.sh ├── requirements-p37-dev.txt ├── requirements-p37-oracle.txt ├── requirements-p37.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── dspace_stats_collector └── test_dspace_stats_collector.py ├── tox.ini ├── update-standalone-develop.sh └── update-standalone.sh /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /EXPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/EXPORT.md -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /INSTALLATION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/INSTALLATION.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/README.md -------------------------------------------------------------------------------- /UNINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/UNINSTALL.md -------------------------------------------------------------------------------- /UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/UPDATE.md -------------------------------------------------------------------------------- /config/COUNTER_Robots_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/config/COUNTER_Robots_list.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README_BR.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/docs/README_BR.rst -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../INSTALLATION.rst 2 | -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pipeline-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/docs/pipeline-diagram.png -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /dspace_stats_collector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/__init__.py -------------------------------------------------------------------------------- /dspace_stats_collector/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/collector.py -------------------------------------------------------------------------------- /dspace_stats_collector/configcontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/configcontext.py -------------------------------------------------------------------------------- /dspace_stats_collector/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/configure.py -------------------------------------------------------------------------------- /dspace_stats_collector/counterfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/counterfilter.py -------------------------------------------------------------------------------- /dspace_stats_collector/croninstaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/croninstaller.py -------------------------------------------------------------------------------- /dspace_stats_collector/dspacedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/dspacedb.py -------------------------------------------------------------------------------- /dspace_stats_collector/dspacedb4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/dspacedb4.py -------------------------------------------------------------------------------- /dspace_stats_collector/dspacedb5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/dspacedb5.py -------------------------------------------------------------------------------- /dspace_stats_collector/dspacedb5cris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/dspacedb5cris.py -------------------------------------------------------------------------------- /dspace_stats_collector/dspacedb5oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/dspacedb5oracle.py -------------------------------------------------------------------------------- /dspace_stats_collector/dspacedb6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/dspacedb6.py -------------------------------------------------------------------------------- /dspace_stats_collector/dspacedb6oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/dspacedb6oracle.py -------------------------------------------------------------------------------- /dspace_stats_collector/dspacedb7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/dspacedb7.py -------------------------------------------------------------------------------- /dspace_stats_collector/dspacefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/dspacefilter.py -------------------------------------------------------------------------------- /dspace_stats_collector/elasticoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/elasticoutput.py -------------------------------------------------------------------------------- /dspace_stats_collector/eventpipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/eventpipeline.py -------------------------------------------------------------------------------- /dspace_stats_collector/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/export.py -------------------------------------------------------------------------------- /dspace_stats_collector/fileoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/fileoutput.py -------------------------------------------------------------------------------- /dspace_stats_collector/matomooutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/matomooutput.py -------------------------------------------------------------------------------- /dspace_stats_collector/sessionfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/sessionfilter.py -------------------------------------------------------------------------------- /dspace_stats_collector/solrinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/solrinput.py -------------------------------------------------------------------------------- /dspace_stats_collector/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/dspace_stats_collector/test.py -------------------------------------------------------------------------------- /install-standalone-develop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/install-standalone-develop.sh -------------------------------------------------------------------------------- /install-standalone-failsafe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/install-standalone-failsafe.sh -------------------------------------------------------------------------------- /install-standalone-oracle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/install-standalone-oracle.sh -------------------------------------------------------------------------------- /install-standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/install-standalone.sh -------------------------------------------------------------------------------- /requirements-p37-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/requirements-p37-dev.txt -------------------------------------------------------------------------------- /requirements-p37-oracle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/requirements-p37-oracle.txt -------------------------------------------------------------------------------- /requirements-p37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/requirements-p37.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/setup.py -------------------------------------------------------------------------------- /tests/dspace_stats_collector: -------------------------------------------------------------------------------- 1 | ../dspace_stats_collector -------------------------------------------------------------------------------- /tests/test_dspace_stats_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/tests/test_dspace_stats_collector.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/tox.ini -------------------------------------------------------------------------------- /update-standalone-develop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/update-standalone-develop.sh -------------------------------------------------------------------------------- /update-standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lareferencia/dspace-stats-collector/HEAD/update-standalone.sh --------------------------------------------------------------------------------