Configuration

General

Navigate to the gear icon and select Configuration option

image-1655808706793.png

Navigate to Preferences and update the screen to reflect the the Organization name and Light UI Theme.

image-1655808885024.png

In  /etc/grafana/grafana.ini file change line to update default theme

default_theme = light

Open plugins tab and select Data sources then select All. Type Olsson in the search field. Install CSV, JSON API and Static plugins.

image-1655811328589.png

Anonymous access

Only use after securing the data source and providing "synthetic" data to fill any board.

    This needs to be updates/added to /etc/grafana/grafana.ini file

    [auth.anonymous]
    # enable anonymous access
    enabled = true
    
    # specify organization name that should be used for unauthenticated users
    org_name = "ScheduleInterpreter.com, Inc."
    
    # specify role for unauthenticated users
    org_role = Viewer
    
    # mask the Grafana version number for unauthenticated users
    hide_version = true
    Testing

    Extend the menu and select New dashboard option.

    image-1655809194750.png

    Select Add new panel.

    image-1655809286153.png

    Open plugins dropdown and select ECharts option.

    image-1655809394793.png

    In the code block where the data is processed alter content of the type key to scatter, line or bar.

      return {
        name: s.name,
        type: 'scatter',
        showSymbol: false,
        areaStyle: {
          opacity: 0.1,
        },
        lineStyle: {
          width: 1,
        },
        data: sData.map((d, i) => [sTime[i], d.toFixed(2)]),
      };