Everything posted by Paul
-
read messages with php or other programming lauguage
As far as I know there is no public API that exposes Pulseway notifications. Why not build a syslog server (or a parser) and have Pulseway forward all notifications to that server?
-
Volume Control
Hi there, Please find the Scheduled Task configuration in the pictures bellow:
-
Shutdown or Restart Scheduler v1.0
I've create an open-source clone of this plugin (which works). Source code: https://bitbucket.org/paulcsiki/shutdownplugin/src Latest release: 1.3 - Download Paul I've released version 1.3 of the shutdown scheduler plugin which fixes some bugs.
-
Volume Control
Create a scheduled task and that runs the application with either + or - as startup arguments and the have Pulseway monitor those scheduled tasks so you can remotely control the volume. Paul
-
Delay DataCheck
Well you could do a couple of things here: Use a nullable DateTime field that indicates the last time the query execute and if (DateTime.now - lastValue.Value).TotalMinutes == 5 (check for null before using .Value) then execute your query, otherwise ignore the call On the constructor create a Thread or a Task that runs a while loop that checks for a variable that you set it to true when the plugin is unloaded. Use Thread.Sleep to delay the next execution. On the constructor create a Timer that runs every 5 minutes. Don't forget to stop the time when the plugin is disabled. I believe I've used custom timers in one of my plugins, why not check them out for sample code (all my plugins come with the source code included).
-
Windows Server 2012 Non R2
Well you could enable Diagnostic Logging from Pulseway Manager -> Settings -> Diagnostics (that will create a trace.log file in the installation directory) however I don't know if that would provide any clues about the high CPU usage.
-
Configuration form
Hi there, Check out the source of the Vembu StoreGrid plugin here: http://forum.pulseway.com/topic/301-vembu-storegrid-plugin-12/ and look for the Configuration.cs file in the source for an example on how to use it. Btw, you can already monitor row amount of any SQL Server query (or the result itself too) with Pulseway's SQL Server module. Configure them from Pulseway Manager -> Notifications -> Server Modules -> SQL Server -> Queries. Good luck on your plugin, Paul
-
Strange problems with WOL
Is your iOS device on the same network with the linux box when you try to wake it up?
-
Windows Server 2012 Non R2
Hi WIT, It seems to me that your performance counters are corrupted. Try running lodctr /r in an administrative command prompt and see if that solves your problems.
-
Zendesk plan
Hi there, I've tried Zendesk for my company once and it worked with the Trial and the Starter plan (which we used for a while) so yeah, it should work with any plan.
-
Wake on WAN only works on home wifi
Regarding that moderator queue, you should only see that for the first post you're posting. It's a spam prevention feature of the community board software, we've all passed through that.
-
Error Trying to Install On Windows 8 Pro 64bit
I can't see the image, what error are you getting? Edit: I managed to finally open the image. I believe that the download might have been corrupted, can you try downloading the msi file again? Also, try running the msi file as an administrator. If that doesn't work, post here a full verbose installer log after invoking the msi file with the following switches: msiexec /l*v "install.log" /i "Pulseway_x64.msi" Paul
-
Wake on WAN only works on home wifi
Check out this article, maybe you get some ideas: http://winaero.com/blog/how-to-use-wake-on-lan-on-windows-8-1-and-windows-8/ Paul
-
Wake on WAN only works on home wifi
Windows Firewall should not be blocking a WoL request since that's under hardware layer (most of it). Check the BIOS settings that WoL is still enabled, see if there were any Windows Updates that could have updated your NIC driver or your Windows 8 shutdown settings back to their defaults. It's also worth checking that the NIC's driver's Advanced tab to see if the WoL is enabled (if your NIC's driver supports software setting) and go to the Power Management tab and see if the checkbox "Allow this device to wake up the computer" is checked. Paul
-
Notification type change ?
1. Yes, there used to be a Java based Pulseway agent but now it's native and a lot more modern agent however yes, it lacks the GUI as of now. Are there any plans for adding GUI to the native linux agent? 2. This is odd. Usually when a PUSH notification is delivered then it means that the device is properly configured to receive PUSH notifications and it should work for all Pulseway notifications not just the startup one. You should contact support as they might have more ideas on this.
-
Wake on WAN only works on home wifi
Did you change anything in your system's BIOS? Is Wake on Lan enabled in your BIOS?
-
Monitoring HP Raid Array Status
Hi there, Just for my curiosity, can you post the output of dmraid -r and dmraid -s for the linux boxes?
-
Wrong CPU Usage
In this case I have no further ideas. Your performance counters seem to be broken. Try doing a WMI checkup too with the WMI Diag tools from Microsoft. http://technet.microsoft.com/en-us/library/ff404265.aspx
-
Wrong CPU Usage
Did you run the "lodctr /r" command in an administrative command prompt?
-
Can't link server with Pulseway
As far as I remember NTP is still not converted to UPSTART for the Ubuntu distro so you have to use SYSVINIT as DaemonType. The Path of the NTP daemon is: /usr/sbin/ntpd. Paul
-
Wake on WAN only works on home wifi
Hello , Have you forwarded port UDP 7 and 9 to your private IP address of the machine? Does your machine have a static IP address? Use www.portforward.com to find out how to create NAT rules. Paul
-
Remote Desktop Connection
Hey Lonny, No, you cannot use Pulseway to create a remote desktop connection (unless you use Pulseway Dashboard and you use it to create a plain old RDP connection which requires port forwarding). However they do have a public Roadmap and it seems that Remote Desktop is currently in development which can only mean one thing: sooner or later Pulseway will support remote desktop connections - which will be mind blowing when it's going to be announced! Paul
-
additional user access
You could give them access to your account and keep your other systems secure in the following way: Enable Two-Step Authentication Create a Default Mobile Policy with No Access to all of your current systems and No Access to newly added systems Create a Policy for your Mobile Device with Full Access to all systems and Full Access to newly added systems Create a Policy for your CIO, CEO and CFO's phones to only gain access to certain systems in Read Only mode and No Access to newly added systems. They will not be able to change your policies due to the two step authentication and if they add a new mobile device with your account they will not be able to see anything.
-
Testing notifications
Hey there, It seems to me that you are using the wrong endpoint: https://api.pulseway.com/v1/publish should only be used for Publish and https://api.pulseway.com/v1/notify should be used for Notify. I believe that the reason you are getting a successful response (HTTP 200) is because they are allowing you to publish with empty contents. So if you specify a valid instance_id the publish will succeed. (@Pulseway: correct me if I'm wrong). I just tested your request with the correct endpoint and it seems to be working here. Paul
-
Possible to Monitor Text-Based Log Files?
Hey there, I'm using Pulseway to monitor my error log files (maybe you can edit your scripts to write only errors to the file you ask Pulseway to monitor) and send me a notification whenever the file changes. This way you will be able to open Pulseway on your mobile device and tail the error log file to view the error you are looking for. Pulseway doesn't know to filter notifications by keywords (as of now) but you can have your script only write to the Pulseway monitored log file if it contains the keywords you are looking for. This may be a workaround but at least you get the job done . Good Luck!