etl-parser icon indicating copy to clipboard operation
etl-parser copied to clipboard

TlMetaDataNotFound

Open nils-weidinger opened this issue 1 year ago • 1 comments

Not sure if this is a duplicate of #5

  File "/home/USER/.local/bin/etl2xml", line 194, in on_event_record
    data.append(log_tracelogging(event.parse_tracelogging()))
  File "/home/USER/.local/lib/python3.10/site-packages/etl/event.py", line 129, in parse_tracelogging
    return build_tracelogging(self.source)
  File "/home/USER/.local/lib/python3.10/site-packages/etl/parsers/tracelogging.py", line 79, in build_tracelogging
    raise TlMetaDataNotFound()
etl.error.TlMetaDataNotFound: Meta data not found for trace logging parser

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/USER/.local/lib/python3.10/site-packages/construct/lib/containers.py", line 98, in __getattr__
    return self[name]
KeyError: 'data1'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/USER/.local/bin/etl2xml", line 252, in <module>
    main(**vars(args))
  File "/home/USER/.local/bin/etl2xml", line 231, in main
    etl_reader.parse(logger)
  File "/home/USER/.local/lib/python3.10/site-packages/etl/etl.py", line 141, in parse
    actions[event.type](event.value)
  File "/home/USER/.local/lib/python3.10/site-packages/etl/etl.py", line 133, in <lambda>
    "EventRecord": lambda obj: observer.on_event_record(Event(obj)),
  File "/home/USER/.local/bin/etl2xml", line 198, in on_event_record
    etw = event.parse_etw()
  File "/home/USER/.local/lib/python3.10/site-packages/etl/event.py", line 118, in parse_etw
    guid = EtwGuid(self.source.event_header.provider_id.data1, self.source.event_header.provider_id.data2,
  File "/home/USER/.local/lib/python3.10/site-packages/construct/lib/containers.py", line 100, in __getattr__
    raise AttributeError(name)
AttributeError: data1

Somebody send me .etl files to analyse a problem with his mail client. I'm trying to read them on my ubuntu workstation and can't convert either of them to xml.

nils-weidinger avatar Dec 14 '23 09:12 nils-weidinger