Jump to content

Paul

Administrators
  • Posts

    1740
  • Joined

  • Last visited

Reputation Activity

  1. Upvote
    Paul reacted to Jeremy Otten in 4.9 - New Features?   
    Look in the Web UI.. there you can create scopes. And Automation Scripts based on Scopes etc..
    Or run Reports based on the new Scoping ... in the Mobile App you can then run the Reports and download a nice PDF of it.
    Thats what I discovered in 15 minuten of nozing around..
  2. Upvote
    Paul reacted to Jeremy Otten in Group Policy Visibility   
    so the end product will be simple agent locally and managing all settings in the webapp or mobile apps?
  3. Upvote
    Paul reacted to Jeremy Otten in FEATURE REQUEST : Patch Management   
    Centrally managed.. so can they be saved and re-used on other systems?
    Is there also a helping library with most common commands and/or scripts to use with examples?
  4. Upvote
    Paul reacted to Jeremy Otten in FEATURE REQUEST : Software Inventory + license Management per customer (Group..)   
    So put it on that bucketlist!
  5. Upvote
    Paul reacted to Jeremy Otten in FEATURE REQUEST : Postpone Warning or Notification for x-period   
    OK.. that could work... i think...
    But still that is alone for Windows updates.. and not for an alert that can wait a few hours and will then be planned to pick up..
    So please think of an postpone feature
  6. Upvote
    Paul reacted to Jeremy Otten in FEATURE REQUEST : Acronis Backup (12) Integration   
    1. Check backup status
    2. Get notifications of bad backups.
    3. Get notifications when there hasn't been a notification for x period/days
    4. Start backup job
    5. Create/delete/edit backup job
  7. Upvote
    Paul reacted to Jeremy Otten in Faster way to add tag a device   
    +100 for this. 10000 times effiency
  8. Upvote
    Paul reacted to Jeremy Otten in FEATURE REQUEST : Role Group/Customer Seperation   
    Well then centralized with let labour for us please.. add smart sorting and mass action capabilities.
  9. Upvote
  10. Upvote
    Paul reacted to Jeremy Otten in FEATURE REQUEST : Search on logon Username instead of Computer Name   
    9 out of 10 times what we do now.. it the username.. what we do not know is the computername.
  11. Upvote
    Paul reacted to studiouk in Chat Reply Warning   
    Hi Paul,
    I guess a notification would be great.
    I just means we don't have to hang around in the chat windows or the app and can do other things.
    thanks.
  12. Upvote
    Paul reacted to Martin Stevnhoved in SetValueForKey unencrypted?   
    Thanks. I have now worked around it. :-)
    Consider it a feature-request. It should be easy to implement a optional boolean parameter.
    Bye,
    Martin
  13. Upvote
    Paul reacted to Labsy in PCMonitorSrv consuming I/O disk reads   
    Hi Chris,
    did you ever resolve this issue? I have dozen of servers with same symptoms - Pulseway service is top disk I/O Reader:
     

    Typically I have NO plugins installed, and under settings on all servers selected those features:
    SYSTEM --> NETWORK --> Display Ping Response from some IP SYSTEM --> SERVICES --> Selected to manage all Auto-start services SYSTEM --> FILE BROWSER Enabled SYSTEM --> REMOTE DESKTOP Enabled MODULES --> MANAGE --> Active Directory MODULES --> MANAGE --> Exchange MODULES --> MANAGE --> IIS MODULES --> MANAGE --> SQL Server MODULES --> MANAGE --> Windows Server Backup NOTIFICATIONS --> Services NOTIFICATIONS --> Storage NOTIFICATIONS --> Hardware --> CPU temperature NOTIFICATIONS --> SERVER MODULES --> AD (Locked User) NOTIFICATIONS --> SERVER MODULES --> Exchange (Messages Que longer than 20) That's more or less all I have.
    It is hard for me to test, because I would need to disable all features and enable them one by one, reboot server and left it over for a week or so to see results.
  14. Upvote
    Paul reacted to Aaron Trujillo in Unattended installation for .msi   
    Thank you Paul for you help I have successfully installed Pulseway via Jenkins onto my VM's. 
  15. Upvote
    Paul reacted to Dilbert in PageItem with SimpleItemStyle (or custom icons)   
    It would also be great to have more icons in the SimpleItemStyle enumeration. A green check would be nice.
    Dilbert
  16. Upvote
    Paul got a reaction from Dilbert in 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
  17. Upvote
    Paul reacted to Mark in service monitoring   
    The configuration of the services depends on the operating system and the init daemon (UPSTART, SYSVINIT or SYSTEMD).  Debian Jessie use SYSTEMD as system and service manager. Try to change DaemonType="UPSTART" to DaemonType="SYSTEMD".
    Mark
     
  18. Upvote
    Paul reacted to grunta in A few newbie questions...   
    YAY for that...  
    Am looking forward to the future!!..
  19. Upvote
    Paul reacted to grunta in List Asset Info even when agent is offline   
    Thanks - look forward to this....
    P.S. How often would we expect a release to be released?
  20. Upvote
    Paul reacted to Martin Stevnhoved in Pulseway Manager - hidden settings   
    Hide Pulseway from Programs and Features:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{FFB50A7D-1792-4D46-8812-9200B1A6B153}]
    "SystemComponent"=dword:00000001
    You could also try to add "ARPSYSTEMCOMPONENT=1" to the commandline string when doing the unattended installation.
    Br, Martin.
  21. Upvote
    Paul reacted to Dilbert in Best Practice for multiple users   
    Wouldn't it be better to use username and password just for registering the agent with the server and then exchange a key between both systems? This way it qould be easy to move systems between users without changing anything in the agent configuration. Even password changes could be survived by the agent.
    Regards
  22. Upvote
    Paul reacted to Martin Stevnhoved in Backup status in SQL Server module   
    It would be nice with a build in option to trigger notifications based on the date since last backup of any databse.
    We are currently using this custom SQL Query i 'msdb':
    SELECT STUFF((SELECT N', ' + name FROM (SELECT TOP (100) PERCENT db.name FROM (SELECT name FROM master.sys.databases WHERE (state = 0) AND (NOT (name IN ('tempdb')))) AS db LEFT OUTER JOIN (SELECT database_name AS name, backup_finish_date AS timestamp FROM dbo.backupset UNION SELECT name, create_date FROM master.sys.databases) AS b ON b.name = db.name GROUP BY db.name HAVING (NOT (1 * ISNULL(STR(ABS(DATEDIFF(hh, GETDATE(), MAX(b.timestamp)))), - 1) BETWEEN 0 AND 48)) ORDER BY db.name) AS [n1] FOR XML PATH(''),TYPE).value('text()[1]','nvarchar(max)'),1,2,N'') AS [Missing] // Martin.
  23. Upvote
    Paul reacted to Martin Stevnhoved in Agent job staus in SQL server module   
    It would be nice with a build in option to trigger notifications based on failed Agent Jobs.
    We are currently using this custom SQL Query in 'msdb':
    SELECT STUFF((SELECT N', ' + name FROM (SELECT name FROM dbo.sysjobs WHERE (SELECT TOP 1 run_status FROM dbo.sysjobhistory WHERE (step_id = 0) AND (job_id = sysjobs.job_id) ORDER BY run_date DESC, run_time DESC) = 0 AND (enabled = 1)) AS [n1] FOR XML PATH(''),TYPE).value('text()[1]','nvarchar(max)'),1,2,N'') AS [Failed] // Martin.
  24. Upvote
    Paul got a reaction from TorW in Notification Bridge   
    Hi everyone,
    Use this plugin to open up a local WCF using net pipes so that a console application can use it to sent notifications to Pulseway. Using this solution you can easily send Pulseway notifications from your scripts.
    Version 1.3
    =Installation=
    Add the NotificationBridgePlugin.dll plugin into Pulseway Manager -> Plugins. Configure your scripts to call NotificationBridge console application. =Usage=
    -p (Priority: 0=Low, 1=Normal, 2=Elevated, 3=Critical) -t (Text message, use double quotes if the message includes a space) -f (Include the text from a file) -r (Allow repeating notifications) Exit Codes:
    0 - Notification was successfully forwarded to Pulseway 1 - Notification was rejected by Pulseway (Maintenance mode, Old notification was not deleted, Pulseway is stopped. As always my plugin is open-source bound by no license. You may claim it your own.
    Source Code: https://bitbucket.org/paulcsiki/notification-bridge-plugin/src
    Download Link: Click
    Paul.
  25. Upvote
    Paul reacted to JHimmelbauer in Notification Bridge   
    Great plugin Paul!
     
    It would be perfect if you can add in one of the next versions the options   <message priority>, <message subject> <message text> optional <message file>   like:
     
    NotificationBridge.exe -p 1 -s "Backupjob Success" -t "1248 MB saved" or
    NotificationBridge.exe -p 3 -s "Backupjob Error" -f "c:\batch\backup.log" (-p 0=Low, 1=Normal, 2=Elevated, 3= Critical). Repeating notifications should be possible.
     
    This Syntax will give script or batchfiles in combination with variables a optimal notification System!
     
    I do this currently via EventCreate command and PCM Event Log notification but your NotificationBridge plugin would be more sexy ;-)
     
    Lg. Sepp
×
×
  • Create New...