Comments
-
I have not seen other reports, can you share the support case number? As of this time we have not tested the Alert Integration App with San Diego, I have opened an internal ticket to add support for this version.
-
It appears that the user does not have permission to access to the dashboard, check the visibility is set to "public" under settings -> manage dashboards -> Set Visibility
-
Yes there is, we have a tech preview available 2022.1. https://thwack.solarwinds.com/product-forums/the-orion-platform/observability-essentials-on-prem-preview/f/forum/93517/welcome-to-the-observability-essentials-preview
-
How are you fetching the data from Orion? I am not familiar with Grafana but it looks like you need a connector. github.com/.../grafana-swis-datasource
-
NotifyEnabled indicates whether swis notifications are enabled or not for the alert definition. The default value is enabled. This setting is used for alert integrations. The old name for this setting was: "Enable sending alert data to subscribers" This was originally introduced for better integration with Alert Central…
-
A single polling engine can support up to 1,000 agents with default polling enabled (CPU/Memory utilization, response time). You will require additional polling engines to achieve this scale.
-
What is the error message? Have you looked at this guide here? thwack.solarwinds.com/.../118570
-
Do you mean your Orion Instance or SN instance? Have you looked at this guide? I at https://documentation.solarwinds.com/en/success_center/orionplatform/content/core-servicenow-how-it-works.htm
-
If by embedded links you mean "Report from Orion Report Writer", these resources will be removed in the next release.
-
CAC authentication is complex to troubleshoot. I would recommend opening a support case to help resolve this.
-
Try creating the URL for the nodes like this based on the remote website and the details URL for the node. SELECT n.Caption,n.LastBoot,n.Status,n.OrionSite.Website + n.DetailsUrl as [URL] FROM Orion.Nodes nThen use the [URL] field for the Details Url in the field format. Does that work?
-
The guest account will not be removed when upgrading. It is not created for new installs only. The account and all local Orion accounts will require a new password to be set within 30 days. If the password is not updated within 30 days the accounts will be disabled. This is a one-time operation, once the password is…
-
You most likely have updated your script to something like this, sharing for posterity. result = swis.invoke("Orion.Accounts","ChangePassword",args["accountId"],args["password"])
-
I remember encountering a similar problem when working on this post https://thwack.solarwinds.com/product-forums/the-orion-platform/f/orion-sdk/90898/python-api---credential-manager I had to resort to passing the values rather than using a dictionary for the arguments. If i remember it was something to do with positional…
-
The REST API does not need to be enabled in any way, it is part of the information service. The examples here should be enough for any developer easily make queries to pull this data out https://solarwinds.github.io/OrionSDK/swagger-ui/#/Query/Query
-
The Orion API is not a supported feature of the platform and our support team is not equipped to handle questions related to custom development like this, as you mentioned the community is a great resource to learn and get help. I would start here to learn more about what can be done with the REST API…
-
What is your query and view limitation?
-
Hello, I am not familiar with grafana and we do not have a concept of a key that I am familiar with. Can you describe what your process looks like? It is relatively easy to query data from Orion using the API, there are some examples of how to do this on our API wiki https://github.com/solarwinds/OrionSDK/wiki
-
What version do you have installed?
-
Could you provide steps to reproduce this error i.e type of property created and its usage? Does the error persist if you use the legacy editor http(s)://yourorionserver/Orion/Admin/CPE/Default.aspx
-
are you on 2020.2.6 HF2 also?
-
This is not typical behavior, have you checked the trigger actions for any alerts which may have been applicable?
-
These may be of interest to you. https://documentation.solarwinds.com/en/success_center/orionplatform/content/core-fusion-dashboards.htm https://www.youtube.com/watch?v=9T1VlIvAfdo
-
I don't see any NCM entities which look like they contain job info. Have you looked at NCM.TransferResults to see if has anything interesting.
-
Is Energy Wise polling enabled for the nodes when you 'list resources' from settings- manage nodes?
-
There are a few aspects to consider here. 1. The settings for Interface Percent Utilisation define global values for warning and critical thresholds. See here for more details https://documentation.solarwinds.com/en/success_center/npm/content/core-setting-network-performance-monitor-thresholds-sw671.htm 2. The global…
-
Is there a support case I can look into to learn more?
-
From what I understand Custom Properties for alerts are configured for the alert definition, and not to the Active Instance of that alert definition. The active alert inherits the value from the alert definition and so it is not possible to update the value in this way. In this case, it seems updating the alert notes may…
-
I agree with @"jm_sysadmin" a support ticket is the best course of action. If you have done so could you share the case number with me? I do see similar issues reported which were fixed in 2020.2.5, what version are you using?
-
The way I would approach this would be to start with the Nodes entity, as you mentioned "I want to run a report showing me the licensed status of nodes" So let's start with getting the caption and description for some nodes SELECT Caption, Description from Orion.Nodes The key to navigating or linking the other entities…