We are using the Apache Felix Web Console to display active bundles, configurations and logs. However, it would be very nice to be able to display more than just the default 100 log entries. Is there a way to configure the console in such a way? I didn't find anything in the official documentation, but this is such a basic requirement that I would guess that there is a solution for this somewhere. Am I missing something?
Enable Apache Felix Web Console to show more than 100 logs
92 Views Asked by Florian Baierl At
1
There are 1 best solutions below
Related Questions in OSGI
- Eclipse OSGI unsatisfied constraint
- How to run Master Server from Equinox OSGi console?
- How to start a clean publishing instance and sync everything including OSGi bundles?
- @Transactional with xml-defined bean not working. (OSGi)
- How can single instance of an OSGI factory configuration be read from Java in CQ
- OSGi Component's default configuration value contains escaped backslash
- Third party OSGi library dependency conflict
- Apache sling : org.apache.sling.api.resource.PersistenceException: Unable to create node at /var/discovery))
- OSGI compatible artifact for jaxb2-basics?
- Modules Integration and Security in spring
- How to set a system property for the log4j2 JUL adapter in an OSGi environment
- Avoid copying some packages to OSGi Bundle
- AEM as IDP( Identity Provider) for CRM using SAML
- OSGI+CDI: strange behaviour with system printers detecting
- Getting ClassNotFound for PaxExam Option class when running test
Related Questions in APACHE-FELIX
- How can single instance of an OSGI factory configuration be read from Java in CQ
- What is the difference between Apache Felix and Apache Tomcat
- Avoid copying some packages to OSGi Bundle
- How can I reference all components that implement a given interface?
- Build OSGI application with Maven
- How to store artifacts at targets using Apache ACE?
- How To Migrate From maven-bundle-plugin 2.5.3 to 3.0.0
- Dependency Manager commands not working after upgrading Servicemix from 5.4.0 to 6.1.2
- Apache Felix with Pax Web War Extender error starting bundle
- Is it possible to use wildcards in org.osgi.framework.system.packages.extra in Felix?
- Pax-Web Jetty-Bundle publishing Jersey App
- change made via felix console takes more precedence over apps and libs why?
- Interact with bundle in Apache Felix
- Getting a specific implementation from Felix
- Apache CXF/JAX-RS, Felix and Jetty
Related Questions in FELIX-DEPENDENCY-MANAGER
- OSGI Service visibility/DS annotation component injection
- Apache Felix stop method is not called when using dmlambda
- How to force (to 1.2.0) OSGi XMLNS for OSGi R7 Metatype annotations
- Accessing BundleContext with Felix dependency manager
- OSGI un used Import packages make as optional
- Why am I getting "Activator not found" when starting my service?
- Amdatu JPA (bndtools, felix DM) not resolving DataSource service
- Enable Apache Felix Web Console to show more than 100 logs
- How to bind dynamic reference based on configuration?
- Stopping an OSGi Bundle created using Felix Dependency Manager at startup time
- OSGi injection of dependencymanager
- Jitsi include external jar for customization
- OSGi Felix Dependency Manager Annotations and abstract classes
- Felix Dependecy-Manager not creating GoGo-Command
- How to get Dependency chain in Apache Karaf (Felix framework)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This cap is actually not in the web console but in the Log Service itself, which is limited to 100 entries by default. See: http://felix.apache.org/documentation/subprojects/apache-felix-log.html
To increase this to, say, 200 you can set the following system property:
If you set maxSize to -1 then you will get an unlimited size log, but beware that it will then grow until you run out of memory.