Atera overview dashboard

kain
kain Member Posts: 3 ✭✭

We are looking at generating a dashboard for some screens in our office, does anyone know a way of doing this

Comments

  • joseph.smith
    joseph.smith Member Posts: 24 ✭✭✭

    🤞

  • nina
    nina Internal Posts: 428 ✭✭✭✭✭

    Hi @kain - The simplest way (albeit a pricier option), is to purchase another tech license and use that technician to show the Dashboard that is built in to Atera.

    Another option is to use the API to create a dashboard; this requires API knowledge to create and set up.

    Hope this helps!

  • derek
    derek Member Posts: 37 ✭✭✭

    Another way would be to connect a couple external monitors to one of the computers that you use Atera on. Most computers have additional graphics ports or you could use a usb to hdmi.

  • kim
    kim Member Posts: 113 ✭✭✭

    This is similar to what I did. I actually got a micropc (like the ones you can get on amazon for $99 and is the size of a large USB stick), but was attached to an HDMI like a Fire stick, and had it logged into the dashboard on the Atera. I plugged that into a TV we had in a common area and it worked great! I had the device added into my Atera environment and could remote into it via the Agent to make updates. :)

  • baer
    baer Member Posts: 2

    We have Something for You https://td-atera-dashboard.vercel.app/

  • doug
    doug Member Posts: 5

    I have Zabbix already, and have PS scripts running that grab stats, and totals from Ateras API, and "send" them to Zabbix every minute.

    For E.G. - "Open" tickets.

    [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
    $AteraAPIKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxx"

    if ($null -eq (Get-Module -ListAvailable PSAtera)) {
    [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
    Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
    Install-Module -Name PSAtera -Force
    }

    Set-AteraAPIKey -APIKey $AteraAPIKey
    $OpenTicketCount=Get-AteraTicketsFiltered -Open | measure

    $UpdateZabbix = $OpenTicketCount.count
    $command = "C:\Program Files\Zabbix Agent\zabbix_sender.exe"
    $args = "-z mv.xxxxxxxxxx.co.uk -s Atera -k OPEN -o $UpdateZabbix"

    Start-Process -FilePath $command -ArgumentList $args -NoNewWindow -Wait

  • doug
    doug Member Posts: 5

    Then grab Grafana and install the Zabbix plugin. https://grafana.com/grafana/plugins/alexanderzobnin-zabbix-app/

    Save £90+ per month