> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allyy.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Monitoring Dashboard

> Documentation for Monitoring Dashboards and Logs

export const ImageText = ({imageUrl, imageAlt, children, rightImagePosition = false}) => {
  const getFullImageUrl = url => {
    if (typeof window !== 'undefined' && (window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1' || window.location.hostname.startsWith('192.168.') || window.location.hostname === '[::1]')) {
      return url;
    }
    return `https://mintlify.s3-us-west-1.amazonaws.com/allyyio${url}`;
  };
  const fullImageUrl = getFullImageUrl(imageUrl);
  const containerStyle = {
    display: 'flex',
    alignItems: 'center',
    flexDirection: rightImagePosition ? 'row' : 'column',
    width: '100%'
  };
  const imageStyle = {
    width: '100%',
    marginRight: rightImagePosition ? '20px' : '0',
    marginTop: rightImagePosition ? '0' : '10px'
  };
  const textStyle = {
    width: rightImagePosition ? '80%' : '100%'
  };
  return <div style={containerStyle}>
      <div style={textStyle}>
        {children}
      </div>
      <img src={fullImageUrl} style={imageStyle} alt={imageAlt} />
    </div>;
};

The **Monitoring** page provides an overview of all processes occurring or that have occurred in the system. It’s divided into five categories: **Datasets**, **Models**, **Predictions**, **Exports**, and **Workflows**. Each category tracks processes relevant to its function, allowing users to monitor activities at a glance.

## **Overview**:

<Tabs>
  <Tab title="Monitoring Dashboard">
    <ImageText imageUrl="/images/processes/monitoring/monitoring_1.png" imageAlt="Monitoring Dashboard Overview">
      ### **Monitoring Dashboard**

      The Monitoring Dashboard displays processes executed over a timeline, allowing users to see when each process took place and its outcome. This is your central hub for tracking system operations.

      **Key Features:**

      * **Processes Tracked**: Datasets uploaded, models trained, predictions generated, exports synchronized, and workflows triggered are displayed by category.
      * **Time Horizon**: A timeline that shows process executions. You can adjust the **date selector** to view historical data and toggle between **monthly** and **weekly** views.
      * **Color-Coded Status**:
        * **Green**: Process completed successfully.
        * **Blue**: Process is in progress.
        * **Red**: Process failed (click for more details).
        * **No Block**: No processes ran that day.
      * **Multiple Executions**: If a process was executed multiple times in a day, a number shows the count. Hovering over the number shows details of each run, with the latest result on the right.
      * **Click for Details**: Clicking on any block redirects you to the specific history page filtered for that execution.
    </ImageText>
  </Tab>

  <Tab title="Logs">
    <ImageText imageUrl="/images/processes/monitoring/monitoring_2.png" imageAlt="Logs Overview">
      ### **Logs**

      The Logs page offers a real-time view of ongoing and completed processes, allowing users to monitor the system in a table format.

      **Key Features:**

      * **Real-Time Updates**: Provides a live stream of all processes happening in the system, with outcomes displayed as they occur.
      * **Status Indicators**: Uses the same color-coding system as the Monitoring Dashboard for quick identification:
        * Green for successful processes
        * Blue for in-progress tasks
        * Red for failed tasks
      * **Redirect to Details**: Clicking on any row in the table takes you to the process history page, where you can investigate further details for that specific process.
    </ImageText>
  </Tab>
</Tabs>

***

## **Conclusion**:

The **Monitoring Dashboard** and **Logs** are essential tools for tracking system operations, providing users with both a historical overview and real-time updates of all processes within the platform.

* **Monitoring Dashboard**: This tool allows you to visually track when processes have run and their outcomes over time. The **color-coded status indicators** give a quick health check of operations. Whether you're troubleshooting a failed process or ensuring workflows are triggered successfully, the dashboard provides immediate insights. Additionally, you can drill down into process histories for detailed transparency and debugging.

* **Logs**: While the Monitoring Dashboard offers a high-level view, the Logs page gives a real-time stream of events happening in the system. This allows for **instant feedback** on current operations and is especially useful for monitoring in-progress tasks or investigating issues as they arise.

Together, these two tools empower users to maintain control over system operations, troubleshoot issues, and ensure that everything is running smoothly.
