We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When creating Helidon SE version 3.2.3 project using starter, with Zipkin Tracing https://helidon.io/starter/3.2.3?step=9&app-type=custom&tracing=true&tracing.provider=zipkin
wrong tracing configuration is created:
tracing: zipkin: service: "helidon-service" protocol: "https" host: "192.168.1.1" port: 9987 api-version: 1 # this is the default path for API version 2 path: "/api/v2/spans" tags: tag1: "tag1-value" tag2: "tag2-value" boolean-tags: tag3: true tag4: false int-tags: tag5: 145 tag6: 741
the application fails to start.
The proposed config is:
tracing: service: "helidon-service" protocol: "https" host: "192.168.1.1" port: 9987 api-version: 1 # this is the default path for API version 2 path: "/api/v2/spans" tags: tag1: "tag1-value" tag2: "tag2-value" boolean-tags: tag3: true tag4: false int-tags: tag5: 145 tag6: 741
The text was updated successfully, but these errors were encountered:
host: "192.168.1.1" is also proposed to be different. For example localhost.
host: "192.168.1.1"
localhost
Sorry, something went wrong.
tvallin
Successfully merging a pull request may close this issue.
Environment Details
When creating Helidon SE version 3.2.3 project using starter, with Zipkin Tracing
https://helidon.io/starter/3.2.3?step=9&app-type=custom&tracing=true&tracing.provider=zipkin
wrong tracing configuration is created:
the application fails to start.
The proposed config is:
The text was updated successfully, but these errors were encountered: