Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Field NameTypeScript codeDescription
flowStatusstringif (doc.containsKey('STATUS.keyword') && !doc['STATUS.keyword'].empty) { if (doc.containsKey('ACTION.keyword')) { if (doc['STATUS.keyword'].value =~ /NOTIFIED/) return null; if (doc['STATUS.keyword'].value =~ /(20?)|(DEPLOYED)|(_OK)/) return "Flow_Success"; else if (doc['STATUS.keyword'].value =~ /(40?)|(50?)|(ERROR)|(NOT_)/) return "Flow_Failure"; } } return null;Determines the flow status to be either Flow_Success or Flow_Failure based on STATUS info
RequestId_UUIDstringif (doc.containsKey('RequestId.keyword')) return doc['RequestId.keyword'].value; else if (doc.containsKey('UUID.keyword')) return doc['UUID.keyword'].value;In the absence of RequestId, reports the UUID if available

(info) For the sake of performanceof Kibana queries, the user could include these fields into the onap-pipeline.conf. 

Import Kibana Object

On Kibana browser, import this Kibana object file (json) on Management → Saved Objects → Import. 

...

  • This dashboard reports the total success and failure counts for the specified time period 
  • Highlights which flows tend to fail more frequently than the others

Image RemovedImage Added