Chart

The Chart dashboard panel is used for displaying a graphical chart from any data source. Chart types include:

Data sources can come from database queries or AJAX calls.

Form Fields

Examples

Example 1

Create a query to return real-time event data for a line, area, bar, or column chart.

Steps

  1. Go to the Queries UI:

    Configuration -> Databases -> Queries

  2. Click on the Add button, then set the following:

    1. Query Name => Real-time Event Counts by Severity

    2. Schema => Event

    3. ShardID => 1

    4. Query User Owner => [Public to All Users In Group]

    5. Query Group Owner => [Public to All Groups]

    6. Query =>

        SELECT ELT(Severity + 1, 'Normal', 'Unknown', 'Info', 'Minor', 'Major', 'Critical')                                                                                      AS Severity, 
               ELT(Severity + 1, '{"color":"\#66E066"}', '{"color":"\#D088F4"}', '{"color":"\#A1D3FE"}', '{"color":"\#FEFE66"}', '{"color":"\#FED07E"}', '{"color":"\#FE6666"}') AS Meta,
               DAYNAME(FROM_UNIXTIME(FirstReported))                                                                                                                             AS Day, 
               SUM(Count)                                                                                                                                                        AS Count 
          FROM Events
      GROUP BY Severity,
               DAYNAME(FROM_UNIXTIME(FirstReported)) 
      ORDER BY Severity,
               DAYOFWEEK(FROM_UNIXTIME(FirstReported))
      
    7. Click "Submit" to save the query.

  3. Go to the Dashboards UI:

    Configuration -> Dashboards -> Dashboards

  4. Click on the Add button, then set the following:

    1. Dashboard Name => Real-time Event Counts by Severity

    2. Query User Owner => [Public to All Users In Group]

    3. Query Group Owner => [Public to All Groups]

    4. In the New Dashboard area, click in the Click here to add panel box, then select "Add Panel -> Chart", then click on the Configure Panel button. Set the following:

      1. Panel Name => Events

      2. Database Query => Real-time Event Counts by Severity

      3. Category Field => Day

      4. Value Field => Count

      5. Series Field => Severity

      6. Meta Field => Meta

      7. Click the View button to save the panel settings.

    5. Click Submit button to save the dashboard.

Example 2

Create a query to return real-time event data for a pie chart.

Steps

  1. Go to the Queries UI:

    Configuration -> Databases -> Queries

  2. Click on the Add button, then set the following:

    1. Query Name => Real-time Event Counts for Pie

    2. Schema => Event

    3. ShardID => 1

    4. Query User Owner => [Public to All Users In Group]

    5. Query Group Owner => [Public to All Groups]

    6. Query =>

      SELECT DAYNAME(FROM_UNIXTIME(Reported)) AS Day,
             'Alarm Count'                    AS Name,
             SUM(Count)                       AS Count
        FROM Events
      
    7. Click "Submit" to save the query.

  3. Go to the Dashboards UI:

    Configuration -> Dashboards -> Dashboards

  4. Click on the Add button, then set the following:

    1. Dashboard Name => Real-time Event Counts for Pie

    2. Query User Owner => [Public to All Users In Group]

    3. Query Group Owner => [Public to All Groups]

    4. In the New Dashboard area, click in the Click here to add panel box, then select "Add Panel -> Chart", then click on the Configure Panel button. Set the following:

      1. Panel Name => Events

      2. Chart Type => Pie

      3. Database Query => Real-time Event Counts for Pie

      4. Category Field => Day

      5. Value Field => Count

      6. Series Field => Name

      7. Click the View button to save the panel settings.

    5. Click Submit button to save the dashboard.