• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
ControlUp Community

ControlUp Community

Connect, Learn, and Grow

  • Blog
  • Podcast
  • Meetups
  • Archives
  • Categories
    • ControlUp One Platform
    • ControlUp for Apps
    • ControlUp for Compliance
    • ControlUp for Desktops
    • ControlUp Scripts & Triggers
    • ControlUp Synthetic Monitoring
    • ControlUp for VDI
  • Topics
  • Events
    • Logos & Wallpaper
    • ControlUp.com
  • Join

Is It Possible to “Collect” Event IDs and Fire an Action in ControlUp?

Posted on October 19, 2023

It was asked if it is possible to "collect" event IDs and fire an action when a certain event ID happened multiple times within a certain time frame. Currently, this is not possible, however, users can use a workaround with a Powershell script and event triggers. A related request has been submitted to ControlUp, and can be found at https://controlup.uservoice.com/redirect/suggestions/46413556.


Read the entire ‘Is It Possible to "Collect" Event IDs and Fire an Action?’ thread below:

Somebody have a quick idea if its possible to "collect" event IDs and fire an action when e.g. event ID "3" happened 30 times in 5 minutes…


not yet, there’s a request open for it. Let me get you the UV link

here you go: https://controlup.uservoice.com/redirect/suggestions/46413556


thanks Wouter


if you want to use a workaround you could though


I am all ears Dennis 🙂


Powershell script that:

Checks how often event ID 3 happened in the last 30 minutes. I haven’t tested the script below but you get the idea

> $eventLogName = "Application"

> $id = 3

> $threshold = 30

> $timeframe = 5

> $filterhash = @{logname=eventLogName;id=$id;starttime=([datetime]::Now.AddMinutes(-$timeframe))}

> [array]$number = Get-WinEvent -FilterHashtable $filterhash

> if($number.count -ge $threshold)

> {

> Write-EventLog -LogName Application -Source "Supertriggers" -EntryType Warning -Message "Event ID 3 happened more than 30 times in the last 5 minutes" -EventId 1337

> }

Create trigger 1 that fires on event ID 3

Now create a 2nd event trigger in the console for source supertriggers, eventID 1337 and run your actual follow action


Thanks Dennis, I actually came across to the customer with a very similar idea but this specific customer doesnt want to use it this way.

The customer is using Microfocus Operations Bridge Manager for central monitoring and we are pushing the events via Trigger (WebHook) to OpsBridge because there we can correlate the events and push out a message to the admins.

Its also a workaround so it would be nice to have it in the product…

Continue reading and comment on the thread ‘Is It Possible to “Collect” Event IDs and Fire an Action in ControlUp?’.  Not a member? Join Here!


Categories: All Archives, ControlUp Scripts & Triggers
Topics: Automation & Alerting, PowerShell, Scripts, Triggers

Ask Us Anything, Connect, Learn, and Grow with the ControlUp Community!

Login to the ControlUp Community to ask us anything, stay up-to-date on what’s new and coming soon and meet other like-minded techies like you.

Not already a member? Join Today!

Primary Sidebar

ControlUp Academy

Enroll in ControlUp Academy for expert-led technical training, equipping you with skills to effectively deploy, manage, and grow your ControlUp investment.

Learn here >

Rotating Images

Hidden Gem from our Community on Slack!

ControlUp Betas - What's Coming Next?
NEW ControlUp Features - Stay Up-to-Date!
ControlUp Scripts - Scripting, Zero to Hero
Latest KB Articles - Be the First to Learn
Did you Know - with Sivan Kroitoru
Practical Perspectives Technical Use Case Training

Video Tutorials Library

Visit our technical how-to videos, offering step-by-step tutorials on advanced features, troubleshooting, and best practices.

Watch here >

ControlUp Blog

Check out the ControlUp blog for expert advice and in-depth analysis.

Read here >

ControlUp Script Library

Visit the ControlUp technical script library, which offers a multitude of pre-built scripts and custom actions for your monitoring and troubleshooting requirements.

See here >

ControlUp Support

Visit the ControlUp support home and to delve deeper into ControlUp solutions.

Browse here >

Download ControlUp RealTime DX

Start with ControlUp for real-time end-user environment insights, swift troubleshooting, and unprecedented performance optimization. Download now.

Download here >

Footer

      

ControlUp Community
Of Techie, By Techie, For Techie!

Terms of Use | Privacy Policy | Security
Dive Deeper, Learn more at ControlUp.com

  • facebook
  • twitter
  • youtube
  • linkedin

© 2023–2025 ControlUp Technologies LTD, All Rights Reserved.

We use cookies to ensure that we give you the best experience on our website. by continuing to use this site you agree to our Cookie policy..