5 SEPP Alerts

This section provides information about the SEPP alerts and their configuration.

Note:

For CNE1.8.4 or earlier versions:

  • namespace: {{$labels.kubernetes_namespace}}
  • podname: {{$labels.kubernetes_pod_name}}

For CNE 1.9.x or later versions:

  • namespace: {{$labels.namespace}}
  • podname: {{$labels.pod}}

Note:

Several Alert labels had extra spaces surrounding their values, which have now been corrected. The affected labels include: namespace, app, pod, header, api_url, requestPath, source, and nf_instance_id.

For example:

Previously, label values contained extra spaces due to the template formatting, such as:

namespace: ' {{ $labels.namespace }} '

which produced values like:

namespace: " sepp-namespace "
.

The formatting has been updated to remove these spaces:

namespace: '{{ $labels.namespace }}'

resulting in properly trimmed values like:

namespace: "sepp-namespace"
.