# aliyun-log-jaeger-ui **Repository Path**: mirrors_aliyun/aliyun-log-jaeger-ui ## Basic Information - **Project Name**: aliyun-log-jaeger-ui - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-10-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![ReadTheDocs][doc-img]][doc] [![Build Status][ci-img]][ci] [![Coverage Status][cov-img]][cov] [![FOSSA Status][fossa-img]][fossa] # Jaeger UI Visualize distributed tracing with Jaeger. ## Contributing See [CONTRIBUTING](./CONTRIBUTING.md). ## Development The app was built with [create-react-app](https://github.com/facebookincubator/create-react-app). ### Running the application Fork, then clone the `jaeger-ui` repo and change directory into it. ``` git clone https://github.com/jaegertracing/aliyun-log-jaeger-ui.git cd jaeger-ui ``` Use the recommended npm and Node versions: (defined in [.nvmrc](./.nvmrc) file): ``` nvm use ``` Install dependencies via `npm` or `yarn`: ``` npm install # or yarn ``` Make sure you have the Jaeger Query service running on http://localhost:16686. For example, you can run Jaeger all-in-one Docker image as descibed in the [documentation][aio-docs]. If you don't have it running locally, then tunnel to the correct host and port. ``` ssh -fN -L 16686:$BACKEND_HOST:$BACKEND_PORT $BACKEND_PORT ``` 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 tests | | `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 ``` ## UI Configuration See the [deployment guide](http://jaeger.readthedocs.io/en/latest/deployment/#ui-configuration) for details on configuring Google Analytics tracking and menu customizations. [doc-img]: https://readthedocs.org/projects/jaeger/badge/?version=latest [doc]: http://jaeger.readthedocs.org/en/latest/ [ci-img]: https://travis-ci.org/jaegertracing/jaeger-ui.svg?branch=master [ci]: https://travis-ci.org/jaegertracing/jaeger-ui [cov-img]: https://codecov.io/gh/jaegertracing/jaeger-ui/branch/master/graph/badge.svg [cov]: https://codecov.io/gh/jaegertracing/jaeger-ui [aio-docs]: http://jaeger.readthedocs.io/en/latest/getting_started/ [fossa-img]: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fjaegertracing%2Fjaeger-ui.svg?type=shield [fossa]: https://app.fossa.io/projects/git%2Bgithub.com%2Fjaegertracing%2Fjaeger-ui?ref=badge_shield