Added type to diagnostic json

This commit is contained in:
Eric Fontana
2014-09-29 11:14:11 -04:00
parent 3762d20949
commit e02624a8b0
5 changed files with 5 additions and 0 deletions

View File

@@ -40,6 +40,7 @@ namespace TimberWinR.Parser
new JProperty("date",
new JObject(
new JProperty("condition", Condition),
new JProperty("type", Type),
new JProperty("addfields", AddField)
)));
return json;

View File

@@ -24,6 +24,7 @@ namespace TimberWinR.Parser
new JProperty("geoip",
new JObject(
new JProperty("source", Source),
new JProperty("type", Type),
new JProperty("condition", Condition),
new JProperty("target", Target)
)));

View File

@@ -42,6 +42,7 @@ namespace TimberWinR.Parser
new JProperty("condition", Condition),
new JProperty("addfields", AddField),
new JProperty("addtags", AddTag),
new JProperty("type", Type),
new JProperty("removefields", RemoveField),
new JProperty("removetag", RemoveTag)
)));

View File

@@ -25,6 +25,7 @@ namespace TimberWinR.Parser
new JProperty("source", Source),
new JProperty("promote", Source),
new JProperty("target", Target),
new JProperty("type", Type),
new JProperty("addfields", AddField),
new JProperty("addtags", AddTag),
new JProperty("removefields", RemoveField),

View File

@@ -18,6 +18,7 @@ namespace TimberWinR.Parser
new JObject(
new JProperty("condition", Condition),
new JProperty("splits", Split),
new JProperty("type", Type),
new JProperty("rename", Rename),
new JProperty("replace", Replace)
)));