├── .gitignore ├── README.md ├── nifi-network-nar └── pom.xml ├── nifi-network-processors ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── hortonworks │ │ │ └── processors │ │ │ └── network │ │ │ └── GetTcpDumpAttributes.java │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.apache.nifi.processor.Processor │ └── test │ └── java │ └── com │ └── hortonworks │ └── processors │ └── network │ └── GetTcpDumpAttributesTest.java ├── pom.xml ├── screenshots ├── ambari-vnc-config.png ├── configure-maven-install.png ├── eclipse-import-maven.png ├── eclipse-import.png ├── eclipse-junit-correct.png ├── eclipse-junit-failure.png ├── eclipse-junit-incorrect.png ├── eclipse-junit-success.png ├── eclipse-mvn-runconfig.png ├── eclipse-run-configs.png ├── nifi-import-custom-processor.png ├── nifi-import-el-processor.png ├── nifi-lineage.png ├── nifi-provenance-content.png ├── nifi-provenance-event.png ├── nifi-provenance-viewdetails.png ├── nifi-tcp-processor-properties.png ├── nifi-tcp-processor-relationships.png ├── nifi-tcp-processor.png ├── nifi-tcpdump-customprocessor-flow.png ├── nifi-tcpdump-el-flow.png ├── vnc-connect.png └── vnc-desktop.png └── templates ├── TCPDump_Custom_Processor_Example.xml └── TCPDump_EL_Example.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .class 3 | .swp 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/README.md -------------------------------------------------------------------------------- /nifi-network-nar/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/nifi-network-nar/pom.xml -------------------------------------------------------------------------------- /nifi-network-processors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/nifi-network-processors/pom.xml -------------------------------------------------------------------------------- /nifi-network-processors/src/main/java/com/hortonworks/processors/network/GetTcpDumpAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/nifi-network-processors/src/main/java/com/hortonworks/processors/network/GetTcpDumpAttributes.java -------------------------------------------------------------------------------- /nifi-network-processors/src/main/resources/META-INF/services/org.apache.nifi.processor.Processor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/nifi-network-processors/src/main/resources/META-INF/services/org.apache.nifi.processor.Processor -------------------------------------------------------------------------------- /nifi-network-processors/src/test/java/com/hortonworks/processors/network/GetTcpDumpAttributesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/nifi-network-processors/src/test/java/com/hortonworks/processors/network/GetTcpDumpAttributesTest.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/pom.xml -------------------------------------------------------------------------------- /screenshots/ambari-vnc-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/ambari-vnc-config.png -------------------------------------------------------------------------------- /screenshots/configure-maven-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/configure-maven-install.png -------------------------------------------------------------------------------- /screenshots/eclipse-import-maven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/eclipse-import-maven.png -------------------------------------------------------------------------------- /screenshots/eclipse-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/eclipse-import.png -------------------------------------------------------------------------------- /screenshots/eclipse-junit-correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/eclipse-junit-correct.png -------------------------------------------------------------------------------- /screenshots/eclipse-junit-failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/eclipse-junit-failure.png -------------------------------------------------------------------------------- /screenshots/eclipse-junit-incorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/eclipse-junit-incorrect.png -------------------------------------------------------------------------------- /screenshots/eclipse-junit-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/eclipse-junit-success.png -------------------------------------------------------------------------------- /screenshots/eclipse-mvn-runconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/eclipse-mvn-runconfig.png -------------------------------------------------------------------------------- /screenshots/eclipse-run-configs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/eclipse-run-configs.png -------------------------------------------------------------------------------- /screenshots/nifi-import-custom-processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/nifi-import-custom-processor.png -------------------------------------------------------------------------------- /screenshots/nifi-import-el-processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/nifi-import-el-processor.png -------------------------------------------------------------------------------- /screenshots/nifi-lineage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/nifi-lineage.png -------------------------------------------------------------------------------- /screenshots/nifi-provenance-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/nifi-provenance-content.png -------------------------------------------------------------------------------- /screenshots/nifi-provenance-event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/nifi-provenance-event.png -------------------------------------------------------------------------------- /screenshots/nifi-provenance-viewdetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/nifi-provenance-viewdetails.png -------------------------------------------------------------------------------- /screenshots/nifi-tcp-processor-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/nifi-tcp-processor-properties.png -------------------------------------------------------------------------------- /screenshots/nifi-tcp-processor-relationships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/nifi-tcp-processor-relationships.png -------------------------------------------------------------------------------- /screenshots/nifi-tcp-processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/nifi-tcp-processor.png -------------------------------------------------------------------------------- /screenshots/nifi-tcpdump-customprocessor-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/nifi-tcpdump-customprocessor-flow.png -------------------------------------------------------------------------------- /screenshots/nifi-tcpdump-el-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/nifi-tcpdump-el-flow.png -------------------------------------------------------------------------------- /screenshots/vnc-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/vnc-connect.png -------------------------------------------------------------------------------- /screenshots/vnc-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/screenshots/vnc-desktop.png -------------------------------------------------------------------------------- /templates/TCPDump_Custom_Processor_Example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/templates/TCPDump_Custom_Processor_Example.xml -------------------------------------------------------------------------------- /templates/TCPDump_EL_Example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abajwa-hw/nifi-network-processor/HEAD/templates/TCPDump_EL_Example.xml --------------------------------------------------------------------------------