Skip to content

bad regex for iosxr basic parsing #364

Open
@Tristou27

Description

@Tristou27

For the IOSXR regex, the value of the 'timezone' is matched against 3 characters only. This does not take into account 'CEST' timezone for instance. Then the syslog is not matched at all and not parsed.

A possible modification could be in : napalm_logs/config/iosxr/init.yml

 timeZone: \s?(\w\w\w)?

... replaced by ...

 timeZone: \s?(\w{0,5}) # 0 to 5 to include: all possible timezones or no timezone

Would it be possible to change that?

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions