I would like to create a custom LogBack Appender for InfluxDB. For that, I want to define many series and use the power of logback
<appender name="INFLUXDB" class="org.labaix.logback.InfluxDbAppender">
<series>
<serie>
<id>SensorTemperatureMonthly</id>
<name>machine.%X{machine}.type.%X{type} temperature_${byMonth}</name>
<timeUnit>MILLISECONDS</timeUnit>
</serie>
<serie>
<id>SensorTemperatureDaily</id>
<name>machine.%X{machine}.type.%X{type} temperature_${day}</name>
<timeUnit>MILLISECONDS</timeUnit>
</serie>
</series>
</appender>
Therefore I don't know how to map list of series. Any ideas ? It is not in documentation so I wonder if it possible.
Thanks. Best regards Nicolas