Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
Matteo Scandolo | 7db8537 | 2018-05-22 15:26:55 -0700 | [diff] [blame] | 16 | # Manually send the event |
Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 17 | |
Matteo Scandolo | 7db8537 | 2018-05-22 15:26:55 -0700 | [diff] [blame] | 18 | import json |
| 19 | from kafka import KafkaProducer |
| 20 | |
| 21 | event = json.dumps({ |
| 22 | 'status': 'activated', |
| 23 | 'serial_number': 'BRCM1234', |
| 24 | 'uni_port_id': 16, |
| 25 | 'of_dpid': 'of:109299321' |
| 26 | }) |
| 27 | producer = KafkaProducer(bootstrap_servers="cord-kafka-kafka") |
| 28 | producer.send("onu.events", event) |
| 29 | producer.flush() |