Skip to content

Commit

Permalink
Parse Nokia Performance XML dumps(#1)
Browse files Browse the repository at this point in the history
* Parse Nokia PM XML files

* Process files in directory

* Update README.md
  • Loading branch information
erssebaggala authored Apr 23, 2019
1 parent f8dd64d commit 2fd34b6
Show file tree
Hide file tree
Showing 13 changed files with 379 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
*.class
*.log
.idea
project/target
target
20 changes: 20 additions & 0 deletions .idea/libraries/sbt__org_scala_lang_scala_library_2_12_8_jar.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .idea/libraries/sbt__org_scala_lang_scala_reflect_2_12_8_jar.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .idea/libraries/sbt__org_scalactic_scalactic_2_12_3_0_5_jar.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .idea/libraries/sbt__org_scalatest_scalatest_2_12_3_0_5_jar.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

134 changes: 134 additions & 0 deletions .idea/modules/boda-nokiapmdataparser-build.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/scala_compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,26 @@
# boda-nokiapmdataparser
Parses Nokia PM XML files to csv

# Usage
```
usage: java -jar boda-nokiapmdataparser.jar input_file
```


# Download and installation
Download the release from https://github.com/bodastage/boda-nokiapmdataparser/releases

# Requirements
To run the jar file, you need Java version 1.8 and above.

# Getting help
To report issues with the application or request new features use the issue [tracker](https://github.com/bodastage/boda-nokiacmdataparser/issues). For help and customizations send an email to info@bodastage.com.

# Credits
[Bodastage Solutions](http://www.bodastage.com) - info@bodastage.com

# Contact
For any other concerns apart from issues and feature requests, send an email to info@bodastage.com.

# Licence
This project is licensed under the Apache 2.0 licence. See LICENCE file for details.
11 changes: 11 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name := "boda-nokiapmdataparser"

version := "0.1"

scalaVersion := "2.12.8"

libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.5"

libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % "test"

libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.6"
1 change: 1 addition & 0 deletions project/assembly.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9")
1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version = 1.2.8
Empty file added project/plugins.sbt
Empty file.
Loading

0 comments on commit 2fd34b6

Please sign in to comment.