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
  • Blog
  • Questions
  • Learning
    • E-learning Courses
    • 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
    • Tutorials
    • Video Library
    • Books We Like
    • >> Go to DataMiner Docs
  • Expert Center
    • Solutions & Use Cases
      • Solutions
      • Use Case Library
    • Markets & Industries
      • Media production
      • Government & defense
      • Content distribution
      • Service providers
      • Partners
      • OSS/BSS
    • DataMiner Insights
      • Security
      • Integration Studio
      • System Architecture
      • DataMiner Releases & Updates
      • DataMiner Apps
    • 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)
    • DataMiner DevOps Professional Program
  • Downloads
  • More
    • Feature Suggestions
    • Climb the leaderboard!
    • Swag Shop
    • Contact
      • General Inquiries
      • DataMiner DevOps Support
      • Commercial Requests
    • Global Feedback Survey
  • PARTNERS
    • All Partners
    • Technology Partners
    • Strategic Partner Program
    • Deal Registration
  • >> Go to dataminer.services

Is it possible to automatically group alarms based on element or alarm properties?

Solved1.16K views11th July 2023
5
Dennis Dreesen [SLC] [DevOps Advocate]496 25th March 2022 0 Comments

One of our users reached out because they would automatically like to group alarms together that are related to the same location (ie site). This site is mentioned as a property. Is it possible to do so? How can I do this? Does this functionality belong to the core DataMiner software?

Thanks in advance,

Dennis

Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 11th July 2023

5 Answers

  • Active
  • Voted
  • Newest
  • Oldest
8
Tobe Deprez [SLC] [DevOps Advocate]894 Posted 25th March 2022 0 Comments

Yes, this is possible by using the Automatic Incident Tracking feature. This feature will try to group alarms together that belong to the same incident, taking into account certain information on the alarm. If you’re unfamiliar with this feature we have a blog post https://community.dataminer.services/automatic-incident-tracking/ and a nice introduction video about it https://www.youtube.com/watch?v=m6ITgtTFz1E.

Since DataMiner version 10.1.4, you can configure Automatic Incident Tracking to use any alarm, element, view or service property in its grouping algorithm. The configuration is done in the analytics configuration file, by default at C:\Skyline DataMiner\analytics\configuration.xml. In that file, you will find a section

<item type="skyline::dataminer::analytics::workers::configuration::XMLConfigurationProperty&lt;class std::vector&lt;class std::shared_ptr&lt;class skyline::dataminer::analytics::workers::configuration::IGenericPropertyVisitorConfiguration&gt;,class std::allocator&lt;class std::shared_ptr&lt;class skyline::dataminer::analytics::workers::configuration::IGenericPropertyVisitorConfiguration&gt; &gt; &gt; &gt;">
  <Value />
  <Accessibility>2</Accessibility>
  <Name>GenericProperties</Name>
</item>

The properties you want to group on should be added inside the <value> tag in that section. I’m not exactly sure what type of property this ‘site’ is. If it is an element property, the following will do.

<item type="skyline::dataminer::analytics::workers::configuration::XMLConfigurationProperty&lt;class std::vector&lt;class std::shared_ptr&lt;class skyline::dataminer::analytics::workers::configuration::IGenericPropertyVisitorConfiguration&gt;,class std::allocator&lt;class std::shared_ptr&lt;class skyline::dataminer::analytics::workers::configuration::IGenericPropertyVisitorConfiguration&gt; &gt; &gt; &gt;">
  <Value>
    <item type="skyline::dataminer::analytics::workers::configuration::GenericElementPropertyVisitorConfiguration">
      <enable>true</enable>
      <threshold>0</threshold>
      <name>site</name>
    </item>
  </Value>
  <Accessibility>2</Accessibility>
  <Name>GenericProperties</Name>
</item>

The threshold field is a number between 0 and 1 that can be used to only group alarms on that property whenever the proportion of elements having an alarm around that point is greater than the configured threshold. The idea here is that when multiple elements with the same property value have alarms at the same time, it is more likely that property value is relevant for the incident. Setting this value to 0 means that any two alarms on elements with the same value for that property will be grouped together, as long as they have the same focus value and occurred around the same time. Setting it to 1 means that alarms will only be grouped together if all element having that property value are in alarm together.

If it is an alarm property, the following can be used.

<item type="skyline::dataminer::analytics::workers::configuration::XMLConfigurationProperty&lt;class std::vector&lt;class std::shared_ptr&lt;class skyline::dataminer::analytics::workers::configuration::IGenericPropertyVisitorConfiguration&gt;,class std::allocator&lt;class std::shared_ptr&lt;class skyline::dataminer::analytics::workers::configuration::IGenericPropertyVisitorConfiguration&gt; &gt; &gt; &gt;">
  <Value>
    <item type="skyline::dataminer::analytics::workers::configuration::GenericAlarmPropertyVisitorConfiguration">
      <enable>true</enable>
      <name>site</name>
    </item>
  </Value>
  <Accessibility>2</Accessibility>
  <Name>GenericProperties</Name>
</item>

Obviously, if you want to add more than one property, this can be done by adding multiple <item> sections inside the <value> tag. Once you configured your properties, you will have to restart your DataMiner. More information can be found at https://docs.dataminer.services/user-guide/Basic_Functionality/Alarms/Working_with_alarms/Advanced_analytics_features_in_the_Alarm_Console.html#automatic-incident-tracking.

Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 11th July 2023
You are viewing 1 out of 5 answers, click here to view all answers.
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

Recent questions

Alarm Dashboard PDF/CSV Export 1 Answer | 0 Votes
Is the Microsoft SharePoint Connector Still Usable 0 Answers | 0 Votes
Is the Microsoft SharePoint Connector Still Usable 0 Answers | 0 Votes

Question Tags

adl2099 (115) alarm (62) Alarm Console (82) alarms (100) alarm template (83) Automation (223) automation scipt (111) Automation script (167) backup (71) Cassandra (180) Connector (108) Correlation (68) Cube (150) Dashboard (194) Dashboards (188) database (83) DataMiner Cube (57) DIS (81) DMS (71) DOM (139) driver (65) DVE (55) Elastic (83) Elasticsearch (115) elements (80) Failover (104) GQI (159) HTTP (76) IDP (74) LCA (151) low code app (166) low code apps (93) lowcodeapps (75) MySQL (53) protocol (203) QAction (83) security (88) services (51) SNMP (86) SRM (337) table (54) trending (87) upgrade (62) Visio (539) Visual Overview (345)
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

[ Placeholder content for popup link ] WordPress Download Manager - Best Download Management Plugin