Should the audit log capture create events for a given node? In the below example, I create a node, create two pollers to have ICMP stats collected, then toggle a custom value on the node. The toggles are logged but the create events are not. Is that expected?
[rw ~]$ curl -H "Content-Type: application/json" -k -u <removed> "orion:17778/.../Orion.Nodes" -X POST -d '{"ObjectSubType":"ICMP","IPAddress":"1.1.1.5","NodeName":"RW-TEST5","PollInterval":"60","EngineID":"1","RediscoveryInterval":"120","StatCollection":"1","EntityType":"Orion.Nodes"}'
"swis://orion.mydomain.com/Orion/Orion.Nodes/NodeID=1889"
[rw ~]$ curl -H "Content-Type: application/json" -k -u <removed> "orion:17778/.../Orion.Pollers" -X POST -d '{"PollerType":"N.ResponseTime.ICMP.Native","NetObjectID":"1889","NetObjectType":"N","NetObject":"N:1889"}'
"swis://orion.mydomain.com/Orion/Orion.Pollers/PollerID=10061"
[rw ~]$ curl -H "Content-Type: application/json" -k -u <removed> "orion:17778/.../Orion.Pollers" -X POST -d '{"PollerType":"N.Status.ICMP.Native","NetObjectID":"1889","NetObjectType":"N","NetObject":"N:1889"}'
"swis://orion.mydomain.com/Orion/Orion.Pollers/PollerID=10062"
[rw ~]$ curl -H "Content-Type: application/json" -k -u <removed> "orion:17778/.../CustomProperties" -X POST -d '{"maintenance_mode" : "True" }'
null
[rw ~]$ curl -H "Content-Type: application/json" -k -u <removed> "orion:17778/.../CustomProperties" -X POST -d '{"maintenance_mode" : "False" }'
null
