See the supported connectors for Application Integration.
HL7 trigger
The HL7 trigger is a Connector Event trigger that lets you invoke an integration based on the HL7 events that you've subscribed to in your HL7 connection.
Before you begin
- Create a Pub/Sub topic.
- Create an HL7 store.
To receive HL7 messages over TCP/IP connections using the minimal lower layer protocol (MLLP), you must configure an MLLP adapter. You don't need to configure an MLLP adapter if you receive HL7 messages over REST (Google Cloud HealthCare API). To run the adapter, do the following:
- Set the project and region in the gcloud CLI:
gcloud config set project PROJECT_ID \ gcloud config set compute/region LOCATION
For more information, see Set properties.
- Create a VM instance.
gcloud compute instances create VM_NAME \ --service-account=SERVICE_ACCOUNT_EMAIL \ --scopes=https://www.googleapis.com/auth/cloud-platform
Replace the following:
SERVICE_ACCOUNT_EMAIL
: the email address for the service account that you created.VM_NAME
: The name of the VM instance.
- Add a tag to the newly created VM instance.
gcloud compute instances add-tags INSTANCE_NAME \ --zone ZONE \ --tags TAGS
Replace the following:
INSTANCE_NAME
: The name of the VM instance.ZONE
: The zone of the VM instance.TAGS
: The tags to add to the VM instance.
- Add a firewall rule to expose the port on which the MLLP adapter is running.
gcloud compute firewall-rules create FIREWALL_RULE \ --action=ALLOW \ --direction=INGRESS \ --priority=1000 \ --rules=tcp:PORT\ --network=default \ --source-ranges=0.0.0.0/0
Replace the following:
FIREWALL_RULE
: The name of the firewall rule.PORT
: The port on which the MLLP adapter is running.
- SSH into the VM instance.
gcloud compute ssh VM_NAME --zone ZONE
Replace the following:
VM_NAME
: The name of the VM instance.ZONE
: The zone of the VM instance.
- Install the docker in the VM using the following command:
sudo apt-get update && sudo apt-get install -y docker.io
- Start the docker service by running the following commands:
sudo systemctl start docker sudo systemctl enable docker
- Pull the docker image in the container registry.
docker pull gcr.io/cloud-healthcare-containers/mllp-adapter:latest
- Run MLLP adapter on the VM instance.
docker run \ --network=host \ -v ~/.config:/root/.config \ gcr.io/cloud-healthcare-containers/mllp-adapter \ /usr/mllp_adapter/mllp_adapter \ --hl7_v2_project_id=PROJECT_ID \ --hl7_v2_location_id=LOCATION \ --hl7_v2_dataset_id=DATASET_ID \ --hl7_v2_store_id=HL7V2_STORE_ID \ --export_stats=false \ --receiver_ip=0.0.0.0 \ --port=PORT \ --api_addr_prefix=https://healthcare.googleapis.com:443/v1 \ --logtostderr
Replace the following:
PROJECT_ID
: The project ID of the Google Cloud project.LOCATION
: The location of the HL7 store.DATASET_ID
: The ID of the dataset that holds the HL7 store.HL7V2_STORE_ID
: The ID of the HL7 store.PORT
: The port on which the MLLP adapter is running.
- Run the following command to ensure that the container is running:
sudo docker ps
- To check the container logs, run the following command:
sudo docker logs CONTAINER_ID
- Set the project and region in the gcloud CLI:
Required roles
If you plan to create or configure a new connection for the HL7 trigger, make sure that you have the following IAM role on the project:
- Connector Admin (
roles/connectors.admin
)
For information about granting roles, see Manage access.
Grant the following IAM roles or Permissions to the service account that you want to use for the HL7 trigger:
- Application Integration Invoker (
roles/integrations.integrationInvoker
) - Healthcare HL7v2 Message Consumer (
roles/healthcare.hl7V2Consumer
) - Healthcare HL7v2 Message Ingest (
roles/healthcare.hl7V2Ingest
) - Permission (
healthcare.hl7V2Stores.update
) - Pub/Sub Editor (
roles/pubsub.editor
)
For information about granting roles to a service account, see Manage access to service accounts.
Add the HL7 trigger
To add a HL7 trigger to your integration, perform the following steps:
- In the Google Cloud console, go to the Application Integration page.
- In the navigation menu, click Integrations
The Integrations List page appears listing all the integrations available in the Google Cloud project.
- Select an existing integration or click Create integration to create a new one.
If you are creating a new integration:
- Enter a name and description in the Create Integration pane.
- Select a region for the integration.
- Select a service account for the integration. You can change or update the service account details of an integration any time from the Integration summary pane in the integration toolbar.
- Click Create.
This opens the integration in the integration editor.
- In the integration editor navigation bar, click Triggers to view the list of available triggers.
- Click and place the HL7 trigger element in the integration editor.
To configure the HL7 trigger, you can either use an existing HL7 connection with REST (Cloud HealthCare API) as the destination protocol available in Integration Connectors, or create a new HL7 REST(Google Cloud HealthCare API) connection using the inline connection creation option.
Configure HL7 trigger using an existing connection
You can configure the HL7 trigger using an existing HL7 connection with REST (Cloud HealthCare API) as the destination protocol in Integration Connectors. The HL7 trigger is an Connector Event trigger, therefore you can only use a HL7 REST(Google Cloud HealthCare API) connection with event subscription enabled to configure the trigger.
For information about how to configure a HL7 trigger using a new HL7 REST(Google Cloud HealthCare API) connection, see Configure HL7 trigger using a new HL7 REST(Google Cloud HealthCare API) connection.
To configure a HL7 trigger using an existing HL7 connection with REST (Cloud HealthCare API) as the destination protocol, perform the following steps:
- Click the HL7 trigger element in the integration editor to open the trigger configuration pane.
- Click Configure trigger.
- Provide the following configuration details in the Connector Event Trigger Editor page:
- Region: Select the region of your HL7 REST(Google Cloud HealthCare API) connection.
- Connection: Select the HL7 REST(Google Cloud HealthCare API) connection that you want to use.
Application Integration only displays those HL7 REST(Google Cloud HealthCare API) connections that are active and have an event subscription enabled.
- Select HL7 Message Content Type: text or bytes from the dropdown menu.
- Enter the HL7 message type. For example,
ADT_A01
orADT_02
.
- Click Done to complete the trigger configuration and close the page.
Configure HL7 trigger using a new connection
To configure the HL7 trigger using a new HL7 REST(Google Cloud HealthCare API) connection, perform the following steps:
- Click the HL7 trigger element in the integration editor to open the trigger configuration pane.
- Click Configure trigger.
- Select the Region for the HL7 trigger.
- Click Connection and select the Create Connection option from the drop-down menu.
- Complete the following steps in the Create Connection pane:
- In the Connection Details step, provide details about the new HL7 connection:
- Connector version: Choose an available version of the HL7 connector from the drop-down list.
- Connection Name: Enter a name for the HL7 connection.
- (Optional) Description: Enter a description for the connection.
- Optionally, enable Cloud logging,
and then select a log level. By default, the log level is set to
Error
. - Service Account: Select a service account with the required IAM roles for the HL7 connection.
- Enable event subscription: Select this option to enable the event subscription for the HL7 connection.
- (Optional) Enter Receive Timeout: The SO_TIMEOUT value (in milliseconds) is used when waiting for the start of an frame. The default value is 15000 milliseconds.
- Destination Protocol: Select HL7 REST(Google Cloud HealthCare API) destination protocol and then specify the following:
- Project ID: The Google Cloud project ID where the HL7 store is located.
- Location: The location of your dataset and the HL7v2 store.
- Dataset ID: The ID for the dataset that holds the HL7v2 store.
- HL7 Store ID: The ID for the HL7v2 store where you store the HL7v2 message.
- Optionally, configure the Connection node settings:
- Minimum number of nodes: Enter the minimum number of connection nodes.
- Maximum number of nodes: Enter the maximum number of connection nodes.
A node is a unit (or replica) of a connection that processes transactions. More nodes are required to process more transactions for a connection and conversely, fewer nodes are required to process fewer transactions. To understand how the nodes affect your connector pricing, see Pricing for connection nodes. If you don't enter any values, by default the minimum nodes are set to 2 (for better availability) and the maximum nodes are set to 50.
- Optionally, click + Add label to add a label to the Connection in the form of a key/value pair.
- Optionally, if you want to use SSL, select Enable SSL. This displays the SSL configuration details.
- Select a trust store type. It can be either Public, Private, or Insecure Connection.
- Select the certificates as displayed based on your trust store selection.
- If you are using mTLS, select the key store certificates in the Key Store section.
- Optionally, select the TLS version.
- Enter the supported cipher suite. Enter multiple cipher suites, as comma separated values. For more information, see Supported cipher suites.
- Click Next.
- Skip the Destinations section.
- Click Next.
- In the Authentication section, you don't need to specify any authentication details because the HL7 connection doesn't require any authentication.
- In the Event Subscription Details section, configure the event related details.
- Project Name: The Google Cloud project where the Pub/Sub instance resides.
- Pub/Sub Topic Name: The Pub/Sub topic name to be associated with the HL7v2 store to which the notification messages will be sent.
- Review: Review your connection and authentication details.
- Click Create.
Supported cipher suites
TLS version | Supported cipher suites |
---|---|
1.2 |
|
1.3 |
|
Trigger output
The HL7 trigger takes a couple of minutes to complete the event subscription configuration. You can view the status of your event subscription in the trigger configuration pane under Event Subscription details.
The HL7 trigger indicates the status of an event subscription using the following states:
Creating
: Indicates that the trigger is subscribing to the event subscription.Active
: Indicates that the trigger is successfully subscribed to an event subscription.Error
: Indicates that the there is an issue with the configured event subscription.
In addition to the event subscription status, the Event Subscription details section also displays other details such as connection region, connection name, and event subscription name.
Trigger output variable
For each event, the HL7 trigger generates a ConnectorEventPayload
output variable (in JSON format) which you can use in your downstream tasks. The output
variable will have the payload from your HL7 event. For example:
{ "messageType": "ADT_A01", "message": "MSH|^~\\&|SendingApp|SendingFacility|ReceivingApp|ReceivingFacility|20240209120000||ADT^A01|123456789|P|2.3|||NE|AL|||||\rEVN|A02222221|20240209120000|||\rPID|1||123456789|^^^Hospital^MR||Doe^John^^^Mr.||19800101|M|||123 Main St^^New York^NY^10001^USA||(555)555-1234|(555)555-1235\rPV1|1|I|2000^2012^01||||123^Doe^John|||SUR||||ADM|A0||\r", "contentType": "text/plain" }
View event subscriptions
To view and manage all the event subscriptions associated with a connection in Integration Connectors, do the following:
- Go to Integration Connectors > Connections page.
- Click the connection for which you want to view the subscriptions.
- Click the Event subscriptions tab.
This displays all the event subscriptions for the connection.
Edit HL7 trigger
You can edit a HL7 trigger to change or update the connection configuration and event subscription details.
To edit a HL7 trigger, perform the following steps:
- Click the HL7 trigger element in the integration editor to open the trigger configuration pane.
- Click Configure HL7 trigger.
- Do the following in the Connector Event Trigger Editor page:
- To retain the previously configured event subscription, click Retain, else click Delete.
- Update the connection configuration and event subscription details as desired.
- Click Done.
You can view the updated connection and event subscription details in the trigger configuration pane under Event Subscription details.
Quotas and limits
For information about quotas and limits, see Quotas and limits.
What's next
- Learn about all tasks and triggers.
- Learn how to test and publish an integration.
- Learn about error handling.
- Learn about integration execution logs.