Matteo Scandolo | a8bd93e | 2018-09-13 13:36:50 -0700 | [diff] [blame] | 1 | // Copyright 2018 Open Networking Foundation |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package main |
| 16 | |
Ganesh Bhure | 8d0c994 | 2019-05-24 11:42:09 +0530 | [diff] [blame] | 17 | // configuration |
| 18 | type BrokerInfo struct { |
Daniele Moro | be24258 | 2019-10-01 14:02:46 -0700 | [diff] [blame] | 19 | Name string `yaml: name` |
| 20 | Host string `yaml: host` |
| 21 | Description string `yaml: description` |
| 22 | Topics []string `yaml: topics` |
Ganesh Bhure | 8d0c994 | 2019-05-24 11:42:09 +0530 | [diff] [blame] | 23 | } |
Matteo Scandolo | a8bd93e | 2018-09-13 13:36:50 -0700 | [diff] [blame] | 24 | |
Ganesh Bhure | 8d0c994 | 2019-05-24 11:42:09 +0530 | [diff] [blame] | 25 | type LoggerInfo struct { |
Daniele Moro | be24258 | 2019-10-01 14:02:46 -0700 | [diff] [blame] | 26 | LogLevel string `yaml: loglevel` |
| 27 | Host string `yaml: host` |
Ganesh Bhure | 8d0c994 | 2019-05-24 11:42:09 +0530 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | type TargetInfo struct { |
Daniele Moro | be24258 | 2019-10-01 14:02:46 -0700 | [diff] [blame] | 31 | Type string `yaml: type` |
| 32 | Name string `yaml: name` |
| 33 | Port int `yaml: port` |
| 34 | Description string `yaml: description` |
Ganesh Bhure | 8d0c994 | 2019-05-24 11:42:09 +0530 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | type Config struct { |
Daniele Moro | be24258 | 2019-10-01 14:02:46 -0700 | [diff] [blame] | 38 | Broker BrokerInfo `yaml: broker` |
| 39 | Logger LoggerInfo `yaml: logger` |
| 40 | Target TargetInfo `yaml: "target"` |
Ganesh Bhure | 8d0c994 | 2019-05-24 11:42:09 +0530 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | // KPI Events format |
Matteo Scandolo | a8bd93e | 2018-09-13 13:36:50 -0700 | [diff] [blame] | 44 | type Metrics struct { |
| 45 | TxBytes float64 `json:"tx_bytes"` |
| 46 | TxPackets float64 `json:"tx_packets"` |
| 47 | TxErrorPackets float64 `json:"tx_error_packets"` |
| 48 | TxBcastPackets float64 `json:"tx_bcast_packets"` |
| 49 | TxUnicastPackets float64 `json:"tx_ucast_packets"` |
| 50 | TxMulticastPackets float64 `json:"tx_mcast_packets"` |
| 51 | RxBytes float64 `json:"rx_bytes"` |
| 52 | RxPackets float64 `json:"rx_packets"` |
| 53 | RxErrorPackets float64 `json:"rx_error_packets"` |
| 54 | RxBcastPackets float64 `json:"rx_bcast_packets"` |
| 55 | RxMulticastPackets float64 `json:"rx_mcast_packets"` |
Scott Baker | e8537af | 2018-10-22 14:53:44 -0700 | [diff] [blame] | 56 | |
Daniele Moro | be24258 | 2019-10-01 14:02:46 -0700 | [diff] [blame] | 57 | LaserBiasCurrent float64 `json:"laser_bias_current"` |
| 58 | Temperature float64 `json:"temperature"` |
| 59 | PowerFeedVoltage float64 `json:"power_feed_voltage"` |
Ganesh Bhure | 967018e | 2019-07-29 14:48:32 +0530 | [diff] [blame] | 60 | MeanOpticalLaunchPower float64 `json:"mean_optical_launch_power"` |
| 61 | ReceivedOpticalPower float64 `json:"received_optical_power"` |
| 62 | |
Scott Baker | e8537af | 2018-10-22 14:53:44 -0700 | [diff] [blame] | 63 | // ONU Ethernet_Bridge_Port_history |
Daniele Moro | be24258 | 2019-10-01 14:02:46 -0700 | [diff] [blame] | 64 | Packets float64 `json:"packets"` |
| 65 | Octets float64 `json:"octets"` |
Matteo Scandolo | a8bd93e | 2018-09-13 13:36:50 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | type Context struct { |
| 69 | InterfaceID string `json:"intf_id"` |
| 70 | PonID string `json:"pon_id"` |
| 71 | PortNumber string `json:"port_no"` |
Scott Baker | e8537af | 2018-10-22 14:53:44 -0700 | [diff] [blame] | 72 | |
| 73 | // ONU Performance Metrics |
Daniele Moro | be24258 | 2019-10-01 14:02:46 -0700 | [diff] [blame] | 74 | ParentClassId string `json:"parent_class_id"` |
Scott Baker | e8537af | 2018-10-22 14:53:44 -0700 | [diff] [blame] | 75 | ParentEntityId string `json:"parent_entity_id"` |
Daniele Moro | be24258 | 2019-10-01 14:02:46 -0700 | [diff] [blame] | 76 | Upstream string `json:"upstream"` |
Matteo Scandolo | a8bd93e | 2018-09-13 13:36:50 -0700 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | type Metadata struct { |
| 80 | LogicalDeviceID string `json:"logical_device_id"` |
| 81 | Title string `json:"title"` |
| 82 | SerialNumber string `json:"serial_no"` |
| 83 | Timestamp float64 `json:"ts"` |
| 84 | DeviceID string `json:"device_id"` |
| 85 | Context *Context `json:"context"` |
| 86 | } |
| 87 | |
| 88 | type SliceData struct { |
| 89 | Metrics *Metrics `json:"metrics"` |
| 90 | Metadata *Metadata `json:"metadata"` |
| 91 | } |
| 92 | |
Matteo Scandolo | aab36db | 2018-10-09 19:54:11 -0700 | [diff] [blame] | 93 | type VolthaKPI struct { |
Matteo Scandolo | a8bd93e | 2018-09-13 13:36:50 -0700 | [diff] [blame] | 94 | Type string `json:"type"` |
| 95 | Timestamp float64 `json:"ts"` |
| 96 | SliceDatas []*SliceData `json:"slice_data"` |
| 97 | } |
Matteo Scandolo | aab36db | 2018-10-09 19:54:11 -0700 | [diff] [blame] | 98 | |
| 99 | type OnosPort struct { |
| 100 | PortID string `json:"portId"` |
| 101 | RxPackets float64 `json:"pktRx"` |
| 102 | TxPackets float64 `json:"pktTx"` |
| 103 | RxBytes float64 `json:"bytesRx"` |
| 104 | TxBytes float64 `json:"bytesTx"` |
| 105 | RxPacketsDrop float64 `json:"pktRxDrp"` |
| 106 | TxPacketsDrop float64 `json:"pktTxDrp"` |
| 107 | } |
| 108 | |
| 109 | type OnosKPI struct { |
| 110 | DeviceID string `json:"deviceId"` |
| 111 | Ports []*OnosPort `json:"ports"` |
| 112 | } |
Ganesh Bhure | 8d0c994 | 2019-05-24 11:42:09 +0530 | [diff] [blame] | 113 | |
| 114 | type ImporterKPI struct { |
Ganesh Bhure | f15383e | 2019-11-11 15:15:14 +0530 | [diff] [blame^] | 115 | Timestamp int64 |
| 116 | LaserBiasCurrent float64 |
| 117 | Temperature float64 |
| 118 | TxPower float64 |
| 119 | Voltage float64 |
kartikey dubey | 72ef3b8 | 2019-05-27 06:50:04 +0000 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | type OnosAaaKPI struct { |
| 123 | RxAcceptResponses float64 `json:"acceptResponsesRx"` |
| 124 | RxRejectResponses float64 `json:"rejectResponsesRx"` |
| 125 | RxChallengeResponses float64 `json:"challengeResponsesRx"` |
| 126 | TxAccessRequests float64 `json:"accessRequestsTx"` |
| 127 | RxInvalidValidators float64 `json:"invalidValidatorsRx"` |
| 128 | RxUnknownType float64 `json:"unknownTypeRx"` |
| 129 | PendingRequests float64 `json:"pendingRequests"` |
| 130 | RxDroppedResponses float64 `json:"droppedResponsesRx"` |
| 131 | RxMalformedResponses float64 `json:"malformedResponsesRx"` |
| 132 | RxUnknownserver float64 `json:"unknownServerRx"` |
| 133 | RequestRttMillis float64 `json:"requestRttMillis"` |
| 134 | RequestReTx float64 `json:"requestReTx"` |
| 135 | } |
Daniele Moro | be24258 | 2019-10-01 14:02:46 -0700 | [diff] [blame] | 136 | |
| 137 | type OnosPppoeSubscriberKPI struct { |
| 138 | Mac string `json:"mac"` |
| 139 | Ip string `json:"ip"` |
| 140 | SessionId int `json:"sessionId"` |
| 141 | STag int `json:"sTag"` |
| 142 | CTag int `json:"cTag"` |
| 143 | SerialNumber string `json:"serialNumber"` |
| 144 | UpTermBytes float64 `json:"upTermBytes"` |
| 145 | UpTermPackets float64 `json:"upTermPackets"` |
| 146 | UpDropBytes float64 `json:"upDropBytes"` |
| 147 | UpDropPackets float64 `json:"upDropPackets"` |
| 148 | DownRxBytes float64 `json:"downRxBytes"` |
| 149 | DownRxPackets float64 `json:"downRxPackets"` |
| 150 | DownTxBytes float64 `json:"downTxBytes"` |
| 151 | DownTxPackets float64 `json:"downTxPackets"` |
| 152 | UpControlPackets float64 `json:"upControlPackets"` |
| 153 | } |
| 154 | |
| 155 | type OnosPppoeKPI struct { |
| 156 | Subscribers []OnosPppoeSubscriberKPI `json:"subscribers"` |
| 157 | Timestamp string `json:"timestamp"` |
| 158 | } |