zipkin-dependencies
Spark job that aggregates zipkin spans for use in the UI
File Explorer
Download Latest Version (.zip)- bug.md
- config.yml
- feature.md
- create_release.yml
- deploy.yml
- docker_push.yml
- lint.yml
- security.yml
- test.yml
- test_readme.yml
- CONTRIBUTING.md
- maven-wrapper.jar
- maven-wrapper.properties
- configure_docker
- configure_docker_push
- docker_arch
- docker_args
- docker_build
- docker_push
- login_git
- version_from_trigger_tag
- configure_gpg
- maven_build
- maven_build_or_unjar
- maven_deploy
- maven_go_offline
- maven_opts
- maven_release
- maven_unjar
- configure_deploy
- configure_lint
- configure_test
- deploy
- docker_push
- lint
- mlc_config.json
- README.md
- test
- CassandraDependenciesJob.java
- CassandraRowsToDependencyLinks.java
- CassandraRowToSpan.java
- SpansToDependencyLinks.java
- CassandraDependenciesJobTest.java
- CassandraContainer.java
- ITCassandraDependencies.java
- ITCassandraDependenciesHeavy.java
- log4j2.properties
- pom.xml
- start-zipkin-dependencies
- .dockerignore
- docker-compose-cassandra3.yml
- docker-compose-elasticsearch.yml
- docker-compose-mysql.yml
- docker-compose-opensearch.yml
- docker-compose.yml
- README.md
- zipkin-dependencies-yesterday
- zipkin-dependencies-today
- Dockerfile
- README.md
- ElasticsearchDependenciesJob.java
- package-info.java
- TraceIdAndJsonToDependencyLinks.java
- ElasticsearchDependenciesJobTest.java
- ElasticsearchContainer.java
- IgnoredDeprecationWarnings.java
- ITElasticsearchDependenciesHeavyV8.java
- ITElasticsearchDependenciesHeavyV9.java
- ITElasticsearchDependenciesV8.java
- ITElasticsearchDependenciesV9.java
- log4j2.properties
- pom.xml
- LogInitializer.java
- package-info.java
- ZipkinDependenciesJob.java
- ZipkinElasticsearchStorage.java
- log4j2.properties
- ZipkinDependenciesJobTest.java
- ZipkinElasticsearchStorageTest.java
- pom.xml
- DependencyLinkSpanIterator.java
- MySQLDependenciesJob.java
- package-info.java
- PeekingIterator.java
- RowsToDependencyLinks.java
- ITMySQLDependencies.java
- ITMySQLDependenciesHeavy.java
- MySQLContainer.java
- log4j2.properties
- pom.xml
- OpensearchDependenciesJob.java
- package-info.java
- TraceIdAndJsonToDependencyLinks.java
- OpensearchDependenciesJobTest.java
- IgnoredDeprecationWarnings.java
- ITOpensearchDependenciesHeavyV2.java
- ITOpensearchDependenciesV2.java
- OpensearchContainer.java
- log4j2.properties
- pom.xml
- header.txt
- .dockerignore
- .editorconfig
- .gitignore
- .settings.xml
- LICENSE
- mvnw
- mvnw.cmd
- pom.xml
- README.md
- RELEASE.md
- SECURITY.md
# Installation Guide
1. Get the code
git clone https://github.com/openzipkin/zipkin-dependencies
Downloads the entire project code from GitHub to your computer.
cd zipkin-dependencies
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
$ docker run --env STORAGE_TYPE=cassandra3 --env CASSANDRA_CONTACT_POINTS=host1,host2 openzipkin/zipkin-dependencies
Runs the built image as an actual container.
Elasticsearch / OpenSearch cluster is in Docker. Defaults to false
Type this command into your terminal and run it.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
Pulled directly from this repo's README.
3. Maven (Java)
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- JDK (Java) Required to build and run Java projects.
- Maven The build tool used for the mvn command.
cd cassandra3
This project's files live in a subfolder, so move into it first.
mvn clean install
Installs dependencies and builds the project using Maven.
A BUILD SUCCESS message means it worked. The output is created under target/.
// repository documentation
Was this content helpful?
(0 ratings)
