Skip to content

Commit 453448f

Browse files
authored
add log settings to application.conf (#112)
1 parent edfbab2 commit 453448f

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1111
of Elasticsearch from the Admin menu or by `POST /api/reindex`.
1212

1313
### Added
14+
- Add log settings to application.conf
1415
- Ability to set chunksize for clowder when downloading files. This is changed to 1MB from 8KB. This will result in
1516
faster downloads and less CPU usage at the cost of slightly more memory use.
1617
- Support for parsing of Date and Numeric data in new metadata fields. New search operators <, >, <=, >= have been

conf/application.conf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,20 @@ clowder.s3.secretKey="sgSXcoO3t94EiN3K2bjBM8MaKAo2EnL7sGCJdcsr"
266266
clowder.s3.region="us-east-1"
267267
clowder.s3.depth=3
268268

269+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
270+
# Log Plugin
271+
# leave those variables empty will turn off the log from GUI, namely,
272+
# `View Logs` on the extractors explore page will not be visible.
273+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
274+
# log service endpoint.e.g., http://localhost:9000
275+
clowder.log.serviceEndpoint=""
276+
# login username
277+
clowder.log.username=""
278+
# login password
279+
clowder.log.password=""
280+
# extractor service name prefix, e.g., clowder-dev_
281+
clowder.log.extractorNamePrefix=""
282+
269283
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
270284
# FileSystemDB Plugin
271285
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)