All Projects → SAP-archive → Tracer

SAP-archive / Tracer

Licence: Apache-2.0 license
Distributed tracing visualization and debugging assistant.

Programming Languages

typescript
32286 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
Dockerfile
14818 projects

Important Notice

This public repository is read-only and no longer maintained.

Tracer

Tracing visualization and debugging assistant for distributed systems.

alt text

Contents

Demo

The demo is configure with few record in the history panel.

Why should I use Tracer?

For me, it all starts when I diagnosed a production issue that spared across a few microservices.
While trying to make sense I drew the flow who call who, why?
Then realized that I spent a lot of time and effort trying to understand the flow and visual it.

I decided to find a better way, then when Tracer was born.

Tracer helps you focus on the "bigger picture" by exposing you to a simplified sequence diagram.
There are other great tools most of them are focus performance or better suite to read flow that compose form hundreds of interaction.

How to run on your development machine

Run ng serve for a dev server.
Navigate to http://localhost:4200/.
The app will automatically reload if you change any of the source files.

Build

Run ng build to build the project.
The build artifacts will be stored in the dist/ directory.
Use the --prod flag for a production build.

Docker

Docker Build

 docker build -t tracer .

Docker Run

docker run 
--env TRACER_ENV_TracingProviderName='serverSide'
--env TRACER_ENV_TracingProviderUrl='http://Server'
-p 127.0.0.1:3001:80 tracer
environment variables Values Description
TRACER_ENV_TracingProviderName zipkin,serverSide Setting the Tracing provider name
TRACER_ENV_TracingProviderUrl URL http://Server Tracing provider server

visit the app

Tracing Provider

After selecting the tracing provider it should be configure in the environments settings (\src\environments\environment.prod.ts and \src\environments\environment.ts).

Zipkin Provider

  tracingProvider: {
  	 name: 'zipkin',
	   url: 'http://localhost:9411'
 }

💡 it use internally Zipkin v2 API /trace/{traceId}

Server Side Tracing Provider

 tracingProvider: {
  	 name: 'serverSide',
	   url:  'http://YourSearchService.com/v1'
 }

Server Side tracing provider let you create your own provider without chancing tracer source code.

Create a API that receive Get request to /trace/{traceId} and return Tracer format.

💡 Add CORS support by adding header "Access-Control-Allow-Origin", "*"` .

File provider

  • Load event list from disk.

  • Save events on disk.

Data Model

The application receive from the tracing provider array of Data Model:

[   
     {
      'tracer': {
                'traceId': 'guid',
                'direction': 0,
                'durationMs': 15,
                'spanId': '2',
                'parentSpanId': '1',
                'from': {
                        'name': 'Web'
                       },
                'to': {
                     'name': 'ShoppingCart'
                      },
                'timestamp': 1579170558105231,
                'action': 'GetOrder',
      },
      additionalfield1:1,
      additionalfield2:2
      }
  ]
  
Field Description
traceId Every flow must have an unique identifier (a flow is comprised of all entities interactions of a single logical transaction)
traceId should be identical across all event.
spanId An unique identifier to define a new scope. Any interactions forked from this one, will inherit it as a parentSpanId
parentSpanId The parent scope id (the first scope expected to be with no parentSpanId)
durationMs The time elapsed
direction A numeration that effect the sequence diagram:

Logical transaction:
All the inner interactions will be in the same operation block .
comprise of start and end, when one of them is missing it will auto generate it (The line courser will be with cross ).

Case 0 logical transaction start (striate line )
Case 1 logical transaction end (dashed line )


Action with no continuation:
A simple line with no side effect ,Log are excellent example of it.
Case 2 Action Start ( striate line )
action The action title, e.g. login, GetUserList
timestamp The timestamp the action started
Epoch microseconds of this event.
error An error message, if present, changes the line styling to red.
from.name A system name generates this request
to.name A system, the request calling to (in a log entry it calling to itself)
metadata An auto generated field (don't use this field)

Any additional fields will be automatically added and can be examine.

Ordering

The Sequence Diagram is like tree that start at the top item. The next level are all the node (spanId) with the same preantSpanId .

Top item: recommended to be one event with no parentSpanId.

License

Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
This file is licensed under the Apache 2.0 except as noted otherwise in the LICENSE file.

Please note that Docker images can contain other software which may be licensed under different licenses.
This License file is also included in the Docker image.
For any usage of built Docker images please make sure to check the licenses of the artifacts contained in the images.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].