Versions Compared

Key

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

...

  1. curl <dcaegen2-dcae-healthcheck> and check if pm-mapper is in 'ready' state. 

    Expand
    titleSee example
    $ curl 10.42.181.66 | jq

    {
    "type": "summary",
    "count": 12,
    "ready": 11,
    "items": [
    {
    "name": "dev-dcaegen2-dcae-pm-mapper",
    "ready": 1,
    "unavailable": 0
    },
    {
    "name": "dev-dcaegen2-dcae-config-binding-service",
    "ready": 1,
    "unavailable": 0
    },
    {
    "name": "dev-dcaegen2-dcae-inventory-api",
    "ready": 1,
    "unavailable": 0
    },
    {
    "name": "dev-dcaegen2-dcae-servicechange-handler",
    "ready": 0,
    "unavailable": 1
    },
    {
    "name": "dev-dcaegen2-dcae-deployment-handler",
    "ready": 1,
    "unavailable": 0
    },
    {
    "name": "dev-dcaegen2-dcae-policy-handler",
    "ready": 1,
    "unavailable": 0
    },
    {
    "name": "dep-dcae-ves-collector",
    "ready": 1,
    "unavailable": 0
    },
    {
    "name": "dep-dcae-tca-analytics",
    "ready": 1,
    "unavailable": 0
    },
    {
    "name": "dep-dcae-prh",
    "ready": 1,
    "unavailable": 0
    },
    {
    "name": "dep-dcae-hv-ves-collector",
    "ready": 1,
    "unavailable": 0
    },
    {
    "name": "dep-dcae-datafile-collector",
    "ready": 1,
    "unavailable": 0
    },
    {
    "name": "dep-dcae-snmptrap-collector",
    "ready": 1,
    "unavailable": 0
    }
    ]
    }


...

Verification 


Code Block


...

Configuration

Configuration of the service consists of generating an inputs file which will be used as part of the Cloudify install. The PM-Mapper blueprints were designed with sane defaults for the majority of the fields.
Below you will find some examples of fields which can be configured, and some of the fields which must be configured.

  • In the Dublin release information about the AAF user must be provided to enable publishing to authenticated topics. An Inputs file with this information included can look like:

    Code Block
    aaf_username: dcae@dcae.onap.org
    aaf_password: <dcae_password>

    where <dcae_password> is replaced with a real password.

  • By default, the PM-Mapper will only allow inbound queries over HTTPS, however its possible to configure it to enable HTTP also. This configuration can look like:

    Code Block
    enable_http: true


  • The default behavior of the PM-Mapper is to map all measType in the received PM XML files, however, it's possible to provide filtering configuration which will reduce the VES event to the counters that the designer has expressed interest in. An example of this configuration:

    Code Block
    pm-mapper-filter: {"filters":[{"pmDefVsn":"targetVersion","nfType":"targetNodeType","vendor":"targetVendor","measTypes":["targetMeasType"]}]}

    In this provided example a VES event containing the "targetMeasType" will only be generated and published if the following conditions are true:

  • The type of the node sending the file is "targetNodeType"
  • The vendor of the node sending the file is "targetVendor"

Additional Information on the filter model can be found here.


  • By default the latest Docker Images will be used when deploying the PM-Mapper, however, this attribute can also be configured like: