pavolloffay / jaeger-ui

Web UI for Jaeger

Home Page:https://uber.github.io/jaeger/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ReadTheDocs Build Status Coverage Status

Jaeger UI

Visualize distributed tracing with Jaeger.

Development

The app was built with create-react-app.

Running the application

Fork, then clone the jaeger-ui repo and change directory into it.

git clone https://github.com/uber/jaeger-ui.git
cd jaeger-ui

Install npm dependencies via npm or yarn:

npm install

Make sure you have the Jaeger Query service running on port 3001. If you don't have it running locally, then tunnel to the correct host and port.

ssh -fN -L 3001:localhost:$JAEGER_BACKEND_PORT $JAEGER_BACKEND_HOST

Start the development server with hot loading:

npm start

Commands

Command Description
npm start Starts development server with hot reloading and api proxy.
npm test Runs all the test
npm run lint Lint the project (eslint, prettier, flow)
npm run build Runs production build. Outputs files to /dist.

Build

Running build will output all the static files to the ./dist folder:

npm install
npm run build

Enable Google Analytics

To enable Google Analytics tracking, set the REACT_APP_GA_ANALYTICS_ID env variable with your GA tracking ID before running the build:

export REACT_APP_GA_ANALYTICS_ID = UA-*******-**
npm run build

Build Status

About

Web UI for Jaeger

https://uber.github.io/jaeger/

License:MIT License


Languages

Language:JavaScript 89.7%Language:CSS 9.9%Language:HTML 0.3%Language:Shell 0.1%