This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Verb Orion.AlertConfigurations.Export: Not found

What am I doing wrong here?

swis.invoke('Orion.AlertConfigurations', 'Export', alertId)

> DEBUG "POST /SolarWinds/InformationService/v3/Json/Invoke/Orion.AlertConfigurations/Export HTTP/1.1" 400 616

__main__.SwisException: SolarWinds.InformationService.Verb.VerbExecutorException:

Verb Orion.AlertConfigurations.Export: Not found

   at SolarWinds.InformationService.Core.InformationService.InvokeInternal[T](String entity, String verb, Action`1 setupParameters, Func`2 extractReturnValue)

   at SolarWinds.InformationService.Core.InformationService.SolarWinds.InformationService.Core.IRestInformationService.Invoke(String entity, String verb, Object parameters): Verb Orion.AlertConfigurations.Export: Not found SolarWinds.InformationService.Verb.VerbExecutorException

Alerts · solarwinds/OrionSDK Wiki · GitHub  describes Export and Import verbs for Orion.AlertConfigurations.

Main Orion Server Details

Orion

Module Name Orion Platform

Version 2015.1.2

NCM

Product Name Network Configuration Manager

Version 7.4

SAM

Product Name Server & Application Monitor

Version 6.2.2

NPM

License Production

Product Name Network Performance Monitor

Version 11.5.2

IVIM

License 

Product Name Integrated Virtual Infrastructure Monitor

Version 2.1.0

DPA

Product Name Database Performance Analyzer

Version 10.0.0


Thanks

-tim

  • Don't know if this helps, but I located the log file InformationService/v3.0/Orion.InformationService ,

    which contains the following messages reflecting two failed attempt at passing the alertID value 208 as an integer and as a string.

    2015-12-07 15:34:16,578 [35] ERROR SolarWinds.InformationService.Core.InformationService - (null)     Exception caught in method SolarWinds.InformationService.Core.IRestInformationService.Invoke

    SolarWinds.InformationService.Verb.VerbExecutorException: Verb Orion.AlertConfigurations.Export: Not found

       at SolarWinds.InformationService.Core.InformationService.InvokeInternal[T](String entity, String verb, Action`1 setupParameters, Func`2 extractReturnValue)

       at SolarWinds.InformationService.Core.InformationService.SolarWinds.InformationService.Core.IRestInformationService.Invoke(String entity, String verb, Object parameters)

    2015-12-07 15:36:36,328 [42] ERROR SolarWinds.InformationService.Core.InformationService - (null)     Exception for Operation: <root type="array">

      <item type="array">

        <item type="number">208</item>

      </item>

    </root>

    2015-12-07 15:36:36,328 [42] ERROR SolarWinds.InformationService.Core.InformationService - (null)     Exception caught in method SolarWinds.InformationService.Core.IRestInformationService.Invoke

    SolarWinds.InformationService.Verb.VerbExecutorException: Verb Orion.AlertConfigurations.Export: Not found

       at SolarWinds.InformationService.Core.InformationService.InvokeInternal[T](String entity, String verb, Action`1 setupParameters, Func`2 extractReturnValue)

       at SolarWinds.InformationService.Core.InformationService.SolarWinds.InformationService.Core.IRestInformationService.Invoke(String entity, String verb, Object parameters)

    2015-12-07 15:36:53,879 [42] ERROR SolarWinds.InformationService.Core.InformationService - (null)     Exception for Operation: <root type="array">

      <item type="string">208</item>

    </root>

    2015-12-07 15:36:53,879 [42] ERROR SolarWinds.InformationService.Core.InformationService - (null)     Exception caught in method SolarWinds.InformationService.Core.IRestInformationService.Invoke

    SolarWinds.InformationService.Verb.VerbExecutorException: Verb Orion.AlertConfigurations.Export: Not found

       at SolarWinds.InformationService.Core.InformationService.InvokeInternal[T](String entity, String verb, Action`1 setupParameters, Func`2 extractReturnValue)

       at SolarWinds.InformationService.Core.InformationService.SolarWinds.InformationService.Core.IRestInformationService.Invoke(String entity, String verb, Object parameters)

  • Hi,

    Export and Import verbs are not available in 2015.1.2 version of Orion. It will be part of the next major release.

    If you have SDK installed, you can open SWQL Studio and expand this entity to see the available verbs, or run the below provided query to get the details.

    SELECT Name, MethodName, CodeBehind, CanInvoke, EntityName

    FROM Metadata.Verb

    WHERE EntityName = 'Orion.AlertConfigurations'