Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame^] | 1 | """ |
| 2 | Copyright 2020 The Magma Authors. |
| 3 | |
| 4 | This source code is licensed under the BSD-style license found in the |
| 5 | LICENSE file in the root directory of this source tree. |
| 6 | |
| 7 | Unless required by applicable law or agreed to in writing, software |
| 8 | distributed under the License is distributed on an "AS IS" BASIS, |
| 9 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 10 | See the License for the specific language governing permissions and |
| 11 | limitations under the License. |
| 12 | """ |
| 13 | |
| 14 | import snowflake |
| 15 | from eventd.eventd_client import log_event |
| 16 | from orc8r.protos.eventd_pb2 import Event |
| 17 | |
| 18 | |
| 19 | def deleted_stored_mconfig(): |
| 20 | log_event( |
| 21 | Event( |
| 22 | stream_name="magmad", |
| 23 | event_type="deleted_stored_mconfig", |
| 24 | tag=snowflake.snowflake(), |
| 25 | value="{}", |
| 26 | ), |
| 27 | ) |
| 28 | |
| 29 | |
| 30 | def updated_stored_mconfig(): |
| 31 | log_event( |
| 32 | Event( |
| 33 | stream_name="magmad", |
| 34 | event_type="updated_stored_mconfig", |
| 35 | tag=snowflake.snowflake(), |
| 36 | value="{}", |
| 37 | ), |
| 38 | ) |