Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SOL002-SOL003
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Miguel Angel Reina Ortega
SOL002-SOL003
Commits
d5a43886
Commit
d5a43886
authored
5 years ago
by
moscatelli
Browse files
Options
Downloads
Patches
Plain Diff
SOL003: VNF Fault Management datatypes consolidated
parent
eadc9957
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/SOL003/definitions/SOL003_def.yaml
+0
-167
0 additions, 167 deletions
src/SOL003/definitions/SOL003_def.yaml
with
0 additions
and
167 deletions
src/SOL003/definitions/SOL003_def.yaml
deleted
100644 → 0
+
0
−
167
View file @
eadc9957
# Copyright (c) ETSI 2017.
# https://forge.etsi.org/etsi-forge-copyright-notice.txt
definitions
:
Alarm
:
description
:
>
The alarm data type encapsulates information about an alarm.
type
:
object
required
:
-
id
-
managedObjectId
-
rootCauseFaultyResource
-
alarmRaisedTime
-
ackState
-
perceivedSeverity
-
eventTime
-
eventType
-
probableCause
-
isRootCause
-
_links
properties
:
id
:
description
:
>
Identifier of this Alarm information element.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/Identifier"
managedObjectId
:
description
:
>
Identifier of the affected VNF instance.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/Identifier"
rootCauseFaultyResource
:
description
:
>
The virtualised resources that are causing the VNF fault.
$ref
:
"
../../definitions/SOL002SOL003VNFFaultManagement_def.yaml#/definitions/FaultyResourceInfo"
alarmRaisedTime
:
description
:
>
Time stamp indicating when the alarm is raised by the managed
object.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/DateTime"
alarmChangedTime
:
description
:
>
Time stamp indicating when the alarm was last changed. It shall be
present if the alarm has been updated.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/DateTime"
alarmClearedTime
:
description
:
>
Time stamp indicating when the alarm was cleared. It shall be
present if the alarm has been cleared.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/DateTime"
ackState
:
description
:
>
Acknowledgement state of the alarm.
Permitted values:
* UNACKNOWLEDGED
* ACKNOWLEDGED.
type
:
string
enum
:
-
UNACKNOWLEDGED
-
ACKNOWLEDGED
perceivedSeverity
:
description
:
>
Perceived severity of the managed object failure.
$ref
:
"
../../definitions/SOL002SOL003VNFFaultManagement_def.yaml#/definitions/PerceivedSeverityType"
eventTime
:
description
:
>
Time stamp indicating when the fault was observed.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/DateTime"
eventType
:
description
:
>
Type of event.
$ref
:
"
../../definitions/SOL002SOL003VNFFaultManagement_def.yaml#/definitions/EventType"
faultType
:
description
:
>
Additional information to clarify the type of the fault.
type
:
string
probableCause
:
description
:
>
Information about the probable cause of the fault.
type
:
string
isRootCause
:
description
:
>
Attribute indicating if this fault is the root for other correlated
alarms. If true, then the alarms listed in the attribute
CorrelatedAlarmId are caused by this fault.
type
:
boolean
correlatedAlarmIds
:
description
:
>
List of identifiers of other alarms correlated to this fault.
type
:
array
items
:
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/Identifier"
faultDetails
:
description
:
>
Provides additional information about the fault.
type
:
array
items
:
type
:
string
_links
:
description
:
>
Links for this resource.
type
:
object
required
:
-
self
properties
:
self
:
description
:
>
URI of this resource.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/Link"
objectInstance
:
description
:
>
Link to the resource representing the VNF instance to which the
notified alarm is correlated. Shall be present if the VNF
instance information is accessible as a resource.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/Link"
AlarmNotification
:
description
:
>
This type represents an alarm notification about VNF faults.
This notification shall be triggered by the VNFM when:
* An alarm has been created.
* An alarm has been updated, e.g. if the severity of the alarm has
changed.
type
:
object
required
:
-
id
-
notificationType
-
subscriptionId
-
timeStamp
-
alarm
-
_links
properties
:
id
:
description
:
>
Identifier of this notification. If a notification is sent multiple
times due to multiple subscriptions, the "id" attribute of all these
notifications shall have the same value.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/Identifier"
notificationType
:
description
:
>
Discriminator for the different notification types. Shall be set to
"AlarmNotification" for this notification type.
type
:
string
enum
:
-
AlarmNotification
subscriptionId
:
description
:
>
Identifier of the subscription that this notification relates to.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/Identifier"
timeStamp
:
description
:
>
Date-time of the generation of the notification.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/DateTime"
alarm
:
description
:
>
Information about an alarm including AlarmId, affected VNF
identifier, and FaultDetails.
$ref
:
"
#/definitions/Alarm"
_links
:
description
:
>
Links to resources related to this notification.
type
:
object
required
:
-
subscription
properties
:
subscription
:
description
:
>
Link to the related subscription.
$ref
:
"
../../definitions/SOL002SOL003_def.yaml#/definitions/NotificationLink"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment