summaryrefslogtreecommitdiffstats
path: root/dcae-analytics/dpo/dcaeCLOutput.json
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2020-03-19 20:02:54 +0000
committerVijay Venkatesh Kumar <vv770d@att.com>2020-03-19 20:03:03 +0000
commit68dc5ec35c81214f8451426cd51f43a463dd69db (patch)
tree5426795458e49b18f72984d03104e03584794ecb /dcae-analytics/dpo/dcaeCLOutput.json
parent8a31068c107ae9c2c66d4b1aedb16a7a33868c49 (diff)
tcagen2 spec update
Change-Id: I5b0e6c788b632cf0f0a796207c009e18be96a4ca Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com> Issue-ID: DCAEGEN2-1907
Diffstat (limited to 'dcae-analytics/dpo/dcaeCLOutput.json')
-rw-r--r--dcae-analytics/dpo/dcaeCLOutput.json101
1 files changed, 101 insertions, 0 deletions
diff --git a/dcae-analytics/dpo/dcaeCLOutput.json b/dcae-analytics/dpo/dcaeCLOutput.json
new file mode 100644
index 0000000..4a27e11
--- /dev/null
+++ b/dcae-analytics/dpo/dcaeCLOutput.json
@@ -0,0 +1,101 @@
+{
+ "self": {
+ "name": "DCAE_CL_Output",
+ "version": "1.0.1",
+ "description": "The format of the output CL event from DCAE to Policy"
+ },
+ "dataformatversion": "1.0.0",
+ "jsonschema": {
+ "name": "CL Alert",
+ "version": "1.0.0",
+ "properties": {
+ "version": {
+ "type": "string",
+ "enum": [
+ "1.0.2"
+ ]
+ },
+ "closedLoopControlName": {
+ "type": "string",
+ "description" : "This is the unique ID for the Control Loop. It is created by the CLAMP platform during Control Loop design"
+ },
+ "requestID": {
+ "type": "string",
+ "description" : "For the control loop, when an instance of the Control Loop occurs, this unique ID must be created. The same ID must be forwarded for both the ONSET and the ABATED control loop messages"
+ },
+ "closedLoopEventStatus": {
+ "type": "string",
+ "description" : "This is the status of the closedLoopControlName/requestID pair",
+ "enum": [
+ "ONSET",
+ "ABATED"
+ ]
+ },
+ "closedLoopAlarmStart": {
+ "type": "string",
+ "description" : "When the alarm was first detected"
+ },
+ "closedLoopAlarmEnd" : {
+ "type" : "string",
+ "description" : "When the alarm was cleared. This field need only be present in the ABATED message"
+ },
+ "closedLoopEventClient": {
+ "type": "string",
+ "description" : "For monitoring/logging/auditing purposes, if there is an instance ID of the DCAE micro service this field should be populated with it"
+ },
+ "policyVersion": {
+ "type": "string",
+ "description" : "The version of the Policy driving the DCAE Micro service. Should be a part of the configuration policy setup by CLAMP and passed by DCAE controller"
+ },
+ "policyName": {
+ "type": "string",
+ "description" : "The name of the Policy driving the DCAE micro service. Should be a part of the configuration policy setup by CLAMP and passed by DCAE controller"
+ },
+ "policyScope": {
+ "type": "string",
+ "description" : "The scope of the Policy driving the DCAE micro service. Should be a part of the configuration policy setup by CLAMP and passed by DCAE controller"
+ },
+ "from": {
+ "type": "string",
+ "description" : "The ONAP platform component publishing this message",
+ "enum": [
+ "DCAE"
+ ]
+ },
+ "target_type": {
+ "type": "string",
+ "description" : "The type of the target: VM or VNF",
+ "enum": [
+ "VNF",
+ "VM"
+ ]
+ },
+ "target": {
+ "type": "string",
+ "description" : "This is the name of the field within the A&AI sub-tag that indicates the actual entity Node details. There should be a matching node field within the A&AI subtag holding this value",
+ "enum": [
+ "generic-vnf.vnf-id",
+ "vserver.vserver-name"
+ ]
+ },
+ "AAI": {
+ "description" : "Contains the A&AI Node-Attribute list",
+ "anyOf": [
+ {
+ "generic-vnf.vnf-id": {
+ "type": "string"
+ }
+ },
+ {
+ "vserver.vserver-name": {
+ "type": "string"
+ }
+ }
+ ]
+ }
+ },
+ "required": ["version", "closedLoopControlName", "requestID", "closedLoopEventStatus", "closedLoopAlarmStart", "from", "target_type", "target", "AAI"]
+ }
+}
+
+