Provisioning ReST API behaves different in 1.12 than in 1.10
Description
Acceptance / Success Criteria
Lucidchart Diagrams
Activity
Ron Roskens September 2, 2013 at 10:50 PM
Ah, yeah, after looking through the REST calls, all of what I was asking already seem to be there.
Benjamin Reed September 1, 2013 at 11:10 PM
You can already do:
HEAD (or GET) /requisitions/{name}
...and it will write it to disk. It's only in-memory until a read operation occurs. (This is to speed up the not-uncommon usage of pushing a bunch of nodes to a requisition, then doing something with it, previously it would re-read the whole file and re-write it every time you made a change.)
...and for importing, you can always use send-event to import a URL directly, it will get written to the etc/imports/ when the import completes.
To revert the pending changes to the current, you should already be able to make a DELETE HTTP call to /requisitions/{name}/pending. If you mean to revert the in-memory to the version in pending on-disk, well... You could POST the entire contents of the on-disk one to /requisitions/{name} to replace it, I believe.
Ron Roskens September 1, 2013 at 2:59 PM
Could we add additional URLs to work with in-memory copy of the pending data?
/requisitions/{name}/pending/export
export in-memory copy of pending data to disk ($OPENNMS_HOME/etc/imports/pending/{name}.xml)
/requisitions/{name}/pending/import
Replaces the existing in-memory copy of pending data with the contents of the on disk file ($OPENNMS_HOME/etc/imports/pending/{name}.xml).
/requisitions/{name}/pending/delete
Reverts the pending changes to the current deployed version of the the requisition.
Then if someone wanted to make changes via both URL calls and on disk, they have the means to get the two into sync.
Benjamin Reed August 30, 2013 at 12:37 PM
Using the ReST API directly is cool too, the problem is when you mix and match using the ReST API and the filesystem. It is correct to do either everything through ReST, or nothing, but not both.
So the behavior is fine, it's just provision.pl that needs to consider a redirect as success (since on success we redirect to the appropriate get for the data just submitted). It is not correct to assume you can make a bunch of ReST put calls and then expect to see the changes in $OPENNMS_HOME/etc/imports/pending without performing an import or synchronous call first.
Not saying you're doing that or anything wrong necessarily, just clarifying a point in how the ReST stuff is expected to work from our PoV. The etc/imports/ dir is an implementation detail, and really not meant to be interacted with directly even though in practice many people do.
Alejandro Galue August 30, 2013 at 9:33 AM
I just want to let you know that I re-fixed https://opennms.atlassian.net/browse/NMS-6072#icft=NMS-6072. Now provision.pl is completely in sync with the new asynchronous operation. So now, the file will be created on the pending directory only if an explicit GET request is performed.
Details
Assignee
Matt BrozowskiMatt BrozowskiReporter
Ronny TrommerRonny TrommerLabels
Components
Affects versions
Priority
Major
Details
Details
Assignee
Reporter
Labels
Components
Affects versions
Priority
PagerDuty
PagerDuty Incident
PagerDuty
PagerDuty Incident
PagerDuty

The behavior using ReST for putting systems into OpenNMS is different.
Behavior in 1.10.12
------------------------- ./provision.pl requisition add MyRequisition
MyRequisition.xml is directly created in imports/pending
WebUI shows directly the MyRequisition
./provision.pl node add MyRequisition MyNode MyNode
MyRequisition.xml has the node in the file system
WebUI shows 1 node and 0 in database
./provision.pl requisition import MyRequisition
MyRequisition.xml is moved from imports/pending into imports pending is empty
WebUI shows 1 node in requisition and 1 in database.
Behavior 1.12.0
-------------------- ./provision.pl requisition add MyRequisition
Shows message:
303 See Other at ./provision.pl line 679
main::post('', 'XML::Twig::Elt=HASH(0x16c0a08)') called at ./provision.pl line 188
main::cmd_requisition('add', 'MyRequisition') called at ./provision.pl line 110
Folder imports/pending is empty
WebUI shows nothing
./provision.pl node add MyRequisition MyNode MyNode
Shows the followings:
303 See Other at ./provision.pl line 679
main::post('MyRequisition/nodes', 'XML::Twig::Elt=HASH(0x2ff2098)') called at ./provision.pl line 260
main::cmd_node('add', 'MyRequisition', 'MyNode', 'MyNode') called at ./provision.pl line 110
Folder imports/pending still empty
WebUI shows not the new requisition group
./provision.pl requisition import MyRequisition
Shows message
303 See Other at ./provision.pl line 679
main::post('MyRequisition/nodes', 'XML::Twig::Elt=HASH(0x1535098)') called at ./provision.pl line 260
main::cmd_node('add', 'MyRequisition', 'MyNode', 'MyNode') called at ./provision.pl line 110
Nodes are not imported and WebUI is empty.
I figured out doing a
./provision.pl requisition list MyRequsition
the file is created in imports/pending/MyRequisition.xml. The Node is preserved and is in the requisition file.
Importing the requisition with
./provision.pl requisition import MyRequisition
303 See Other at ./provision.pl line 650
main::put('MyRequisition/import') called at ./provision.pl line 182
main::cmd_requisition('import', 'MyRequisition') called at ./provision.pl line 110
synchronizes the requisition to OpenNMS database. Anyone who uses ReST for the integration will run in issues on 1.12, cause the workflow is somehow broken compared to the behavior to 1.10. I haven't found any documentation which is related to this changed behavior. Would be nice if somebody can shed some light on this issue.