Skip to content

Commit

Permalink
Adding parameter for enabling livelog in the chart
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulsadanandan committed Mar 9, 2021
1 parent c7f0396 commit 9cf6561
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions stable/pipelines/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,10 @@ pipelines:
## livelog settings
view:
## if enabled, livelogs will be enabled
enabled: false
enabled: true
refreshRate: 10s
concurrentSessionsPerUser: 10
files: "router-service.log,router-request.log,marshaller.log,extensionSync.log,hookHandler.log,pipelineSync.log,runTrigger.log,templateSync.log,logup.log,api.log,stepTrigger.log,cron.log,www.log"
metrics:
## where metrics logs are written
filePath: /opt/jfrog/pipelines/var/log/api-metrics_events.log
Expand Down Expand Up @@ -843,9 +846,9 @@ pipelines:
view:
enabled: {{ .Values.pipelines.logging.view.enabled }}
refreshRate: 10s
concurrentSessionsPerUser: 10
files: "router-service.log,router-request.log,marshaller.log,extensionSync.log,hookHandler.log,pipelineSync.log,runTrigger.log,templateSync.log,logup.log,api.log,stepTrigger.log,cron.log,www.log"
refreshRate: {{ .Values.pipelines.logging.view.refreshRate }}
concurrentSessionsPerUser: {{ .Values.pipelines.logging.view.concurrentSessionsPerUser }}
files: "{{ .Values.pipelines.logging.view.files }}"
metrics:
filePath: {{ .Values.pipelines.logging.metrics.filePath }}
Expand Down

0 comments on commit 9cf6561

Please sign in to comment.