Skip to content
DataMiner Dojo

More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Search in posts
Search in pages
Log in
Menu
  • Updates & Insights
  • Questions
  • Learning
    • E-learning Courses
    • Tutorials
    • Open Classroom Training
    • Certification
      • DataMiner Fundamentals
      • DataMiner Configurator
      • DataMiner Automation
      • Scripts & Connectors Developer: HTTP Basics
      • Scripts & Connectors Developer: SNMP Basics
      • Visual Overview – Level 1
      • Verify a certificate
    • YouTube Videos
    • Solutions & Use Cases
      • Solutions
      • Use Case Library
    • Agility
      • Learn more about Agile
        • Agile Webspace
        • Everything Agile
          • The Agile Manifesto
          • Best Practices
          • Retro Recipes
        • Methodologies
          • The Scrum Framework
          • Kanban
          • Extreme Programming
        • Roles
          • The Product Owner
          • The Agile Coach
          • The Quality & UX Coach (QX)
      • Book your Agile Fundamentals training
      • Book you Kanban workshop
    • >> Go to DataMiner Docs
  • DevOps
    • About the DevOps Program
    • Sign up for the DevOps Program
    • DataMiner DevOps Support
    • Feature Suggestions
  • Downloads
  • Swag Shop
  • PARTNERS
    • Business Partners
    • Technology Partners
  • Contact
    • Sales, Training & Certification
    • DataMiner Support
    • Global Feedback Survey
  • >> Go to dataminer.services

Display DMA status & BPA notifications on Dashboards

Solved365 views28th August 2025DMA Status remove dashboards
3
Guy Lavee102 12th February 2025 1 Comment

Hey,

Is there a way to show on bpa information (for example snapshot below) on dashboards?

Thank you.

Guy Lavee Selected answer as best 28th August 2025
Marieke Goethals [SLC] [DevOps Catalyst] commented 28th August 2025

Hi Guy,
I see that this question has been inactive for some time. Do you still need help with this? If not, could you select the answer (using the ✓ icon) to indicate that no further follow-up is needed?

1 Answer

  • Active
  • Voted
  • Newest
  • Oldest
1
Wout Mahieu [SLC] [DevOps Catalyst]9.85K Posted 26th June 2025 1 Comment

Hi Guy,

There is no built-in way to show this information in a Dashboard. To be able to show this, you will have to create your own ad-hoc data source. This data source can make use of the GQIDMS and BpaManagerHelper classes to get the results from the tests. I have created a small example to get you started:

using Skyline.DataMiner.Analytics.GenericInterface;
using Skyline.DataMiner.Net.BPA;
using System.Linq;

namespace BPAResults
{
[GQIMetaData(Name = “BPAResults”)]
    public sealed class BPAResults : IGQIDataSource, IGQIOnInit
    {
private GQIDMS _dms;
private IGQILogger _logger;

public GQIColumn[] GetColumns()
        {
return new GQIColumn[]
{
new GQIStringColumn(“Message”),
new GQIStringColumn(“Impact”),
};
}

public GQIPage GetNextPage(GetNextPageInputArgs args)
        {
var bpaHelper = new BpaManagerHelper(_dms.GetConnection());
var bpas = bpaHelper.BPAs.ReadAll();
var results = bpaHelper.BPAs.GetLastResults(bpas, DestinationAgent.LocalAgentOnly());

return new GQIPage(results.Responses.Select(x =>
{
return new GQIRow(new GQICell[2] {
new GQICell() { Value = x.Message },
new GQICell() { Value = x.Impact },
});
}).ToArray())
            {
                HasNextPage = false,
            };
        }

public OnInitOutputArgs OnInit(OnInitInputArgs args)
{
_dms = args.DMS;
_logger = args.Logger;

return default;
}
}
}

Guy Lavee Selected answer as best 28th August 2025
Guy Lavee commented 28th August 2025

Ok. This is good. Thanks for the update.

Please login to be able to comment or post an answer.

My DevOps rank

DevOps Members get more insights on their profile page.

My user earnings

0 Dojo credits

Spend your credits in our swag shop.

0 Reputation points

Boost your reputation, climb the leaderboard.

Promo banner DataMiner DevOps Professiona Program
DataMiner Integration Studio (DIS)
Empower Katas
Privacy Policy • Terms & Conditions • Contact

© 2025 Skyline Communications. All rights reserved.

DOJO Q&A widget

Can't find what you need?

? Explore the Q&A DataMiner Docs