Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added the OpenTelemetry trace support #2477

Merged
merged 13 commits into from
Mar 15, 2024
Prev Previous commit
Next Next commit
Apply suggestions from code review
  • Loading branch information
imbajin authored Mar 14, 2024
commit 0e6cf9ec1420f97e258bcae113cbff8e111c2375
3 changes: 1 addition & 2 deletions hugegraph-server/hugegraph-dist/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,8 @@ If you want to customize the preloaded data, please mount the groovy scripts (no

> CAUTION:
>
> The docker-compose-trace.yaml file utilizes Grafana and Grafana-Tempo, both of which are licensed under AGPL-3.0, requiring users to disclose their source code.
> The `docker-compose-trace.yaml` utilizes `Grafana` and `Grafana-Tempo`, both of them are licensed under [AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.en.html), you should be aware of and use them with caution. Currently, we mainly provide this template for everyone to **test**
>
> [GNU AFFERO GENERAL PUBLIC LICENSE](https://www.gnu.org/licenses/agpl-3.0.en.html)
1. Start Open-Telemetry-Collector

```bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ if [ "${OPEN_TELEMETRY}" == "true" ]; then
fi
fi

# Note: remember update it if we change the jar
expected_md5="e3bcbbe8ed9b6d840fa4c333b36f369f"
actual_md5=$(md5sum "${OT_JAR_PATH}" | awk '{print $1}')

Expand Down
Loading