slmzig

Results 6 issues of slmzig

I have a table ``` case class JsonBean2(id: Long, json: JsValue) class JsonTestTable(tag: Tag) extends Table[JsonBean2](tag, "JsonTest2") { def id = column[Long]("id", O.AutoInc, O.PrimaryKey) def json = column[JsValue]("json", O.Default(Json.parse(""" {"a":"v1","b":2}...

*Issue #, if available:* #216 *Description of changes:* now via agent.conf you can add static fields to you event for example: ``` "dataProcessingOptions": [ { "optionName": "CSVTOJSON", "staticFields": { "host":...

Business problem. In my case we have thousand of servers with files. In source files we have not got information about server name and we can not add it. And...

*Issue #, if available:* *Description of changes:* added feature to convert time from one format to another. example of settings in agent.json ``` "dataProcessingOptions": [ { "optionName": "CSVTOJSON", "timeConverter": {...

*Issue #, if available:* #214 *Description of changes:* now in agent.json in `dataProcessingOptions` section we can add ignored fields ``` "dataProcessingOptions": [ { "optionName": "CSVTOJSON", "ignoredFieldNames": [ "column1", "column2", "column3"...

Business problem. In my case we have source csv files with many fields. And these files are read by many apps, each apps require different columns. In kinesis we do...