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

Adding and Monitoring Elements that are housed in Mobile Vans.

Solved1.07K views25th August 2023elements
3
Jacques Smit [DevOps Enabler]94 20th July 2023 0 Comments

Good morning! What is the best way to add Elements that are housed in Mobile Vans or containers?
These elements are most of the time unavailable. The Views that contain these elements will always be in alarm. Is it possible to suppress the unavailable state alarm until the element is in use?

I was thinking of hiding these elements and passing the parameters from these elements to a virtual element.

Jacques Smit [DevOps Enabler] Selected answer as best 25th August 2023

3 Answers

  • Active
  • Voted
  • Newest
  • Oldest
1
Ben Vandenberghe [SLC] [DevOps Enabler]9.06K Posted 20th July 2023 4 Comments

In a booking context, one could indeed use the booking orchestration to start/stop those remote elements, so that they would only generate alarms and time-out events during the active time window.

If the elements are used only within a specific fixed time-frame (e.g. only relevant between 18.00h and 23.30h every weekday), then a fixed schedule can be used (without the need to involve SRM).

Question is indeed if and how DataMiner can be aware of the "until the element is in use".

I suspect that it might also be as follows: you never want to see the time-out on those elements, because when they are in time-out that's because they are not used, and when they are not in time-out, they are in use. So, in that case, we should be more looking for a solution where if one of those elements goes into timeout, then DataMiner suppresses that time-out.  Is that how you would want it to be?

Jacques Smit [DevOps Enabler] Posted new comment 25th August 2023
Jacques Smit [DevOps Enabler] commented 20th July 2023

Hallo Ben, that is more or less the idea.

Ben Vandenberghe [SLC] [DevOps Enabler] commented 20th July 2023

In that case, you could make a simple correlation rule that triggers on a Time-out happening (and some additional filtering, e.g. on an element in that specific View, or on those specific elements, etc.).

Upon triggering of the correlation rule, you would specify as an action an Automation script. In that script we should then mask the element, and also unmask it again when the time-out is gone. Not sure if this is doable. Let me check with some people that have more experience on this.

I checked already and we would have to mask the entire element (because masking just the time-out alarm apparently does not make the time-out icon disappear in the surveyor tree – and not even sure if this is intended or a bug). But masking the entire element makes it go away. The correlation rule supports triggering again upon clearing of the event, so that’s ok to then unmask the element. Mainly not sure about the script. The latter can be linked to the element that triggered the correlation, but not sure how to set it up exactly.

Let’s check further and we’ll circle back to you.

Michiel Vanthuyne [SLC] [DevOps Enabler] commented 20th July 2023

You could use an automation script like below, and trigger it from a correlation rule as Ben described. I’m assuming all elements of a certain van or container are in a single view here, and masking all elements in that view.

using Skyline.DataMiner.Automation;

public class Script
{
public static void Run(Engine engine)
{
string elementName = engine.GetScriptParam(“timeOutElement”).Value;
Element e = engine.FindElement(elementName);
string viewName = e.FindView();
Element[] elements = engine.FindElementsInView(viewName);
foreach (Element element in elements)
{
element.Mask(“NotInUse”);
}
}
}

Jacques Smit [DevOps Enabler] commented 25th August 2023

Thanks for this advice!

1
Miguel Barquet [SLC] [DevOps Enabler]1.62K Posted 20th July 2023 0 Comments

Hi Jacques,

We implemented a similar solution for a customer managing a fleet of OB trucks in the US. Here is the article OB Truck Manager - DataMiner Dojo

The elements inside the vans can be stopped or paused when unavailable to avoid unnecessary polling. You pause them if you want to keep the latest values of the parameters available in DataMiner.

This can be automated if you can identify a reliable indication of when the vans connect and disconnect. In our case, we used the information in the LLDP Neighbors table of the Arista switches to detect when the truck connected/disconnected.

In our project, the contribution path from the trucks to the TOC contained other elements outside of the truck that generated alarms when the trucks disconnected. We could not stop/pause the entire element because it was used by multiple paths (e.g. network switch). In those cases we need to stop monitoring the specific interfaces linked to each van. We achieved that with the use of alarm templates that filter on the display key. When we want to turn on/off the monitoring on a given interface, we simply update the display key via automation.

Hope that gives you some ideas to build your solution.

Miguel Barquet [SLC] [DevOps Enabler] Answered question 20th July 2023
1
Michiel Vanthuyne [SLC] [DevOps Enabler]4.10K Posted 20th July 2023 1 Comment

Hi Jacques, as such elements are typically used during events such as a concert or sports event, our Service & Resource Management solution can automate this for you. You can find out more about Service and Resource Mangement on https://docs.dataminer.services/user-guide/Standard_Apps/SRM/About_SRM.html

Jacques Smit [DevOps Enabler] Posted new comment 25th August 2023
Jacques Smit [DevOps Enabler] commented 25th August 2023

Hello Michiel, we will have a look at this. Maybe this will be a better slolution. Thanks for the info.

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

Web Applications exception in Cube due to invalid certificate 0 Answers | 0 Votes
Redundancy Groups and Alarming – Duplicate Alarms 0 Answers | 0 Votes
Correlation Engine: “Test rule” doesn’t result in a hit, despite functional rule 1 Answer | 3 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 (109) Correlation (69) Correlation rule (52) Cube (151) Dashboard (194) Dashboards (188) database (83) DataMiner Cube (57) DIS (81) DMS (71) DOM (140) driver (65) DVE (56) Elastic (83) Elasticsearch (115) elements (80) Failover (104) GQI (159) HTTP (76) IDP (74) LCA (152) low code app (166) low code apps (93) lowcodeapps (75) MySQL (53) protocol (203) QAction (83) security (88) 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