GalileoLogger
Manual control over logging with the GalileoLogger class
The GalileoLogger
class provides the most granular control over logging in Galileo. While the wrappers and @log decorator are recommended for most use cases, the GalileoLogger
gives you complete flexibility when you need it.
Overview
The GalileoLogger
class allows you to:
- Manually create and manage traces
- Add spans of different types to your traces
- Control exactly what data gets logged
- Explicitly manage when traces are flushed to Galileo
This approach requires more code than using wrappers or decorators but gives you the most control over the logging process.
Basic Usage
Here’s a simple example of using the GalileoLogger
to log an LLM call:
Detailed API
Initialization
Starting a Trace
Adding Spans
The GalileoLogger
supports adding different types of spans to your traces:
LLM Spans
Retriever Spans
Tool Spans
Workflow Spans
Concluding and Flushing
Advanced Usage
Creating a Single-Span Trace
For simple LLM calls, you can create a trace with a single LLM span in one step:
Complex Trace Example
Here’s an example of creating a more complex trace with multiple spans:
Best Practices
-
Use higher-level abstractions when possible: The
@log
decorator and wrappers are easier to use and less error-prone. -
Flush traces when appropriate: Call
flush()
at the end of a request or user interaction to ensure data is sent to Galileo. -
Include relevant metadata: Add tags and metadata to make it easier to filter and analyze your traces.
-
Structure spans logically: Create a span hierarchy that reflects the logical structure of your application.
-
Handle errors gracefully: Include status codes and error information in your spans to help with debugging.
Related Resources
- @log Decorator - For a simpler way to log function calls
- OpenAI Wrapper - For automatic logging of OpenAI calls
- Langchain Integration - For logging Langchain workflows
- galileo_context() - For managing trace context and automatic flushing
- OpenTelemetry logging - Using OpenTelemetry for logging traces in Python