×
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
- The
externalHostname
parameter is required and must match the DNS name configured for the Web Console. - Your ingress controller may require custom annotations on the ingress (this example is for
ingress-nginx
) - A
bffDaemon.config.defaultSchedule
is required in order to start the application. Generally this is set to the schedule that a majority of your sessions follow. Individual session schedules can be set in the app or via REST API. - Set the Kubernetes container
resources
using the Kubernetes resource sizing section in the Configuration topic. - Set the
storageSize
value by referencing message index volume sizing.
Install using Helm:
helm install -f fixmonitor.yaml obcerv-app-fixmonitor \
itrs/obcerv-app-fixmonitor \
--version 2.5.0 -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"]