6a54bc439a
With this PR in, you flap BGP and use events_tool to see the published events. With telemetry PR #111 in and corresponding submodule update done in buildimage, one could run gnmi_cli to capture BGP flap events.
20 lines
668 B
Makefile
20 lines
668 B
Makefile
# eventd package
|
|
|
|
SONIC_EVENTD_VERSION = 1.0.0-0
|
|
SONIC_EVENTD_PKG_NAME = eventd
|
|
|
|
SONIC_EVENTD = sonic-$(SONIC_EVENTD_PKG_NAME)_$(SONIC_EVENTD_VERSION)_$(CONFIGURED_ARCH).deb
|
|
$(SONIC_EVENTD)_SRC_PATH = $(SRC_PATH)/sonic-eventd
|
|
$(SONIC_EVENTD)_DEPENDS += $(LIBSWSSCOMMON) $(LIBSWSSCOMMON_DEV)
|
|
|
|
SONIC_DPKG_DEBS += $(SONIC_EVENTD)
|
|
|
|
SONIC_EVENTD_DBG = sonic-$(SONIC_EVENTD_PKG_NAME)-dbgsym_$(SONIC_EVENTD_VERSION)_$(CONFIGURED_ARCH).deb
|
|
$(eval $(call add_derived_package,$(SONIC_EVENTD),$(SONIC_EVENTD_DBG)))
|
|
|
|
# The .c, .cpp, .h & .hpp files under src/{$DBG_SRC_ARCHIVE list}
|
|
# are archived into debug one image to facilitate debugging.
|
|
#
|
|
DBG_SRC_ARCHIVE += sonic-eventd
|
|
|