Jump to content

Martin Stevnhoved

Members
  • Posts

    205
  • Joined

  • Last visited

Everything posted by Martin Stevnhoved

  1. It would be nice if we could set up dynamic tags. Devices could have tags added/removed based by rules, like: does one or more files (from a list) exist on the device does one or more registy entries (from a list) exist on the device does one or more applications (from a list) exist as installed applications on the device. Of course it should be possible to use wildcards :-)
  2. Any status? The following SQL script shows all failed (and enabled) agent jobs: SELECT name FROM msdb.dbo.sysjobs WHERE ((SELECT TOP (1) run_status FROM dbo.sysjobhistory WHERE (step_id = 0) AND (job_id = dbo.sysjobs.job_id) ORDER BY run_date DESC, run_time DESC) = 0) AND (enabled = 1)
  3. Have you looked in to this? It looks like a very easy quickfix for you, and would help us a lot. Put two new options in SQL Server config. One for how old a full/differential backup is allowed to be, and one for how old the log backup is allowed to be. Then loop through the databases (except tempdb) and check for last backup time for all databases and last log backup for databases not in "simple" recovery mode. Last full or differential backup (for model db as an example) SELECT TOP (1) database_name, backup_finish_date FROM msdb.dbo.backupset WHERE (type IN ('D', 'I')) AND (database_name = N'model') ORDER BY backup_finish_date DESC Last log backup (for model db as an example) SELECT TOP (1) database_name, backup_finish_date FROM msdb.dbo.backupset WHERE (type = 'L') AND (database_name = N'model') ORDER BY backup_finish_date DESC You could also look at the databases create time, so we don't get notified because the first backup hasn't run yet.
  4. Hi Paul, Do you have some timeframe for this new addition? Just to know if I should wait with my plugin ideas, or revrite them late.
  5. I guess it is not supported. Consider it a feature request.
  6. I guess the shutdown would always be triggered by som user. Often it is a real user, but sometimes it could be SYSTEM or NETWORK SERVICE.
  7. Hi. When receiving the notification "The computer 'XXX' in group 'XXX' is shutting down" I am always wondering who is shutting down the server. Could it be possible to add information about which user initiated the shutdown? I know that Windows write it to the eventlog, so the information should be available. If it could possible to match the users with RDP connections, so we also can see what client the user was connected from, it would something near perfect. The computer 'XXX' in group 'XXX' is shutting down by user 'XXX' logged on interactively. The computer 'XXX' in group 'XXX' is shutting down by user 'XXX' logged on remotely from client 'XXX'.
  8. Hi Paul. Perhaps you could give me a quick example. I have the same challenge with DateTimeInputItem. System.DateTime datelocal = System.DateTime.Now; System.DateTime dateutc = datelocal.ToUniversalTime(); Groups result = new Groups(); Group group = new Group("More Information"); group.Items.Add(new DateTimeInputItem("local", datelocal.ToString())); group.Items.Add(new DateTimeInputItem("utc", dateutc.ToString())); result.Add(group); When running the above on a server in UTC+8 and showing it on a mobile device in UTC+1 it gives me the attached result. I would like a function that converts the time to the mobile device Time Zone. Annotation 1 is my phones local time (UTC+1) Annotation 2 is the servers local time (UTC+8) Annotation 3 is the servers universal time (UTC) Br, Martin.
  9. 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.
  10. This is indeed the limitation I most run into when developing plugins.
  11. 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.
  12. Hi. We are having a hosted Enterprise server. Then a device stops responding, we first get a notification after 20 minutes. Is it possible lover that time to - what about 5 minutes? Br, Martin.
  13. #4 is for sanity check. We have came to a volume, where we would like to have a dispacher monitoring the notification list. It would be nice to have him decide when to raise a ticket. One example is that when we do windows update patching we have 100+ notifications that we don't want to be created as zendesk tickets. The servers are in maintenace mode durring the update, but in the hour after there is an increased cpu, memory and disk activity that creates a lot of obsolete notifications. Br, Martin.
  14. Hi Paul. What is you expected release for this improved windows update command that only notify me if updates were publishing for more than a configurable amount of days? This will indeed help us keeping track of critical updates.
  15. We have ended up by designing a plugin, that gets the time for the last successfully backup in the event log. It then raises a notification, if the timespand exceeds our threshold. Even though it works fine, we would like to see it as a native module in Pulseway.
  16. Hi, We are using the Zendesk-integration, and have some ideas that would improve the integration. 1. Notify that ticket creation fails. If password is changed or any other things result in Zendesk ticket not being created, we miss it. 2. Save ticket id on notification. It would be nothing more than fantastic if the notification list in Pulseway would visually show that a ticket was created. If it were possible to se the ticket number, you could also link directly to the Zendesk web app. Did I mention that this would be amazing?!!! 3. Global Zendesk settings. Today we set up Zendesk account for every server og group. I would be nice if the Zendesk account were a global setting, and that we could just define requester email-address (and notification levels pr. server/group). It would make it a lot easier to update the account settings, and setup new servers or groups. 4. On demand ticket creation. Today all notification that match the level filter are created as ticket. It would be nice if the settings could differentiate between "automatic" and "manually". Automatic would be the current way, and manually would allow to select "Create ticket" on the notifications in apps and dashboard.
  17. Are there any way to export the notification archive to a CSV-file from the Enterprise Server. Can the support do it for us? So the only way is to change to an on-premise Enterprise Server?
  18. Do you have any idea about this? We would like to do some BI on our notification archive, to see what notifications we get the most, on which devices.
  19. Hi, I think I have asked for it before, but can not find it. I think it would be very easy for you to implement :-) For CPU-notifications we can provide a timespan, but not for memory. This gives us a lot of notifications on memory peaks. We would like also to provide a timespan for memory. Please consider this a feature request. Br, Martin.
  20. When monitoring free space, we are currently using these baselines: Disks < 130 GB : Elevated at 15% and Critical at 5% Disks > 130 GB : Elevated at 15GB and Critical at 5GB Currently that is a manual process, and we need to set it up again if we add new disks. We are thinking of implementing a plugin to automatic configure levels for new disks.
  21. Hi. It would be super nice, if we could get (read only) SQL access to the hosted Enterprise server database. Then we could do all the integrations on users, assets, notifications (and more) that we would ever dream of. Please consider this a feature request :-) Br, Martin.
×
×
  • Create New...