Revise Langfuse integration guide for Quarkus#3047
Open
edeandrea wants to merge 1 commit into
Open
Conversation
Updated the integration guide for Langfuse with Quarkus LangChain4j to include the Quarkus Langfuse extension and improved clarity in configuration steps.
|
@edeandrea is attempting to deploy a commit to the langfuse Team on Vercel. A member of the Team first needs to authorize it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated the integration guide for Langfuse with Quarkus LangChain4j to include the Quarkus Langfuse extension and improved clarity in configuration steps.
Greptile Summary
This PR revises the Quarkus LangChain4j integration guide to lead with the new
quarkus-langfuseQuarkiverse extension instead of manual OpenTelemetry configuration, significantly simplifying the setup steps from ~5 config properties down to 3. The old manual OTel approach is preserved as a "Manual Configuration" appendix.quarkus-langfuseas the recommended dependency, documents the threeapplication.propertieskeys (base-url,username,password), and lists everything the extension auto-configures (OTLP endpoint, auth headers, span filtering, prompt/completion tracing, DevServices support).titleanddescriptionstill say "Using OpenTelemetry", which no longer reflects the primary approach described in the guide.Confidence Score: 4/5
Safe to merge after addressing the three small copy issues — none affect runtime behaviour.
The content changes are accurate and well-structured. The only issues are a typo ("toyour"), a brand-name capitalisation regression in the code sample ("LangFuse" instead of "Langfuse"), and frontmatter that still advertises the OpenTelemetry-first approach the guide has just moved away from. All three are easy one-line fixes.
content/integrations/frameworks/quarkus-langchain4j.mdx — frontmatter title/description, line 23 typo, and line 94 capitalisation.
Sequence Diagram
sequenceDiagram participant App as Quarkus App participant Ext as quarkus-langfuse extension participant OTel as OTel SDK (quarkus-opentelemetry) participant LF as Langfuse Cloud / Self-hosted App->>OTel: AI call (ChatModel invocation) OTel->>Ext: "Span produced (gen_ai.* attributes)" Ext->>Ext: Filter spans (AI_ONLY mode), set input/output attributes Ext->>LF: Export via OTLP/HTTP (Basic auth) LF-->>App: Traces visible in Langfuse UI note over Ext,LF: In dev/test mode, DevServices auto-starts a local Langfuse instancePrompt To Fix All With AI
Reviews (1): Last reviewed commit: "Revise Langfuse integration guide for Qu..." | Re-trigger Greptile