Github user ottobackwards commented on a diff in the pull request:
https://github.com/apache/metron/pull/737#discussion_r138506984
--- Diff:
metron-interface/metron-config/src/app/sensors/sensor-parser-config/sensor-parser-config.component.ts
---
@@ -409,12 +403,17 @@ export class SensorParserConfigComponent implements
OnInit {
this.showFieldSchema = (pane === Pane.FIELDSCHEMA) ? visibilty : false;
this.showRawJson = (pane === Pane.RAWJSON) ? visibilty : false;
this.showThreatTriage = (pane === Pane.THREATTRIAGE) ? visibilty :
false;
+ this.showStormSettings = (pane === Pane.STORMSETTINGS) ? visibilty :
false;
}
onRawJsonChanged(): void {
this.sensorFieldSchema.createFieldSchemaRows();
}
+ onStormSettingsChanged(): void {
--- End diff --
Is this a debug artifact?
---