Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brosenberger/log2solr
https://github.com/brosenberger/log2solr
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/brosenberger/log2solr
- Owner: brosenberger
- License: gpl-2.0
- Created: 2015-03-10T07:11:09.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-12T15:11:48.000Z (almost 10 years ago)
- Last Synced: 2023-08-04T06:25:55.635Z (over 1 year ago)
- Language: Java
- Size: 820 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# slf4j-solrappender
The slf4j-solrappender should be a small addition to be able to send log events from an application to an external search server.
To run the test, please download a solr 4.9 instance (http://lucene.apache.org/solr/downloads.html) and run it locally. The needed schema file can be found in the test-resources of this project
2015-03-12
* [R1] add interface for solr document enricher
* initial version of a logback appender
-> logs some basic information (message, formatted message, level and time)# Upcomming Requirements
*R1: create possibility to enable custom SolrInputDocument filler from event (or additional data)
*R2: create seperate modules for core, logback dependent things (to enable different appender implementations with base code)
*R3: create appender for log4j
*R4: add fallback logger if anything happens with solr (currently on sysout is done which is not preferrable)
*R5: add solr cloud support
# Issues*I1 blocking log writing if an exception happens on the solr server (e.g. through wrong type of data in the stored field)