Everything posted by Paul
-
Unattended installation for .msi
Hi Aaron, Try to also add the following argument to the msi: ALLUSERS=1 When you install the agent silently I believe it's not ran by the same user but by the administrator user which is why you don't see it in the programs and features and also explains why the shortcuts are missing. For notifications you can either configure a group policy (from Pulseway Manager -> Manage Systems -> Manage Group Policies) or edit the configuration remotely using the Pulseway Dashboard app or import the configuration file like this: -Paul
-
Email sending server IP ranges
Hi James, Our email server's IP address is: 167.89.85.223. This IP address is subject to change without notice. -Paul
-
PageItem with SimpleItemStyle (or custom icons)
Hi Dilbert, Thank you for your feedback. We plan on supporting custom icons for the API in the future. Great idea . -Paul
-
Unable to monitor CPU-temp
Hi Jaapyse, I'm not sure why Pulseway isn't detecting any hardware sensors on the proliant server. We're monitoring a couple of proliant servers ourselves and the hardware is correctly identified. Does the HP Management portal detect the hardware sensors? Can you run the following app to see what hardware information is displayed (link). -Paul
- Unknown application installed/uninstalled
-
Wake on WAN
Hi Tom, We do some trickery there if you have another online agent in the same group with the system you're trying to wake and both have the same WAN IP address by sending a command to the online system to broadcast the WOL magic packet in the local network. Is this the case in your situation? -Paul
-
Searchable lists
You could add the first field in the list (or maybe move it to a separate page) to be a text input item and when it changes it will filter the list. You could also refuse to list anything when the search query is empty so that you will never list all of the users. -Paul
- A few newbie questions...
- Wake on WAN
-
List Asset Info even when agent is offline
Hi Grunta, It will be released in Q2 2016. -Paul
- Best Practice for multiple users
-
Pulseway Manager - hidden settings
Hi, You can login as an administrator user and install the Pulseway app for "Current User" instead. When other users will look in the Programs and Features Pulseway will not be listed. Also, you can remove the user from the Administrators group, this will prevent them from uninstalling Pulseway. If nothing works just remove the Uninstall key from the registry using CCleaner or plain regedit (HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall). -Paul
- Dashboard requires administrative privileges
-
Agent cannot connect to the server
Hi Jaapyse, Chris has asked me to take a look at your case. You should be able to run as many agents as you'd like in the same network so this is not a known bug. Can you try to install two agents on a different network to see if the problem can be reproduced on a different environment? -Paul
-
Feature Request: Report detailed uptime/downtime
Hi James, A system is considered as offline when you receive the offline notification. For the Professional product that is about 10 minutes after the agent stops communicating with the Pulseway Cloud Servers and for the Enterprise product this interval can be customized. -Paul
-
Get notification list by webservice/API.
Hi Martin, Our current API (v1) doesn't support getting the list of notifications nor deleting them however we are working as we speak on the REST API v2 which will support these actions. The notification archive will not be exposed in the REST API v2, we will consider this for a future release. -Paul
- Debian 8 x64 agent Ping error
-
No hardware details - Asus Sabertooth
Hi Marc, It's odd that you still don't see the CPU temperatures. Try with HW-Monitor too: http://www.cpuid.com/softwares/hwmonitor.html . -Paul
-
VMware Alerts and Notifications
Hi Adam, You can enable the VMware alarms notification from the Pulseway Manager in the Notifications -> Server Modules -> VMware tab. -Paul
-
Custom Notifications
Hi, You can customize the email template (see blog post) however all notifications should already include the system and group names. -Paul
-
"The service is trying to update the remote desktop components"
Hi, I've sent you an email requesting remote access to your system to diagnose this issue. -Paul
-
Shutdown or Restart Scheduler v1.0
Hi Tony, Thanks for trying my plugin! You can configure the plugin from the mobile/web apps. Open the system details and scroll to the bottom of the page, you should see an additional entry after the system commands. Paul
-
Notification Bridge
Hi, I still believe that the plugin is not correctly installed. I will update the plugin tonight to support repeating notifications. Edit: I've updated the first post with a new version of the plugin that supports repeating notifications, try again with the version 1.2 and see if you still get connection errors. Paul
-
Notification Bridge
Hi, Have you installed the plugin in Pulseway Manager -> Plugins ? Is the Pulseway service started? Try restarting the Pulseway service. Paul
-
Notification Bridge
Hi, Thank you for using my plugin. I think that the plugin worked once and then it stopped working because you didn't delete the first notification you've triggered. When I wrote the plugin I didn't mark the notification as repeatable to prevent scripts from spamming the Pulseway service. One could always modify the following line: https://bitbucket.org/paulcsiki/notification-bridge-plugin/src/860e9fb9c857a0b7f7164062e72c3c9f323b8356/Source/NotificationBridgePlugin/NotificationBridgeService.cs?at=master&fileviewer=file-view-default#NotificationBridgeService.cs-45 Here is the full method signature that Pulseway exposes for plugins: bool SendNotificationToAllDevices(string message, NotificationPriority priority, bool allowMultipleNotifications = false)As you may have guessed, the last parameter if set to true, Pulseway will allow repeated notifications for the NotificationBridge plugin. Paul