├── .ebextensions ├── cronjobs.txt ├── django.config └── pre_deploy.config ├── .gitignore ├── LICENSE ├── README.md ├── deploy.patch ├── forkmon ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── logs ├── system.log └── task.log ├── manage.py ├── monitor ├── __init__.py ├── admin.py ├── apps.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── node_updates.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170715_1725.py │ ├── 0003_auto_20170716_1219.py │ ├── 0004_auto_20170718_0105.py │ ├── 0005_auto_20170718_2122.py │ ├── 0006_node_mtp.py │ ├── 0007_auto_20170718_2235.py │ ├── 0008_auto_20170718_2237.py │ ├── 0009_auto_20170718_2237.py │ ├── 0010_auto_20170718_2237.py │ ├── 0011_auto_20170718_2237.py │ ├── 0012_auto_20170718_2238.py │ ├── 0013_bip9fork_since.py │ ├── 0014_bip9fork_current.py │ ├── 0015_mtfork.py │ ├── 0016_updatelock.py │ ├── 0017_auto_20170727_2318.py │ ├── 0018_node_best_block_time.py │ ├── 0019_auto_20170802_2353.py │ ├── 0020_auto_20170803_0006.py │ ├── 0021_node_last_updated_best.py │ └── __init__.py ├── models.py ├── node_updates.py ├── templates │ └── index.html ├── templatetags │ └── stats_tags.py ├── tests.py └── views.py └── requirements.txt /.ebextensions/cronjobs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/.ebextensions/cronjobs.txt -------------------------------------------------------------------------------- /.ebextensions/django.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/.ebextensions/django.config -------------------------------------------------------------------------------- /.ebextensions/pre_deploy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/.ebextensions/pre_deploy.config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/README.md -------------------------------------------------------------------------------- /deploy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/deploy.patch -------------------------------------------------------------------------------- /forkmon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forkmon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/forkmon/settings.py -------------------------------------------------------------------------------- /forkmon/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/forkmon/urls.py -------------------------------------------------------------------------------- /forkmon/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/forkmon/wsgi.py -------------------------------------------------------------------------------- /logs/system.log: -------------------------------------------------------------------------------- 1 | System log file 2 | -------------------------------------------------------------------------------- /logs/task.log: -------------------------------------------------------------------------------- 1 | Task log file 2 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/manage.py -------------------------------------------------------------------------------- /monitor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitor/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/admin.py -------------------------------------------------------------------------------- /monitor/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/apps.py -------------------------------------------------------------------------------- /monitor/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitor/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitor/management/commands/node_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/management/commands/node_updates.py -------------------------------------------------------------------------------- /monitor/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0001_initial.py -------------------------------------------------------------------------------- /monitor/migrations/0002_auto_20170715_1725.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0002_auto_20170715_1725.py -------------------------------------------------------------------------------- /monitor/migrations/0003_auto_20170716_1219.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0003_auto_20170716_1219.py -------------------------------------------------------------------------------- /monitor/migrations/0004_auto_20170718_0105.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0004_auto_20170718_0105.py -------------------------------------------------------------------------------- /monitor/migrations/0005_auto_20170718_2122.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0005_auto_20170718_2122.py -------------------------------------------------------------------------------- /monitor/migrations/0006_node_mtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0006_node_mtp.py -------------------------------------------------------------------------------- /monitor/migrations/0007_auto_20170718_2235.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0007_auto_20170718_2235.py -------------------------------------------------------------------------------- /monitor/migrations/0008_auto_20170718_2237.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0008_auto_20170718_2237.py -------------------------------------------------------------------------------- /monitor/migrations/0009_auto_20170718_2237.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0009_auto_20170718_2237.py -------------------------------------------------------------------------------- /monitor/migrations/0010_auto_20170718_2237.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0010_auto_20170718_2237.py -------------------------------------------------------------------------------- /monitor/migrations/0011_auto_20170718_2237.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0011_auto_20170718_2237.py -------------------------------------------------------------------------------- /monitor/migrations/0012_auto_20170718_2238.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0012_auto_20170718_2238.py -------------------------------------------------------------------------------- /monitor/migrations/0013_bip9fork_since.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0013_bip9fork_since.py -------------------------------------------------------------------------------- /monitor/migrations/0014_bip9fork_current.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0014_bip9fork_current.py -------------------------------------------------------------------------------- /monitor/migrations/0015_mtfork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0015_mtfork.py -------------------------------------------------------------------------------- /monitor/migrations/0016_updatelock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0016_updatelock.py -------------------------------------------------------------------------------- /monitor/migrations/0017_auto_20170727_2318.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0017_auto_20170727_2318.py -------------------------------------------------------------------------------- /monitor/migrations/0018_node_best_block_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0018_node_best_block_time.py -------------------------------------------------------------------------------- /monitor/migrations/0019_auto_20170802_2353.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0019_auto_20170802_2353.py -------------------------------------------------------------------------------- /monitor/migrations/0020_auto_20170803_0006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0020_auto_20170803_0006.py -------------------------------------------------------------------------------- /monitor/migrations/0021_node_last_updated_best.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/migrations/0021_node_last_updated_best.py -------------------------------------------------------------------------------- /monitor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/models.py -------------------------------------------------------------------------------- /monitor/node_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/node_updates.py -------------------------------------------------------------------------------- /monitor/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/templates/index.html -------------------------------------------------------------------------------- /monitor/templatetags/stats_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/templatetags/stats_tags.py -------------------------------------------------------------------------------- /monitor/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/tests.py -------------------------------------------------------------------------------- /monitor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/monitor/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/forkmon/HEAD/requirements.txt --------------------------------------------------------------------------------