Kodjin Configuration
How to enable history functionality
History should be configured in common configuration file for all services - globals.yaml.gotmpl
. The configuration file's path is - etc/kodjin/{environment}/globals.yaml.gotmpl
History will only start to record events after you enable it. It will not get filled with existing data. For this reason it is highly recommended to enable history before cluster creation
- Check Zookeeper worker group present, if not add it to the file:
etc/cluster/worker-groups.<environment>.auto.tfvars
worker_groups = [
# . . .
{
name = "zookeeper"
instance_type = "t3.small"
additional_userdata = "t3.small"
asg_desired_capacity = 3
asg_max_size = 3
asg_min_size = 3
ami_id = "ami-0dd8af8522cf16846"
kubelet_extra_args = "--node-labels=db=zookeeper --register-with-taints=key=zookeeper:NoSchedule"
root_volume_size = "50"
root_volume_type = "gp3"
enable_monitoring = false
},
]
AMI ID ami-0dd8af8522cf16846 is different per each region.
- Enable
clickhouse
andzookeeper
releases in deps:
- Check whether the secrets exist and have the following format:
etc/deps/<environment>/secrets/clickhouse-operator.yaml
Ensure username and password are under secret
, not operator
.
- Enable the
fhir-server-clickhouse-migrations
release in kodjin:
- Enable the
fhir-server-kafka-config-secrets-sync
release in kodjin:
This release should be enabled by default, anyway you should check it.
- Set
HISTORY_ENABLED
totrue
in kodjin globals:
If HISTORY_ENABLED was set to true after cluster creation (which is not recommended) all the relevant releases should be deployed using rmk tool
rmk release sync
How to switch on Multi-tenancy on Kodjin cluster
Headers and access token claims should be configured in Kodjin's infrastructure configuration file.
The configuration file indicates whether multi-tenancy is enabled and also provides information about URLs excluded from the multi-tenancy logic. The configuration file's path is - etc/kodjin/<environment>/values/fhir-config/multitenancy.json
Example of the file
Add to required_metadata
one or two headers, based on your requirements. Here we used two as an example only
This configuration file should be delivered to Kodjin FHIR server services that support the multi-tenancy option. Kodjin's infrastructure configuration is pre-configured to deliver this configuration to services using a common configuration for all services - globals.yaml.gotmpl
Configuring bulk-export operation
Duration of Availability for Downloading Exported FHIR Resources
To change the default value for time while exported resources are accessible for downloading (time-to-live or TTL) by bulk-export operation the Kodjin's cluster administrator should override the default value. The configuration file's path is: etc/kodjin/{environment}/values/fhir-server-search-export.yaml.gotmpl
.
Then add or modify value: OBJECT_TTL: 10
If OBJECTS_TTL
value was changed after the cluster has been created all the fhir-server-search-export
release should be deployed using rmk tool
rmk release sync -l app=fhir-server-search-export
How to configure the export for indirect referenced resources for Patient and Group level export
To define how resources that are not directly referenced by the Patient should be processed for export, navigate to the configuration file at etc/kodjin/<environment>/values/fhir-config/export-additional-included-resources.json
.
This configuration section specifies the FHIR resources that should be analyzed during the export process. There are two options for each resource:
allowedForGroupExport
: Determines if the resource is allowed for Group-level export. The default value is true.allowedForPatientExport
: Determines if the resource is allowed for Patient-level export. The default value is false.
Additionally, it is required to specify a FHIRPath expression for the attribute that contains a reference to the resource without a direct Patient reference and the resource type.
For more information about the Bulk Export operation, see the Bulk Data Export page.
Example of the export-additional-included-resources.json
file
{
"MedicationRequest": [
{
"allowedForGroupExport": true,
"allowedForPatientExport": false,
"path": "$.medicationReference.reference",
"resourceTypes": [
"Medication"
]
}
],
"Encounter": [
{
"allowedForGroupExport": true,
"allowedForPatientExport": false,
"path": "$.location[*].location.reference",
"resourceTypes": [
"Location"
]
},
{
"allowedForGroupExport": true,
"allowedForPatientExport": false,
"path": "$.serviceProvider.reference",
"resourceTypes": [
"Organization"
]
}
],
"CareTeam": [
{
"allowedForGroupExport": true,
"allowedForPatientExport": false,
"path": "$.participant[*].member.reference",
"resourceTypes": [
"Practitioner"
]
}
]
}
How to enable/disable opentelemetry tracing
You can enable or disable tracing in your Kodjin environment. If you enable tracing it will use elastic search storage and will affect Kodjin performance.
Enable opentelemetry tracing
- Enable
jaeger
releases in deps:
etc/deps/<environment>/releases.yaml
:
-
Remove
traefik.yaml
config file frometc/deps/<environment>/values
directory. -
Set
OTEL_SDK_DISABLED
tofalse
in kodjin globals:
etc/kodjin/<environment>/globals.yaml.gotmpl
:
Disable opentelemetry tracing
- Disable
jaeger
releases in deps:
etc/deps/<environment>/releases.yaml
:
or remove lines from etc/deps/<environment>/releases.yaml
:
- Add new
traefik.yaml
config file toetc/deps/<environment>/values
directory with content from corresponded config file from cache -.helmfile/cache/deps.bootstrap.infra-v<version>/etc/deps/<environment>/values/traefik.yaml
. You need onlyadditionalArguments
key from source file. For example:
additionalArguments:
- --entryPoints.web.forwardedHeaders.insecure=true
- --entryPoints.websecure.forwardedHeaders.insecure=true
- --tracing=true
- --tracing.serviceName=traefik-edge
- --tracing.jaeger=true
- --tracing.jaeger.disableAttemptReconnecting=false
- --tracing.jaeger.samplingServerURL=http://jaeger-ingress-agent.observability:5778/sampling
- --tracing.jaeger.collector.endpoint=http://jaeger-collector.observability:14268/api/traces?format=jaeger.thrift
Then change tracing
and tracing.jaeger
arguments to false
.
Using the example above you will get content like this:
additionalArguments:
- --entryPoints.web.forwardedHeaders.insecure=true
- --entryPoints.websecure.forwardedHeaders.insecure=true
- --tracing=false
- --tracing.serviceName=traefik-edge
- --tracing.jaeger=false
- --tracing.jaeger.disableAttemptReconnecting=false
- --tracing.jaeger.samplingServerURL=http://jaeger-ingress-agent.observability:5778/sampling
- --tracing.jaeger.collector.endpoint=http://jaeger-collector.observability:14268/api/traces?format=jaeger.thrift
Save file.
- Set
OTEL_SDK_DISABLED
totrue
in kodjin globals:
etc/kodjin/<environment>/globals.yaml.gotmpl
:
Note: Keep in mind that disabling tracing does not automatically remove traces from the storage. To delete information about tracks, you need to delete the corresponding indexes in elasticsearch by searching for them using the prefix “observability-jaeger-*”.
Configuring CapabilityStatement template
The Kodjin FHIR server supports configuring common static parameters, such as contacts, description, publisher, etc., for the metadata endpoint (e.g., https://demo.kodjin.com/fhir/metadata).
Follow CapabilityStatement configuration for more details.
To define this configuration, use the configuration file located at etc/kodjin/{environment}/values/fhir-config/capability-statement-template.json
Example of capability-statement-template.json
{
"resourceType": "CapabilityStatement",
"publisher": "EdenLab",
"fhirVersion": "4.0.1",
"name": "Kodjin FHIR server 4.0.1 CapabilityStatement",
"contact": [
{
"name": "EdenLab",
"telecom": [
{
"system": "email",
"value": "welcome@edenlab.io",
"use": "work"
}
]
}
],
"description": "This is the FHIR capability statement",
"date": "_",
"experimental": true,
"software": {
"name": "Kodjin FHIR Server"
},
"implementation": {
"description": "Kodjin FHIR Server"
},
"format": ["application/fhir+xml", "application/fhir+json"],
"patchFormat": ["application/fhir+json", "application/fhir+xml"],
"id": "_",
"kind": "instance",
"status": "active",
"url": "metadata",
"version": "1.0.0",
"rest": []
}
How to enable or disable Audit logging
The auditing process implemented in Kodjin FHIR Server is in accordance with Audit event resource definition and IHE profile for Basic Audit Log Patterns. For further implementation note, please refer to Audit Logging page.
To enable and configure auditing, navigate to the Audit event configuration at etc/kodjin/<environment>/values/fhir-config/audit_log.json
By default auditing is switched off.
The rule to include or exclude specific interactions and resources from audit events is defined by specifying criteria within the audit configuration. This configuration determines which events are recorded and which are omitted, allowing for tailored auditing based on specific interactions (such as read, write, delete) and resources (such as Patient, Observation). By configuring these rules, organizations can ensure that their auditing focuses on significant events, thereby optimizing performance and compliance with regulatory requirements.
Options:
enabled
:true
orfalse
- indicates whether auditing is enabled or disabled. Ifenabled
is set totrue
, every request will be audited based on thefilter_mode
option.-
filter_mode
:exclude
orinclude
- defines the rule for including or excluding specific interactions and resources from audit events (see parameters below). When set toexclude
, everything will be audited except for the exclusions. Conversely, when set toinclude
, everything will be omitted from auditing except for the inclusions defined in the interaction. -
interaction
: is an array of possible actions: read, vread, update, patch, delete, history, create, search from set of action, there is an array of FHIR resources. Wildcards are supported, meaningAll actions
orAll resources
Example of the audit_log.json file
In this file, auditing is enabled
with filter_mode
set to exclude
. This means that all interactions will be audited, except those defined in the interactions section. Read interactions for StructureDefinition will be excluded from the audit. Additionally, updates to any resource (PUT) will also be excluded, as well as any actions involving these resources: ValueSet
, CodeSystem
, ConceptMap
, and SearchParameter
.
In this file, auditing is enabled with filter_mode set to include. This means that all interactions will be omitted from auditing, except those defined in the interactions section. All interactions involving the Patient will be included in the audit. Additionally, read interactions with Observation and MedicationRequest resources will also be audited.