@@ -177,13 +177,13 @@ def _parse(self, msg_dict):
177177 ret [key ] = result
178178 return ret
179179 if error_present is True :
180- log .info (
180+ log .debug (
181181 "Configured regex did not match for os: %s tag %s" ,
182182 self ._name ,
183183 msg_dict .get ("tag" , "" ),
184184 )
185185 else :
186- log .info (
186+ log .debug (
187187 "Syslog message not configured for os: %s tag %s" ,
188188 self ._name ,
189189 msg_dict .get ("tag" , "" ),
@@ -248,7 +248,7 @@ def start(self):
248248 "Counter of failed OpenConfig object generations" ,
249249 ["device_os" ],
250250 )
251- if self .opts .get ("metrics_include_attributes" , True ):
251+ if self .opts .get ("metrics_include_attributes" , False ):
252252 napalm_logs_device_published_messages_attrs = Counter (
253253 "napalm_logs_device_published_messages_attrs" ,
254254 "Counter of published messages, with more granular selection" ,
@@ -355,7 +355,7 @@ def start(self):
355355 self .pub .send (umsgpack .packb (to_publish ))
356356 # self._publish(to_publish)
357357 napalm_logs_device_published_messages .labels (device_os = self ._name ).inc ()
358- if self .opts .get ("metrics_include_attributes" , True ):
358+ if self .opts .get ("metrics_include_attributes" , False ):
359359 napalm_logs_device_published_messages_attrs .labels (
360360 device_os = self ._name ,
361361 error = to_publish ["error" ],
0 commit comments