Go to file
R. Tyler Croy 89c8038a42
Merge pull request #32 from rtyler/clean-up
Clean up some npm versions
2018-11-27 07:08:11 -08:00
config Use the hostname for the production environment 2018-09-20 13:35:39 -07:00
migrations Add a materialized view to capture the first time a type has been seen for export 2018-10-26 15:49:09 -07:00
public Add some screenshots 2018-09-11 16:48:58 -07:00
seeders Add support for restricting access via grants 2018-09-20 17:06:42 -07:00
src Remove the REFRESH MATERIALIZED VIEW interval 2018-11-26 13:01:53 -08:00
test Add a test to cover the Jenkins core compatibility 2018-10-28 15:53:31 -07:00
tools Incorporate Sentry error reporting into Uplink 2018-09-27 11:55:08 -07:00
views Export with arbitrary date ranges to satisfy the users 2018-10-27 14:33:12 -07:00
.dockerignore Ensure that migrations are run when the container boots 2018-10-22 10:34:19 -07:00
.editorconfig
.gitignore Enable test reporting from jest 2018-09-09 18:20:49 -07:00
.sequelizerc Switch Events to a lower-case table name since postgresql is weird with casing 2018-09-10 09:36:39 -07:00
Dockerfile Make migration failures non-fatal to starting the application 2018-10-27 15:53:57 -07:00
Jenkinsfile Update Jenkinsfile 2018-10-11 19:51:12 -07:00
LICENSE.txt
Makefile Use a real-looking old-style correlator in the `generate-event` target 2018-10-28 15:53:31 -07:00
README.adoc Add a build badge to the README 2018-09-20 13:49:43 -07:00
activate
docker-compose.yml Incorporate Sentry error reporting into Uplink 2018-09-27 11:55:08 -07:00
package-lock.json Downgrade event-stream to 3.3.4 to work around compromised flatmap-stream code 2018-11-27 06:38:57 -08:00
package.json Downgrade event-stream to 3.3.4 to work around compromised flatmap-stream code 2018-11-27 06:38:57 -08:00
tsconfig.json Incorporate Sentry error reporting into Uplink 2018-09-27 11:55:08 -07:00

README.adoc

<html lang="en"> <head> </head>

Uplink

icon?style=plastic

uplink is a simple web application to receive short bursts of anonymous telemetry data from Jenkins instances.

logged in
Figure 1. Logged in to Uplink

Development

  • Running tests: make check

  • Running the server: make run

Uploading a test event

curl -d '{"type":"stapler", "correlator" : "my-correlator-id", "payload" : {"hi" : "there"}}' \
    -H "Content-Type: application/json" \
    http://localhost:3030/events

Database Debugging

make debug-db
</html>