In the influxdb persistence file a data point is stored at MilliSeconds precision. See InfluxDBPersistenceService.java Line 244
influxDB.write(dbName, TimeUnit.MILLISECONDS, serie);
This should be configurable to seconds level. Seconds compared to milliseconds enable better compression with the build in compression functions and thus saves space. Resolution to ms is hardly needed.