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
      • Book your Agile Fundamentals training
      • Book you Kanban workshop
      • 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)
    • >> Go to DataMiner Docs
  • DevOps
    • About the DevOps Program
    • Sign up for the DevOps Pogram
    • 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

GQI – Ad Hoc – Real-Time Updates – ParameterWatcher type class?

Solved109 views5 days agoAd Hoc data source GQI Parameter subscription real-time
3
Rui Camacho [SLC] [DevOps Member]162 13th August 2025 1 Comment

Hi all,

Im looking to implement real-time updates on an ad hoc data source that fetches and updates parameters (table and/or standalone) from a given element.

I get the feeling that a class like a ParameterWatcher had to be already implemented before. Any idea where I can find something like it? Be it in Catalog, or in example Snippets in the Docs,etc?

Looking forward to your replies.

Rui Camacho [SLC] [DevOps Member] Selected answer as best 5 days ago
Ronald Gerard [SLC] [DevOps Advocate] commented 20th August 2025

Hi Rui, as far as I'm aware there is no such class in the docs yet. You can browse our GitHub repositories to see if there is anything you can reuse:
https://github.com/search?q=topicdataminer-gqi-data-source+orgSkylineCommunications&type=Repositories

I suspect there might not be anything yet since standalone parameters are usually linked directly to a visualization (not via a query) and for table parameters a native data source already exists.

1 Answer

  • Active
  • Voted
  • Newest
  • Oldest
0
Rui Camacho [SLC] [DevOps Member]162 Posted 5 days ago 0 Comments

I was able to achieve this by using Monitor classes available on the nugets:

Skyline.DataMiner.Core.DataMinerSystem.Common
Skyline.DataMiner.Core.DataMinerSystem.Automation (for engine extensions: engine.GetDms())

var connection = args.DMS.GetConnection(); // Best clone it for long term usage.
IDms dms = connection.GetDms();
IDmsElement element = dms.GetElement(elementId);

element.GetTable(tableId).StartValueMonitor(…);
element.GetStandaloneParameter<int>(paramId).StartValueMonitor(…)

For cleanup:

element.GetTable(tableId).StopValueMonitor(…);
element.GetStandaloneParameter<int>(paramId).StopValueMonitor(…)

Link to Docs

Rui Camacho [SLC] [DevOps Member] Edited answer 5 days ago
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