meta-facebook: Remove Redfish event from rsyslog config
Change-Id: I0c6c8b01168d17364fdd3b2169471190ff46cfc7
Signed-off-by: Delphine CC Chiu <Delphine_CC_Chiu@wiwynn.com>
diff --git a/meta-facebook/recipes-extended/rsyslog/rsyslog/rsyslog.conf b/meta-facebook/recipes-extended/rsyslog/rsyslog/rsyslog.conf
index d59ca08..a365123 100644
--- a/meta-facebook/recipes-extended/rsyslog/rsyslog/rsyslog.conf
+++ b/meta-facebook/recipes-extended/rsyslog/rsyslog/rsyslog.conf
@@ -28,27 +28,11 @@
constant(value="\n")
}
-# Template for Redfish messages
-# "<timestamp> <MessageId>,<MessageArgs>"
-template(name="RedfishTemplate" type="list") {
- property(name="timereported" dateFormat="rfc3339")
- constant(value=" ")
- property(name="$!REDFISH_MESSAGE_ID")
- constant(value=",")
- property(name="$!REDFISH_MESSAGE_ARGS")
- constant(value="\n")
-}
-
# If the journal entry has a IPMI SEL MESSAGE_ID, save as IPMI SEL
if ($!IPMISEL_MESSAGE_ID != "") then {
action(type="omfile" file="/var/log/ipmi_sel" template="IPMISELTemplate")
}
-# If the journal entry has a Redfish MessageId, save as a Redfish event
-if ($!REDFISH_MESSAGE_ID != "") then {
- action(type="omfile" file="/var/log/redfish" template="RedfishTemplate")
-}
-
# At least one of the consoles will require streaming host console.
module(load="imfile")
diff --git a/meta-facebook/recipes-extended/rsyslog/rsyslog/rsyslog.logrotate b/meta-facebook/recipes-extended/rsyslog/rsyslog/rsyslog.logrotate
index b564c38..02f80a9 100644
--- a/meta-facebook/recipes-extended/rsyslog/rsyslog/rsyslog.logrotate
+++ b/meta-facebook/recipes-extended/rsyslog/rsyslog/rsyslog.logrotate
@@ -10,14 +10,3 @@
systemctl restart rsyslog 2> /dev/null || true
endscript
}
-
-# Keep up to four 64k files for redfish (256k total)
-/var/log/redfish
-{
- rotate 3
- size 64k
- missingok
- postrotate
- systemctl restart rsyslog 2> /dev/null || true
- endscript
-}