Jump to content
Pulseway 9.14 🔥

Windows Client API

Windows Agent Client API / Plugins

  1. Started by Chris,

    For convenience we've constructed a list of all community maintained plugins for Pulseway. Altaro VMBackup Link: https://forum.pulseway.com/topic/3047-altaro-vmbackup-plugin/ Author: NESTEC Austria Version: 0.3 Last Update: 20/11/2019 Status: Functional / Commercial Notification Bridge Link: http://forum.pulseway.com/topic/962-notification-bridge/ Author: Paul Version: 1.3 Last Update: 10/09/2019 Status: Functional Session Control Plugin Link: http://forum.pulseway.com/topic/319-session-control-plugin-12/ Author: Paul Version: 1.3 Last Update: 08/09/2016 Status: Functional …

    • 0 replies
    • 21.4k views
  2. Started by sandybeach,

    Hi everyone great app and add-ins i was wondering has anyone considered making a plugin for Allmyapps.com ? http://allmyapps.com Allmyapps discovers what is on your PC and then will tell you if there are any updates and you can run the installers updating the apps mostly silently reducing your time doing this, it would be awesome if this could be done via pc monitor remotely ? Thanks

  3. Started by NESTEC Austria,

    Just launched a Plugin to integrate well known and common used ALTARO VMBACKUP into Pulseway. In the current version 0.3.0 we support latest Backup State and Access to the history log of every VM thats backes up at least once; Future plans including trigger a backup job and more. Short Video: https://youtu.be/ZvUta6wND0o (german titles)

  4. Started by Arthur,

    I'm keen to find someone who can develop custom plug-ins for the following: Acronis Backup & Recovery 11.5 (virtual, server and workstation editions all use the same management console) Acronis vmProtect 8 I'm not a developer so don't know what info is required for this to be done, or where to turn. Any advice and guidance most appreciated.

  5. Started by ale,

    Is there a way to do the following: "Use an API to call pulseway to trigger a workflow of any type on a server"

  6. Started by tsauter102,

    Hello, I am starting to write my first plugin to monitor a BackupExec server. The plugin works fine. But I try to query if the system can send notifications (via CanSendNotifications) and if not, put the message in a queue for later processing. However, the CanSendNotifications is always false. Even there are no messages send and all notifications cleared. Isn't this the correct way? Thank you for your help. Thorsten

  7. This Plugin will check for the certain Windows event log entry which was logged during the boot process into the system log. You will have the option to configure Windows event id (any ID) and the time. Read_startup_events.dll

    • 0 replies
    • 3.7k views
  8. Are there any events a plugin can attach to to receive notification from PCMonitor? Ie probably anything able to be notified to IOS, able to be caught by a plugin, for running an internal notifcation, or action? Ie I'd like, for example to receive a System up notification (which I do), but I'd like to also tell an internal system that this system is up. So I'd need a plugin to be able to be mirror a notification and do something with it.

  9. Started by meikelenboom,

    Hello, I'm developing a plugin to monitor a row amount in a sql server table. If it's above a certain amount I need to have a warning. To build a good application I want to configure the connectionstring and certain other values through a configuration screen. I'm able to popup the screen add a text box and close it. What I'm looking for is a small example on how to use the SetRegistryValue and the GetValueForKey in the form. Can anybody help me?

  10. Started by Cptrico,

    This is my second plugin for PCM Recently I had the opportunity to work with couchbase and memcached services. For those of you not knowing what it is, it’s a key value store or maybe more known as a NoSQL. So I thought that it would be helpfull to have a tool that could test and monitor the service I was setting up. So now i want to share this with you, hoping it can be useful to others that are working with couchbase. More information about Couchbase here: http://www.couchbase.com/ Main features are: Test store, retrieve, touch and remove operations. Support both couchbase and memcached buckets. Test with predefined key and value, or use input control. Run monit…

    • 2 replies
    • 8.5k views
  11. Hello, I want to create a plugin to get system information (hardware info) from an 2008 server. I have Visual Studio, but I really don't know how to start. Can someons point my in the right direction or create a sample to write an vb class? Public Class Class1 ?????????? End Class Manu thanks Kurt I have the vb code here: strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colSettings = objWMIService.ExecQuery _ ("Select * from Win32_OperatingSystem") For Each objOperatingSystem in colSettings Wscript.Echo "OS Name: " & objOperatingS…

  12. Hi, When a plugin returns a datetime (eg. in a simpleitem) it is formatted acording to the agent device language and timezone. Is it somehow possible to format/convert it so it match the mobile apps regional setting and timezone? Br, Martin.

  13. Started by meikelenboom,

    I'm looking for a way to delay this check. I'm running queries and I don't want to burden my server too much. Does anybody have a best practice to decrease to, for example every five minutes.

  14. Hello, In french, some messages sent by SendNotificationToAllDevices contain special characters such as é è à ù ... I've tried to encode these messages as UTF-8 string, but these characters are replaced by a black diamond containing a question mark, when shown, e.g. on the mobile app. I've trie HTML encoding but it shows the HTML code, not the correct character. Is there a way to pass french messages properly? Thanks in advance for your answer. Best regards, Guy

  15. Started by Gurdeep Sira,

    Hi, I have installed POTS in MobilePCMonitor on two Windows Server 2008 R2 x64 SP1 servers. On the first server, I installed the plugin, and restarted the POTS service (although not required) and the menu has the POTS menu and relevant sub menus (anti-virus). However, this looks like the "simple" config file in the plugin dir. If I make a change in that config xml file and re-load the plugin and restart the service, the change is not picked up in POTS (e.g. change "PowerOfTheShell" to "sksjksjsjs" in the xml file). On the 2nd server, if I delete all but the nested (and largest) config xml file in the plugin dir, and install the plugin/restart the windows service, …

  16. Started by Cesar Lacerda,

    There is the ability to download or upload a file via ftp from terminal pc monitor?

  17. Started by Martin Stevnhoved,

    Hi, Is it posible to return a graph from a plugin? I am interested in returning value in a graph like the one used in CPU, Memory, etc. Br, Martin.

  18. Basically I'm trying to make (for now) just a services viewer app! I have some success with: public override Groups GetAdditionalComputerDetails() { Groups container = new Groups(); // Group of "Group" types. Group mainGroup = new Group("Services"); // Group of "SimpleItem" / "CommandItem" / "PageItem" with the title Simple Plugin. ServiceController[] services = ServiceController.GetServices(); foreach (ServiceController service in services) { SimpleItem thisitem = new SimpleItem(service.DisplayName.ToString() + ":", service.Status.ToString()); mainGroup.Items.Add(thisitem); } container.Add(mainGroup); // Adding the mainGroup Group to Groups container. …

  19. Started by Chris Roberts,

    Hey there I'm writing a simple plugin, but I've found that none of the input fields work through the web app. I can send input to the plugin from the mobile app (ints, dropdowns and datetimes), but none of the fields do anything besides show their title and subtitle from Chrome, Edge or Firefox. Is this a planned feature? It seems hugely restrictive if this can only be done from mobile as that's only how a tiny fraction of our engineers will work. Thanks

  20. I wrote a plugin that had 0 errors but when deployed it caused the web interface to not show, so I was wondering if there was anything you disallow in the .NET plugin? Could I write a file or folder watcher for example? Could I do a security wipe and format a non system drive? You get the idea...

  21. Started by omegadigital,

    Is it possible to monitor SQL Server performance as well using the api? I know it's possible to set this up through C#/WCF as a service but not sure whether the api could handle this. Thanks Bert

  22. Hi MMSOFT. Is it somehow possible to generate more individual notifications from the same plugin, without using allowMultipleNotifications. It is not hard to imagine that a plugin would have to monitor two or more individual values. If it is not possible, consider this a feature request :-) Best Regards, Martin.

  23. Started by gbrown481,

    does anyone have a plug in to allow more than one notification to be sent for the same error id in event log? for example: If an event has occurred and a notification has been sent, then if the same event occurs, an event doesnt send. this is a tad annoying if we have two backup jobs that run on a server that report using the same event id, pc monitor only sends a notification for the first one. thanks. gary.

  24. I monitor my infrastructure using Nagios running on multiple Linux servers. I'm switching over to using Pulseway. There are a lot of things that Nagios does that Pulseway does not, so I'm looking to implement some of the important things using plugins. For starters, I'm planning on checking HTTP (speed of response, size of response, does the response contain key information). I want to expand to other network service checks (DNS, SMTP, IMAP) to ensure my infrastructure is always available. I am going to have multiple host and service checks run through the PluginDataCheck method of the ClientPlugin. I'm concerned that I might need to make these check…

  25. Started by chillisoft,

    Version: 1.1.0 Beta Author: Chillisoft: John Rickman Minimum PC Monitor Version: 3.3.1 * Tested Platforms: Operating Systems: Windows 7 Professional Products: Ninite One Server Operating Systems: Windows Web Server 2008 R2 * Features: - Allows manual triggering of the Ninite One application to silently update applications - Notifies when the report from the above process has completed - Must have a paid subscription for Ninite Pro * Installation: 1. Copy all files from the 'NiniteOne' folder to any folder in your computer. It is recommended you place the contents in the root of C:\ 2. Place niniteone.exe in the same directory 3. Go to 'Plugins' tab fro…

    • 13 replies
    • 27.9k views