Re: Decanter: MQTT collector?

2016-10-13 Thread Scott Lewis
Hi Jean-Baptiste, On 10/10/2016 12:10 PM, Jean-Baptiste Onofré wrote: Hi Scott, MQTT appender uses Eclipse Paho as MQTT client. Is there a karaf feature for Paho MQTT client? The MQTT collector is plan for Decanter 1.3.0. Great thanks. I see Decanter 1.3.0 is planned for 10/13. Scott

Re: Decanter: MQTT collector?

2016-10-13 Thread Jean-Baptiste Onofré
Paho is embedded in the collector/appender. Regards JB On 10/13/2016 11:48 PM, Scott Lewis wrote: Hi Jean-Baptiste, On 10/10/2016 12:10 PM, Jean-Baptiste Onofré wrote: Hi Scott, MQTT appender uses Eclipse Paho as MQTT client. Is there a karaf feature for Paho MQTT client? The MQTT

apache flink

2016-10-13 Thread ms
I wanted to inform that I have created an apache flink feature. more here http://web.simpl4.org/repo/webdemo/start.html#blog_bigdata_part1karaf Best regards Manfred Sattler -- View this message in context: http://karaf.922171.n3.nabble.com/apache-flink-tp4048359.html Sent from the Karaf -

Re: Log commands

2016-10-13 Thread Jean-Baptiste Onofré
Do you have message on this logger ? log:tail will display only if you have messages/event on it. More over, your config is not correct IMHO. You should have: log4j.logger.es.yaroki=INFO for instance. Regards JB On 10/13/2016 08:12 AM, conejo wrote: Hi JB, thanx but: karaf@root>log:list

Re: Log commands

2016-10-13 Thread Jean-Baptiste Onofré
It's normal, the log:* commands uses the OSGi appender, not the file appender. So, basically, your config should looks like: log4j.rootLogger=INFO, out, osgi:* log4j.throwableRenderer=org.apache.log4j.OsgiThrowableRenderer log4j.logger.my.stuff=DEBUG, myappender, osgi:* Regards JB On

Re: Log commands

2016-10-13 Thread conejo
Now it works! Many thanks! -- View this message in context: http://karaf.922171.n3.nabble.com/Log-commands-tp4048333p4048344.html Sent from the Karaf - User mailing list archive at Nabble.com.

Re: Log commands

2016-10-13 Thread conejo
I have entries in the log file. I've configured my log: # YAROKI file appender log4j.appender.yaroki=org.apache.log4j.RollingFileAppender log4j.appender.yaroki.threshold=DEBUG log4j.appender.yaroki.layout=org.apache.log4j.PatternLayout log4j.appender.yaroki.layout.ConversionPattern=%d{ISO8601} |

Re: A way to extend/parent "assembly-property-edits.xml"

2016-10-13 Thread Jens Reimann
Thanks for that explanation! I thought that you meant "Maven profiles". But there are "Karaf profiles" as well ;-) I will definitely have a look at that! On Wed, Oct 12, 2016 at 8:06 PM, Guillaume Nodet wrote: > > Basically, a profile is a list of files. Files with a cfg

Re: Feature resolution for service capabilities of services with filters

2016-10-13 Thread Sergiy Shyrkov
Thank you for the answer Guillaume and David! We were using maven-bundle-plugin (2.5.x) for building the bundles. Switching to the latest version of the plugin (3.2.0) changes the things: the Provide-Capability/Require-Capability headers no longer contain service properties for filters, but

Re: Log commands

2016-10-13 Thread Jean-Baptiste Onofré
Hi, you can provide the logger as argument: log:tail org.apache.karaf.features.core for instance (or any logger). Same for log:display. Regards JB On 10/13/2016 07:59 AM, conejo wrote: Hi. The command "log:tail" only show the rootLogger messages. Is there any way to show messages of others

Re: Log commands

2016-10-13 Thread conejo
Hi JB, thanx but: karaf@root>log:list ALL Logger | Level --- ROOT| INFO es.yaroki | ALL org.apache.karaf.jaas.modules.audit | INFO But when i write "log:tail es.yaroki" no output