Crawl GitHub APIs and store the discovered orgs, repos, commits, ...
Перейти к файлу
Gene Hazan 745635a9f0 Merge pull request #81 from Microsoft/jm/fixTest
Fix up tests broken during refactoring
2017-04-07 13:22:16 -07:00
.vscode add root request to log meta object 2017-04-04 20:18:25 -07:00
bin Merge ospo-ghcrawler into ghcrawler 2017-03-09 16:22:33 -08:00
docker update name of dashboard 2017-03-23 10:30:45 -07:00
jobs Gh/deleted entities (#74) 2017-04-07 11:34:16 -07:00
lib Merge remote-tracking branch 'origin/develop' into jm/fixTest 2017-04-07 13:21:04 -07:00
middleware Merge ospo-ghcrawler into ghcrawler 2017-03-09 16:22:33 -08:00
providers Merge remote-tracking branch 'origin/develop' into jm/fixTest 2017-04-07 13:21:04 -07:00
routes Gh/deleted entities (#74) 2017-04-07 11:34:16 -07:00
test Merge remote-tracking branch 'origin/develop' into jm/fixTest 2017-04-07 13:21:04 -07:00
.dockerignore Merge ospo-ghcrawler into ghcrawler 2017-03-09 16:22:33 -08:00
.eslintrc.json massive rework of traversal 2016-11-30 17:54:48 -08:00
.gitignore Merge ospo-ghcrawler into ghcrawler 2017-03-09 16:22:33 -08:00
Dockerfile Add missing copyright headers and remove test file 2017-03-17 13:46:50 -07:00
LICENSE Update LICENSE 2017-03-02 19:42:02 -08:00
README.md trim ciab doc 2017-03-15 22:53:58 -07:00
app.js Use modules directly 2017-03-10 09:28:54 -08:00
index.js Use modules directly 2017-03-10 09:28:54 -08:00
package.json Fix paths 2017-03-09 16:44:45 -08:00
web.config Replace iisnode.yml with web.config 2017-04-06 15:22:15 -07:00

README.md

Version License Downloads

GHCrawler

GHCrawler is a robust GitHub API crawler that walks a queue of GitHub entities transitively retrieving and storing their contents. GHCrawler is primarily intended for people trying to track sets of orgs and repos. For example, the Microsoft Open Source Programs Office uses this to track 1000s of repos in which Microsoft is involved. In short, GHCrawler is great for:

  • Retreiving all GitHub entities related to an org, repo, user, team, ...
  • Efficiently storing and the retrieved entities
  • Keeping the stored data up to date when used in conjunction with a GitHub webhook to track events

GHCrawler focuses on successively retrieving and walking GitHub API resources supplied on a (set of) queues. Each resource is fetched, processed, plumbed for more resources to fetch and ultimately store. Discovered resources are themselves queued for further processing. The crawler is careful to not repeatedly fetch the same resource. It makes heavy use of etags, Redis, client-side rate limiting, and GitHub token pooling and rotation to optimize use of your API tokens and not beat up the GitHub API.

The crawler can be configured to use a variety of different queuing technologies (e.g., AMQP 1.0 and AMQP 0.9 compatible queues like Azure ServiceBus and Rabbit MQ, respectively), and storage systems (e.g., Azure Blob and MongoDB). You can create your own infrastructure plugins to use different technologies.

Documentation

This page is essentially the Quick Start Guide for using the crawler. Detailed and complete documentation is maintained in

  • This project's wiki for documentation on the crawler itself
  • The Dashboard repo, for information on the browser-based crawler management dashboard
  • The Command line repo, for details of controlling the crawler from the command line

Running in-memory

The easiest way try our the GHCrawler is to run it in memory. You can get up and running in a couple minutes. This approach does not scale and is not persistent but it's dead simple.

  1. Clone the Microsoft/ghcrawler repo.
  2. Run npm install in the clone repo directory to install the prerequisites.
  3. Run the crawler using node bin/www.js.

Once the service is up and running, you should see some crawler related messages in the console output every few seconds. You can control the crawler either using the cc command line tool or a browser-based dashboard, both of which are described below. Note that since you are running in memory, if you kill the crawler process, all work will be lost. This mode is great for playing around with the crawler or testing.

Running Crawler-In-A-Box (CIABatta)

If you want to persist the data gathered and create some insights dashboards in small to medium production system, you can run GHCrawler in Docker with Mongo, Rabbit, and Redis infrastructure using the Crawler-in-a-box (CIABatta) approach. This setup also includes Metabase for building browser-based insights and gives you a browser-based control-panel for observing and controlling the crawler service.

NOTE This is an evolving solution and the steps for running will be simplified published, ready-to-use images on Docker Hub. For now, follow these steps

  1. Clone the Microsoft/ghcrawler and Microsoft/crawler-dashboard repos.
  2. In a command prompt go to ghcrawler/docker and run docker-compose up.

Once the containers are up and running, you should see some crawler related messages in the container's console output every few seconds. You can control the crawler either using the cc command line tool or the browser-based dashboard, both of which are described below.

Check out the related GHCrawler wiki page for more information on running in Docker.

Deploying native

For ultimate flexibility, the crawler and associated bits can be run directly on VMs or as an app service. This structure typically uses cloud-based infrastructure for queuing, storage and redis. For example, this project comes with adapters for Azure Service Bus queuing and Azure Blob storage. The APIs on these adpaters is very slim so it is easy to for you to implement (and contribute) more.

Setting up this operating mode is a bit more involved and is not yet documented.

Event tracking

The crawler can hook and track GitHub events by listening webhooks. To set this up,

  1. Create a webhook on your GitHub orgs or repos and point it at the running crawler. When events are on the webhook should point to
  https://<crawler machine>:3000/webhook
  1. Set the crawler to handle webhook events by modifying the queuing.events property in the Runtime configuration or setting the CRAWLER_EVENT_PROVIDER Infrastructure setting to have the value webhook. In both cases changing the value requires a restart. Note that you can turn off events by setting the value to none.

If you are using signature validation, you must set the Infrastructure setting CRAWLER_WEBHOOK_SECRET to the value you configured into the GitHub webhook.

Controlling the crawler

Given a running crawler service (see above), you can control it using either a simple command line app or a browser-based dashboard.

cc command line

The crawler-cli (aka cc) can run interactively or as a single command processor and enables a number of basic operations. For now the crawler-cli is not published as an npm. Instead, [clone its repo]((https://github.com/Microsoft/crawler-cli.git), run npm install and run the command line using

node bin/cc -i [-s <server url>]

The app's built-in help has general usage info and more details can be found in the project's readme. A typical command sequence shown in the snippet below starts cc in interactive mode talking to the crawler on http://localhost:3000 (default if -s is not specified), configures the crawler with a public and an admin GitHub token, and then queues and starts the processing of the repo called contoso-d/test.

> node bin/cc -i
http://localhost:3000> tokens 43984b2dead7o4ene097efd97#public 972bbdfe09dead704en82309#admin
http://localhost:3000> queue contoso-d/test
http://localhost:3000> start
http://localhost:3000> exit
>

Browser dashboard

The crawler dashboard gives you live feedback on what the crawler is doing as well as better control over the crawler's queues and configuration. Some configurations (e.g., Docker) include and start the dashboard for free. If you need to deploy the dashboard explicitly, clone the Microsoft/crawler-dashboard repo and follow the instructions in the README found there.

Once the dashboard service is up and running, point your browser at the dashboard endpoint (http://localhost:4000 by default). Detail information is included in the dashboard README.

Note that the dashboard does not report queue message rates (top right graph) when used with the memory-based crawler service as that mechanism requires Redis to record activity.

Working with the code

Build

npm install

Unit test

npm test

Integration test

npm run integration

Run

node ./bin/www.js

Contributing

The project team is more than happy to take contributions and suggestions.

To start working, run npm install in the repository folder to install the required dependencies. See the usage section for pointers on how to run.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Known issues

It is clearly early days for the crawler so there are a number of things left to do. Most of the concrete work items are captured in repo issues. Broadly speaking there are several types of work:

  • Documentation -- The crawler code itself is relatively straightforward but some of the architecture, control and extensibility points are not called out.
  • Ease of use -- There are a number of places where running and managing the crawler is just clumsy and error prone
  • Completeness -- There are a few functional gaps in certain scenarios that need to be addressed.
  • Docker configuration -- Several items in making the Docker configuration real
  • Analysis and insights -- Metabase is supplied in the Docker configuration but relatively little has been done with analyzing the harvested data.