Langfuse logging improvements ## Description Please include a summary of the change and issue(s) fixed. Also, mention relevant motivation, context, and any dependencies that this change requires. Fixes # (issue) For reply suggestion: the errors are being stored inside output field, but observations should be marked as errors. For assistant: add credit_used metadata to filter handoffs from ai-replies For langfuse tool call: add `observation_type=tool` ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) ## How Has This Been Tested? Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration. before: <img width="1028" height="57" alt="image" src="https://github.com/user-attachments/assets/70f6a36e-6c33-444c-a083-723c7c9e823a" /> after: <img width="872" height="69" alt="image" src="https://github.com/user-attachments/assets/1b6b6f5f-5384-4e9c-92ba-f56748fec6dd" /> `credit_used` to filter handoffs from AI replies that cause credit usage <img width="1082" height="672" alt="image" src="https://github.com/user-attachments/assets/90914227-553a-4c03-bc43-56b2018ac7c1" /> set `observation_type` to `tool` <img width="726" height="1452" alt="image" src="https://github.com/user-attachments/assets/e639cc9b-1c6c-4427-887e-23e5523bf64f" /> ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [x] Any dependent changes have been merged and published in downstream modules
33 lines
1.5 KiB
Ruby
33 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Integrations::LlmInstrumentationConstants
|
|
# OpenTelemetry attribute names following GenAI semantic conventions
|
|
# https://opentelemetry.io/docs/specs/semconv/gen-ai/
|
|
ATTR_GEN_AI_PROVIDER = 'gen_ai.provider.name'
|
|
ATTR_GEN_AI_REQUEST_MODEL = 'gen_ai.request.model'
|
|
ATTR_GEN_AI_REQUEST_TEMPERATURE = 'gen_ai.request.temperature'
|
|
ATTR_GEN_AI_PROMPT_ROLE = 'gen_ai.prompt.%d.role'
|
|
ATTR_GEN_AI_PROMPT_CONTENT = 'gen_ai.prompt.%d.content'
|
|
ATTR_GEN_AI_COMPLETION_ROLE = 'gen_ai.completion.0.role'
|
|
ATTR_GEN_AI_COMPLETION_CONTENT = 'gen_ai.completion.0.content'
|
|
ATTR_GEN_AI_USAGE_INPUT_TOKENS = 'gen_ai.usage.input_tokens'
|
|
ATTR_GEN_AI_USAGE_OUTPUT_TOKENS = 'gen_ai.usage.output_tokens'
|
|
ATTR_GEN_AI_USAGE_TOTAL_TOKENS = 'gen_ai.usage.total_tokens'
|
|
ATTR_GEN_AI_RESPONSE_ERROR = 'gen_ai.response.error'
|
|
ATTR_GEN_AI_RESPONSE_ERROR_CODE = 'gen_ai.response.error_code'
|
|
|
|
TOOL_SPAN_NAME = 'tool.%s'
|
|
|
|
# Langfuse-specific attributes
|
|
# https://langfuse.com/integrations/native/opentelemetry#property-mapping
|
|
ATTR_LANGFUSE_USER_ID = 'langfuse.user.id'
|
|
ATTR_LANGFUSE_SESSION_ID = 'langfuse.session.id'
|
|
ATTR_LANGFUSE_TAGS = 'langfuse.trace.tags'
|
|
ATTR_LANGFUSE_METADATA = 'langfuse.trace.metadata.%s'
|
|
ATTR_LANGFUSE_TRACE_INPUT = 'langfuse.trace.input'
|
|
ATTR_LANGFUSE_TRACE_OUTPUT = 'langfuse.trace.output'
|
|
ATTR_LANGFUSE_OBSERVATION_TYPE = 'langfuse.observation.type'
|
|
ATTR_LANGFUSE_OBSERVATION_INPUT = 'langfuse.observation.input'
|
|
ATTR_LANGFUSE_OBSERVATION_OUTPUT = 'langfuse.observation.output'
|
|
end
|