App shows "invalid date" on all sessions

Hey! I’m trying to use agno monitoring but I receive “Invalid date” on all sessions. I don’t do any trickery with the monitoring config. I just specify an API key and set AGNO_MONITOR=true
my timezone is GMT-4

Any help would be appreciated :smiley:

my current time is 5:00 pm

Hi @json, thanks for reaching out and supporting Agno. I’ve shared this with the team, we’re working through all requests one by one and will get back to you soon.
If it’s urgent, please let us know. We appreciate your patience!

hey @json we show all date and time in utc format , and could you please share us the agent config to debug this issue , thanks :raising_hands:

sure :slight_smile:

this is my agent

Agent(
            # === CORE AGENT CONFIGURATION ===
            model=self.model,  # The LLM that powers the agent (OpenAI, Claude, etc.)
            name=self.name,  # Human-readable name for the agent instance
            description=self.purpose,  # Brief description that guides overall agent behavior
            instructions=[system_prompt],  # List of specific task instructions for the agent
            # === CONTEXT & PROMPTING ===
            context=context,  # Additional data/info to include in conversations
            add_context=add_context,  # If True, automatically adds context to user messages
            # === TOOL & OUTPUT CONFIGURATION ===
            show_tool_calls=True,  # Display function signatures when tools are called (great for debugging)
            markdown=True,  # Format responses using markdown for better readability
            read_chat_history=True,  # Gives agent a tool to read its own chat history when needed (from other threads)
            # === STORAGE & PERSISTENCE ===
            storage=self.storage,  # Database storage for saving sessions across requests
            memory=self.memory,  # Memory system for storing user preferences and facts
            # knowledge=self.knowledge,  # Knowledge base the agent can search for domain info
            # === MEMORY MANAGEMENT ===
            enable_agentic_memory=enable_agentic_memory,  # Gives agent tools to create/update/delete user memories
            add_memory_references=True,  # Automatically includes existing user memories in context
            # === CHAT HISTORY CONFIGURATION ===
            add_history_to_messages=bool(self.storage and self.memory),
            # Include chat history from other threads in messages automatically (only if storage & memory exist)
            num_history_responses=num_history_responses,  # Number of previous responses to include in context
            search_previous_sessions_history=True,  # Allow agent to search across previous sessions
            num_history_sessions=num_history_sessions,  # Number of past sessions to include in searches
            # === TIME AWARENESS ===
            add_datetime_to_instructions=True,  # Adds current date/time to give agent temporal context
            timezone_identifier="Etc/UTC",  # Sets timezone for datetime information
            # === SESSION SUMMARIES  ===
            # enable_session_summaries=True,  # Would create condensed summaries of long conversations
            # === MODEL RETRY PARAMETERS ===
            exponential_backoff=True,  # Use exponential backoff strategy between retries
            delay_between_retries=2,  # Base delay (seconds) between wretry attempts
            # === RELIABILITY & ERROR HANDLING ===
            retries=2,  # Number of times to retry failed model calls
            # === MONITORING & DEBUGGING ===
            debug_mode=Config.DEBUG_MODE,  # Show detailed logs including system prompts (from your config)
            telemetry=True,  #Disable/Enable sending usage data to Agno
            monitoring=True,  # Enable performance monitoring and metrics collection
        )