Documentation Hub
On-Premise
On-Premise
  • On-Premise Installation Manual
  • Keyless Backend Installation
    • Planning for installation
    • Components
  • Infrastructural requirements
  • Monitoring
  • Installation procedure
    • General Configuration
    • Namespace
    • Helm setup
    • Node Persistence
    • Circuit Storage
    • Core Daemon
    • Metrics Collector
    • Operations Service
    • Administrator Dashboard
  • Upgrade procedure
    • Cluster and Runtime
      • Breaking changes
        • Release 1.3.0
    • Databases
  • Checking the installation completed successfully
  • Helm and Components Versions
Powered by GitBook
On this page

Was this helpful?

  1. Installation procedure

Metrics Collector

This service is tasked with reading/writing from/to a database for a BI function. A secret is required to be able to access it.

Database Connection and sizing

configMap.springDatasource.url variable holds the jdbc-formatted string to allow Metrics Collector to connect to its own database. The Instance needs a dedicated schema to be available (default metricscollector):

global:
  namespace: <metrics-collector-namespace>

image:
  tag: 1.5.0

configMap:
  springDatasource: 
    url: jdbc:postgresql://<hostname>:5432/<dbName>

# -- Suggested sizing
resources:
  ## -- Limits
  limits:
    cpu: 1800m
    memory: 2048Mi
  ## -- Requests
  requests:
    cpu: 100m
    memory: 700Mi

Last updated 1 month ago

Was this helpful?