Install

Prerequisites Copied

The following Obcerv apps must be installed before installing the FIX Monitor app:

FIX message data source Copied

Before installing the app, you must determine how your FIX message log data will be sent to Obcerv. See Log Ingestion for details.

Install Copied

To install the FIX Monitor app, you must first create a Helm values file with the appropriate configuration parameters for your environment.

See Configuration for information on the configuration parameters that can be set.

Create a file, such as fixmonitor.yaml with content similar to the following:

externalHostname: "www.obcerv.local"
ingress:
  annotations:
    kubernetes.io/ingress.class: "nginx"
    nginx.org/mergeable-ingress-type: "minion"
bffDaemon:
  config:
    # Override to match your FIX enviornment
    defaultSchedule:
      timezone: America/New_York
      logonTime:
        hour: 8
      logoutTime:
        hour: 15
        minute: 30
      endOfDayTime:
        hour: 16
   
  # Override based on your FIX session count  
  resources:
    requests:
      memory: "1Gi"
      cpu: "500m"
    limits:
      memory: "2Gi"
      cpu: "1000m"
        
  pvc: 
    index:
      # Override based on sizing estimates
      storageSize: 20Gi      

Install using Helm:

helm install -f fixmonitor.yaml obcerv-app-fixmonitor \
itrs/obcerv-app-fixmonitor \
--version 2.3.1 -n <namespace> --wait

Uninstall Copied

helm uninstall obcerv-app-fixmonitor -n <namespace>

Upgrade Copied

To upgrade the app, first uninstall and then install it again using the new version.

["Obcerv"] ["Obcerv > FIX Monitor"] ["Technical Reference"]

Was this topic helpful?