IBM Maximo Worker Insights - how do I configure it? - maximo

What are the steps to configure the IBM Maximo Worker Insights instance.
I'm trying to use the product's API and the dashboard.

See Getting Started with Maximo Worker Insights.
Create the admin user
Define the organization hierarchy
Add additional users
Activate shields for users

Related

Application Insights return empty charts on Grafana

I'm trying to display azure application insights on a grafana dashboard, the application insights are enabled for a web service on the Azure ML studio but end up with empty charts for all the available metrics. Can you please tell me where I'm doing it wrong or if I'm missing something? Thank you.
Application Insights is an Application Performance Management service from Azure for web developers on multiple platforms and it can be used to monitor your web application. You would get the charts in Grafana if you are following steps mentioned below.
In Grafana, use the Azure Monitor Data Source plugin which supports Azure Monitor, Azure Log Analytics and Application Insights metrics. But remember this plugin requires Grafana 4.5.0 or newer for Application Insights. You can install the plugin in after updating your Grafana in CLI with the following command.
grafana-cli plugins install grafana-azure-monitor-datasource
You can also set up Grafana on Azure through the Azure Marketplace.
The plugin can access metrics from both the Azure Monitor service and the Application Insights API. But you would need to configure access to the services. If you are using Application Insights, then you need two pieces of information from the Azure Portal which are the Application ID and an API key. Check this Application Insights API QuickStart for more information.
Write analytic queries for the Application Insights. When you set service type to "Application Insights", the menu icon to the right adds another option, "Toggle Edit Mode". Once clicked, it gives you a full text area in which to write log analytics queries. Check this Writing Analytics Queries For Application Insights section of the Grafana document for more information.
The above mentioned procedure will help you get the proper charts in the Grafana. I would also suggest to read this Monitor your Azure services in Grafana document from Microsoft for more information.

Azure AD Automatic User Provisioning With App registration

I'm new to Azure AD and I'm trying to create an app (that I'm developing) and setup an automated user provisioning (SCIM).
The first thing I need to do is to create an application, so I go the App registration in the Azure AD portal and create one. It's a multi-tent application.
After that I navigated to the Authentication menu and added a Mobile and Desktop configuration only. A Service principal is automatically created in the Enterprise applications menu.
When I go the Provisioning menu that is supposed to allow me to configure the automated user provisioning I get this:
"Out of the box automatic provisioning to AppName is not supported today. Ensure that AppName supports the SCIM standard for provisioning and request support for the application as described here. To determine if the application suports SCIM, please contact the application developer."
Does anyone knows why this is happening? Is it because I've added only a Desktop and Mobile platform configuration? I can't find any good explanation and I can't figure out how to make it work and what I'm supposed to do to make it work.
How am i supposed to make the automatic user provisioning work on my own application?
Thanks!
Provisioning is a feature for Enterprise Applications, which are slightly different in nature from (and have some overlap with) App Registrations. Create an Enterprise Application - a custom/non-gallery app is fine - and you'll be able to enable provisioning on that.

Azure Log Analytics configured for Application Insights showing performing assessment for very long

I am trying to load the logs from Application Insights to OMS in Microsoft Azure. The issue is arising when I am trying to get this data using Application Insights connector and the OMS portal shows me Performing Assessment continuously. Is it normal it already 1 day since this is shown? And Its a demo application which have very less logs.
The root cause maybe due to the Application Insights connector management solution is no longer required and will be deprecated. Starting July, you will not be able to link new Application Insights resources to Log Analytics workspaces.
Please refer to here.
And OMS is moving to Azure, you can use the new portal as described here.

How to fill 'requests' in Application Insights Analytics from HockeyApp in Xamarin app?

I've just started using HockeyApp MetricsManager with Application Insigts Analytics on Azure. I managed to log customevents from my Xamarin App, but how can I log / trace requests?
I saw this requests table on this video: https://channel9.msdn.com/Shows/Cloud+Cover/Episode-214-Hockey-App-and-Azure-App-Insights-with-Evgeny-Ternovsky-and-Josh-Weber
This is the tutorial I used: https://www.youtube.com/watch?v=zcgHorMJklI&t=7s
My code limits to:
MetricsManager.Register(Application, "myAppId");
Unfortunately, requests is not a data type that is supported by HockeyApp. You can see more details here: https://azure.microsoft.com/en-us/blog/mobile-and-desktop-telemetry-in-application-insight-and-hockeyapp/. The demo that Josh and I did that you linked to included a requests table because the data that we were showing starting ~30min in came from a service that was instrumented with Application Insights. We did this just to show the potential of the Analytics tool with a big data set.
That said, HockeyApp does include a custom event mechanism that you can put any data you want into and then query via Analytics. You can see how to do this in section 3.7.2 here - this link is for the iOS SDK but the same option is available for Android and Windows as well.
1 Navigate to your application in the Azure portal.
2 Click on the orange status bar saying Transfer to HockeyApp.
3 Click the Transfer App button.
4 Thats it!
Behind the scenes the migration tool will use your Azure credentials to log in and create a HockeyApp account (if you don't already have one or it isn't linked to your Azure login credentials). It will then automatically provision a new HockeyApp app for you. This new app will be automatically linked with your Application Insights app. They will share the same instrumentationKey / appID and data sent via a AI or HA SDK will flow to both experiences until the June 15th sunset date for Application Insights. After that date data will only be available via HockeyApp.

Get Azure Dashboard data via api

Scenario:
One team had built one application, and application is running on azure.
maintenance is taken care by same team, we don't want to give full access of production instance to developer team, but want to give read permission, like - monitoring of logs, cpu usages etc.
Solution according to me is build an application which will get dashboard data and log data from azure via api and that data will be displayed to development team.
I am referring these 2 links
https://msdn.microsoft.com/en-us/library/azure/dn722415.aspx
https://azure.microsoft.com/en-in/documentation/articles/api-management-get-started/
Question:
Still I am not able to find api which will give the dashboard data. if anyone know api for the same, please help.
Is there any alternative solution for this scenario.
If you deploy your app using the new Azure Resource Manager mode, it provides a Role Based Access Control to your resources. You can deploy your app inside a Resource Group and provide read access to your developers. They will be able to view the information about the services that your app are made of but without the option to change anything.
This session from Build 2015 can help you to understand what ARM is and what you can do with it: https://channel9.msdn.com/Events/Build/2015/2-659

Resources