Skip to main content

Library to retrieve and manipulate data about IXPs

Project description

django-ixp-tracker

PyPI Tests Changelog License

Library to retrieve and manipulate data about IXPs

Installation

Install this library using pip:

pip install django-ixp-tracker

Usage

  1. Add to your INSTALLED_APPS setting like this:
   INSTALLED_APPS = [
   ...,
   "ixp_tracker",
   ]

Note: this app has no web-facing components so you don't need to add anything to urls.py etc

  1. Run python manage.py migrate to create the models.
  2. Add the relevant settings to your config. IXP_TRACKER_PEERING_DB_URL will use a default if you don't provide a value so you probably don't need that. But you will need to set IXP_TRACKER_PEERING_DB_KEY to authenticate against the API.
  3. Add IXP_TRACKER_DATA_LOOKUP_FACTORY to config with the path to your factory (see below).
  4. Run the management command to import the data: python manage.py ixp_tracker_import (This will sync the current data, if you want historical data you need to backfill first)

ASN country and status data

The lib uses an external component to look up the country of registration (why?) and the status of an ASN. This status is used for the logic to identify when members have left an IXP.

If you don't provide this service yourself, it will default to a noop version. This will mean you will get no country of registration data and the marking of members having left an IXP will not be as efficient.

In order to implement such a component yourself, you should implement the Protocol ixp_tracker.data_lookup.AdditionalDataSources and provide a factory function for your class.

Backfilling data

You have the option of backfilling data from archived PeeringDb data. This can be done by running the import command with the --backfill option for each month you want to backfill:

python manage.py ixp_tracker_import --backfill <YYYMM>

The backfill currently process a single month at a time and will look for the earliest file for the relevant month at https://publicdata.caida.org/datasets/peeringdb/

IMPORTANT NOTE: due to the way the code tries to figure out when a member left an IXP, you should run the backfill strictly in date order and before syncing the current data.

IXP stats

The import process also generates monthly stats per IXP and per country. These are generated as of the 1st of the month used to import the data.

Running programmatically

If you'd like to run the import from code, rather than from the management command, you can call importers.import_data() and stats.generate_stats() directly.

It's not recommended to call any other functions yourself.

Development

To contribute to this library, first checkout the code. Then create a new virtual environment:

cd django-ixp-tracker
python -m venv .venv
source .venv/bin/activate

Now install the dependencies and test dependencies:

pip install -e '.[test]'

To run the tests:

pytest

We use pre-commit for linting etc on push. Run:

pre-commit install

from the repo top-level dir to set it up.

Releases

For now, releasing a new version is manual and can be done by running the following commands from the repo:

python -m build
python -m twine upload --repository pypi dist/*

Peering Db libraries

PeeringDb provide their own vanilla Python and Django libs, but we have decided not to use these.

Both libs are designed to keep a local copy of the current data and to keep that copy in sync with the central copy via the API.

As we need to keep a historical record (e.g. for IXP growth stats over time), we would have to provide some sort of wrapper over those libs anyway.

In addition to that, the historical archives of PeeringDb data use flat lists of the different object types in json. We can retrieve the data from the API directly in the same way, so it makes it simpler to implement.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_ixp_tracker-1.3.3.tar.gz (25.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_ixp_tracker-1.3.3-py3-none-any.whl (30.4 kB view details)

Uploaded Python 3

File details

Details for the file django_ixp_tracker-1.3.3.tar.gz.

File metadata

  • Download URL: django_ixp_tracker-1.3.3.tar.gz
  • Upload date:
  • Size: 25.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for django_ixp_tracker-1.3.3.tar.gz
Algorithm Hash digest
SHA256 e0ac88bea995bd85d6fe67492bc020ec87807d4c9242513a13a7ae1eddf60985
MD5 70b8481d60705e3f34ff8cca8f91577d
BLAKE2b-256 f3d0b77e4600cf55d06b54be25eefd6e292744e82c9c32267e84e5c8dd3e7aa7

See more details on using hashes here.

File details

Details for the file django_ixp_tracker-1.3.3-py3-none-any.whl.

File metadata

File hashes

Hashes for django_ixp_tracker-1.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 5738fcf442b4c2a740923b403046c9cd281149645e425b58b61b3d7b831c6737
MD5 a3a3ec84a7a752e87283bbb7379e3b89
BLAKE2b-256 91207f9eef3378335053f8314520b5a5f50a8f1584bd4cac6758f0be9a31215e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page