Coder Social home page Coder Social logo

node-tryfer's Introduction

node-tryfer: A Node Zipkin Tracer Library

Build Status

Zipkin is a Distributed Tracing system, tryfer is a Python/Twisted client library for Zipkin, and node-tryfer is a port of tryfer.

Tryfer (and by extention node-tryfer) is heavily influenced by Finagle's tracing libraries.


HTTP Tracing examples

To see an example of tracing working in an http client and on an http server, run in one terminal:

node examples/tracing_server.js

This starts the express web server, which supports tracing headers from an http client. For example, run the sample client in another terminal, and get the root page from the express web server:

node examples/tracing_client.js GET http://localhost:8080/

In the client terminal, you will see a list of all the traces that the client records, which look like this:

--- Trace ---
[
  {
    "trace_id": "55bad31800000000",
    "span_id": "6ec7e90a00000000",
    "name": "GET",
    "annotations": [
      {
        "key": "http.uri",
        "value": "http://localhost:8080/",
        "type": "string"
      }
    ]
  }
]

There should be a URI annotation, a client send annotation, a client receive annotation, and extra string annotations documenting aspects of the response from the server.

In the server terminal, you will see a list of all the traces that the server records, which look like this:

--- Trace ---
[
  {
    "trace_id": "55bad31800000000",
    "span_id": "6ec7e90a00000000",
    "name": "GET",
    "annotations": [
      {
        "key": "sr",
        "value": 1346194548062000,
        "type": "timestamp",
        "host": {
          "ipv4": "127.0.0.1",
          "port": 8080,
          "service_name": "example-http-server"
        }
      }
    ]
  }
]

Note that the trace id and the span id are the same, showing that this is all part of the same trace. In addition, the server adds its endpoint to the trace (where the server is running).

There should be a server receive annotation, zero or more string annotations containing information about the request itself, and then a server send annotation.

In both the client and the server example, the debug tracer is used to print out the traces. Not all tracers do something as soon as record is called - some tracers may batch up annotations and/or traces, as opposed to shipping them to zipkin as soon as record as called.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.