Skip to content

Commit 610036c

Browse files
committed
first release
1 parent e137450 commit 610036c

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ install:
1313
script: pytest
1414

1515
after_success:
16-
- coverage run -m pytest
17-
- coveralls
16+
- coverage run -m pytest .
17+
- coveralls --source= procmon_parser/
1818

1919
notifications:
2020
email:

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Parsing Procmon files with Python
22

3+
[![Build Status](https://travis-ci.com/eronnen/procmon-parser.svg?branch=master)](https://travis-ci.com/eronnen/procmon-parser)
4+
35
Procmon (https://docs.microsoft.com/en-us/sysinternals/downloads/procmon) is a very powerful monitoring tool for Windows,
46
capable of capturing file system, registry, process/thread and network activity.
57

@@ -76,7 +78,7 @@ and a value. The known record options are:
7678
* `FilterRules` - a list of filter rules that can be used to show only interesting events.
7779
* `HighlightRules`
7880

79-
For the raw binary format of **PMC** files you can refer to [configuration_format.py](procmon_parser/configuration_format.py).
81+
For the raw binary format of PMC files you can refer to [configuration_format.py](procmon_parser/configuration_format.py).
8082

8183
## PML (Process Monitor Log) Parser
8284

@@ -97,11 +99,11 @@ Event(dwm.exe, 932, 1568, "Registry", "RegQueryValue", 7400, 2020-07-12T01:18:10
9799

98100
### File Format
99101

100-
For the raw binary format of **PML** files you can refer to [logs_format.py](procmon_parser/logs_format.py) and [logs_details_format.py](procmon_parser/logs_details_format.py).
102+
For the raw binary format of PML files you can refer to [logs_format.py](procmon_parser/logs_format.py) and [logs_details_format.py](procmon_parser/logs_details_format.py).
101103

102104
### Unsupported features
103105

104-
The **PML** format is very complex so there are some features that are not supported yet:
106+
The PML format is very complex so there are some features that are not supported yet:
105107
- [ ] Reading logs from multiple related PML files.
106108
- [ ] Detail column is not fully supported for all operation types.
107109

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="procmon-parser",
8-
version="0.0.1",
8+
version="0.1.0",
99
author="Ely Ronnen",
1010
author_email="[email protected]",
1111
description="Parser to Procmon configuration and log files formats",

0 commit comments

Comments
 (0)