Medi Esmail 0 Report post Posted May 4, 2018 I was wondering if this would be a good thread to start to share some Dashboard widget views, I am in the process of implementing logic monitor and would be great to have a view of what kind of dashboards are being used by different teams like Networks, Server , Storage, Security etc. Just a screen shot describing the view would be awesome. I have added some I have created on our implementation. Thanks in advance. Medi Quote Share this post Link to post Share on other sites
Kerry DeVilbiss 0 Report post Posted May 4, 2018 Hi @Medi Esmail, Here's a couple examples that we've put together that are focused on some specific technology silos, and use the new Dynamic Table Widget and the NOC Widget list view (among others.) If you'd like a copy of the tokenized JSON files, let me know and I can send them over! Cheers, Kerry Quote Share this post Link to post Share on other sites
Nick Conlon 4 Report post Posted May 7, 2018 Love the Idea of sharing dashboards, I might have posted it as a feature request at one point. I do believe Kerry himself set us up with some slick overall dashboards in the beginning. Speaking of which, can I snag the json to the public cloud and exchange server dashboards please? Seems very useful! Thank you, Nick Quote Share this post Link to post Share on other sites
Anderas Bockmann 0 Report post Posted May 22, 2018 Hello I would love a copy of those JSON files as well please, specifically the SQL Server and Public Cloud dashboards. Can you please e-mail them to me? Thanks! //Anderas Quote Share this post Link to post Share on other sites
WillFulmer 2 Report post Posted May 22, 2018 Likewise. Love those dashboards and would love those JSON files to manipulate them. Quote Share this post Link to post Share on other sites
B Neumann 0 Report post Posted May 22, 2018 These dashboards are great! Can I get a copy of them? Quote Share this post Link to post Share on other sites
Kerry DeVilbiss 0 Report post Posted May 22, 2018 Thanks for the feedback everyone - I've gone ahead and published these to Github for the time being - they should all be available here: https://github.com/kdevilbiss/Dashboards Be sure to take a look at the documentation on dashboard tokens and let me know if you have any questions or concerns! Quote Share this post Link to post Share on other sites
WillFulmer 2 Report post Posted May 22, 2018 2 hours ago, Kerry DeVilbiss said: Thanks for the feedback everyone - I've gone ahead and published these to Github for the time being - they should all be available here: https://github.com/kdevilbiss/Dashboards Be sure to take a look at the documentation on dashboard tokens and let me know if you have any questions or concerns! Kevin These rock! Great work. Quote Share this post Link to post Share on other sites
Kevin Ford 4 Report post Posted May 23, 2018 Thanks Kerry! These are great and really help spark some ideas! Quote Share this post Link to post Share on other sites
Brian Wagner 1 Report post Posted May 23, 2018 Kerry, these are awesome. Keep them coming! Would love to see for Cisco switches, CheckPoint FW's, Citrix XA/XD, Citrix NetScaler, and more! Much appreciated, these really do help a lot. 1 Quote Share this post Link to post Share on other sites
WillFulmer 2 Report post Posted May 24, 2018 11 hours ago, Brian Wagner said: Kerry, these are awesome. Keep them coming! Would love to see for Cisco switches, CheckPoint FW's, Citrix XA/XD, Citrix NetScaler, and more! Much appreciated, these really do help a lot. Agreed. Add NetApp and Nutanix to the list. Anyone willing to start a dashboard? "Willing" contributed here both in terms of time/effort put into this or a donation if someone else beats me to the punch. Quote Share this post Link to post Share on other sites
Medi Esmail 0 Report post Posted May 25, 2018 Thanks Kerry, Awesome dashboards I feel like a kid in a candy store, "can we have some more?" regards, Medi Quote Share this post Link to post Share on other sites
Medi Esmail 0 Report post Posted May 28, 2018 Would any one have any vmWare dashboards and willing to share ?even if its just a screen shot or if its not configured to work with dashboard tokens? regards, Medi Quote Share this post Link to post Share on other sites
Kerry DeVilbiss 0 Report post Posted May 29, 2018 (edited) @Medi Esmail - if you check the GitHub Repository, I uploaded a dashboard last week that applies to a vCenter instance that is now available for download: With the exception of the Big Number widgets, ESXi hosts should use mostly the same DataSources and be point-able towards a VMware host, as well. (But it was written for vCenter.) Cheers, Kerry * I also just uploaded a copy of the JSON for the default dashboard set that is created in every new account (as of LogicMonitor v.98) - these assume the presence of a handful of dynamic groups: Edited May 29, 2018 by Kerry DeVilbiss added default dashboards to respository Quote Share this post Link to post Share on other sites
PW-MrFreeze 1 Report post Posted June 8, 2018 Thanks a ton! I've been manipulating these for our environment. I've begun making a bunch of modifications so they will display nicely on a couple NOC screens. Quote Share this post Link to post Share on other sites
Mosh 115 Report post Posted July 27, 2018 Mine are very tailored for our global operations center. We have business/infrastructure service specific ones as well as a general IT Opeations view. We have an alert management view for our legacy on-premises IT Operations team which organises alerts into three buckets, that the first image below. The second is a custom app I built with Google Apps Script which uses the REST API to bring in events from LogicMonitor and ServiceNow. This view is usually on the big screens and the app allows us to add custom logic, for example, correlating change requests with alerts, and de-duplicate alerts, and also present our own severity colors. Quote Share this post Link to post Share on other sites
Kerry DeVilbiss 0 Report post Posted July 27, 2018 @Mosh Wow! That bottom dashboard is something else... impressive! Any pointers for others who want to replicate what you've done there? Quote Share this post Link to post Share on other sites
Mosh 115 Report post Posted July 27, 2018 (edited) Thanks @Kerry Here's a tip on how I simplified our use of the REST API. I setup some "API" dashboards that would act to serve data to our REST calls. I use the Get Widget Data REST method (/dashboard/widgets/{widgetID}/data) from our custom application to fetch data from the widgets on the API dashboards (mainly alert widgets). The reason for doing this is that we can easily control the data the REST method returns by configuring the filters in the widgets. This is much easier than having to update our application code if we want to make a quick change. My Google Apps Script library started from this post I made last year. I have an equivalent library for ServiceNow. These are all server side, and the HTML page in our app makes asynchronous calls to the Google Apps Script server side functions which return the JSON back to the client side JavaScript. It's short and just implements the REST call for Get Widget Data: var MonitoringDataProvider = { Widget : { Events : { /* Widget IDs */ APAC : 721, ASIA : 736, EMEA : 680, AMERICAS : 735, GLOBAL : 737 } } }; var MonitoringDataService = { API : { ROOT_CONTEXT : "https://<yourdomain>.logicmonitor.com/santaba/rest" }, getResource : function(params) { var LM_API_CONTEXT = this.API.ROOT_CONTEXT; var LM_ACCESS_ID = "<your access ID>"; var LM_ACCESS_KEY = "<your access key>"; var httpVerb = "GET"; var epoch = new Date().getTime(); var signatureMessage = httpVerb + epoch + params.resource; var signatureBytes = Utilities.computeHmacSha256Signature(signatureMessage, LM_ACCESS_KEY, Utilities.Charset.UTF_8); var signatureHex = HexUtils.convertByteArrayToHex(signatureBytes); signature = Utilities.base64Encode(signatureHex, Utilities.Charset.UTF_8); var authorization = "LMv1 " + LM_ACCESS_ID + ":" + signature + ":" + epoch; var headers = { "method" : "GET", "contentType" : "application/json;charset=utf-8", "headers" : { "Authorization" : authorization } }; switch (params.type) { case "alerts": var url = LM_API_CONTEXT + params.resource + "?size=1000&fields=" + params.fields + "&filter=" + params.filter; break; case "metric": var url = LM_API_CONTEXT + params.resource; break; } var response = UrlFetchApp.fetch(url, headers); json = response.getContentText(); return json; }, getEventsWidgetData : function(widgetId) { var params = { resource : "/dashboard/widgets/##WIDGET_ID##/data", fields : "internalId,startEpoch,ackedEpoch,severity,acked,ackComment,monitorObjectId,monitorObjectName,monitorObjectGroups,dataPointName,alertValue", filter : "", type : "alerts" }; params.resource = params.resource.replace("##WIDGET_ID##", widgetId); var json = MonitoringDataService.getResource(params); return json; } }; function getMonitoringEventData(widgetGeography) { return MonitoringDataService.getEventsWidgetData(MonitoringDataProvider.Widget.Events[widgetGeography]); } Edited July 27, 2018 by Mosh Quote Share this post Link to post Share on other sites
Darren Dudgeon 0 Report post Posted April 9 On 5/22/2018 at 12:16 PM, Kerry DeVilbiss said: Thanks for the feedback everyone - I've gone ahead and published these to Github for the time being - they should all be available here: https://github.com/kdevilbiss/Dashboards Be sure to take a look at the documentation on dashboard tokens and let me know if you have any questions or concerns! Thumbs up to these. Thanks for sharing! Quote Share this post Link to post Share on other sites
Blake 2 Report post Posted May 10 Looks like the Ubiquiti dashboard doesn't work with the newer controller software versions of Unifi. Quote Share this post Link to post Share on other sites
Kerry DeVilbiss 0 Report post Posted October 14 @Blake - apologies for the delay here - those modules were in flux for a little bit - now that we've published a set of new modules to the official repository, I've updated the Unifi dashboard to use the lastest / greatest: The download is available at https://github.com/kdevilbiss/Dashboards/blob/master/Ubiquiti_Unifi_v2.json Cheers, Kerry Quote Share this post Link to post Share on other sites