Find out how to use the APM Log Sender pre-built function in OCI Functions to move service logs to an APM domain.
Common Usage Scenarios
Use the APM Log Sender PBF to move service logs to an APM domain by using the function as a target of a service connector. The main use of this function is to monitor Oracle Integration Cloud (OIC) integrations with Application Performance Monitoring (APM) by connecting an OIC activity stream log to the function.
Services related to the APM Log Sender function include:
The following are best practices when using this pre-built function:
Set the pre-built function timeout to 300 seconds.
If the subnet specified for the application is a private subnet, the VCN must include a service gateway. If the subnet specified for the application is a public subnet, the VCN must include an internet gateway. In both cases, the necessary routing rules must exist. See the instructions in the Invoking a function returns a FunctionInvokeImageNotAvailable message and a 502 error troubleshooting topic.
The function, APM domain, and log resource must all be in the same region.
Configuring the APM Log Sender Function π
To create an APM Log Sender function, perform the following steps:
On the Pre-Built Functions page, select APM Log Sender, and then select Create function.
Configure the Name, Compartment, and Application as follows:
Name: A name of your choice for the new function. The name must start with a letter or underscore, followed by letters, numbers, hyphens, or underscores. Length can be 1β255 characters. Avoid entering confidential information.
To create the function in a different compartment, select Change Compartment.
Application: Select the application in which you want to create the function.
If a suitable application doesn't already exist in the current compartment, select Create new application and specify the following details:
Name: A name for the new application. Avoid entering confidential information.
VCN: The VCN (virtual cloud network) in which to run functions in the application. Optionally, select Change Compartment to select a VCN from a different compartment.
Subnets: The subnet (or subnets, up to a maximum of three) in which to run functions. Optionally, select Change Compartment to select a subnet from a different compartment.
Shape: The processor architecture of the compute instances on which to deploy and run functions in the application. All the functions in the application are deployed and run on compute instances with the same architecture. The function's image must contain the necessary dependencies for the architecture you select.
Tagging options:
If you have permissions to create a resource, then you also have permissions to apply free-form tags to that resource. To apply a defined tag, you must have permissions to use the tag namespace. For more information about tagging, see Resource Tags. If you're not sure whether to apply tags, skip this option or ask an administrator. You can apply tags later.
Configure the IAM policy for pre-built functions.
By default, OCI Functions creates a dynamic group and an IAM policy with the policy statements required to run the pre-built function. Make no changes to accept the default behavior.
If you don't want OCI Functions to automatically create the dynamic group and policy, select Do not create a dynamic group and IAM policy.
Important
If you select the Do not create a dynamic group and IAM policy option, you must define the dynamic group and the IAM policy yourself.
Configure function memory and timeout values as follows:
Memory: The maximum amount of memory that the function can use while running, in megabytes. This is the memory available to the function image.
Timeout: The maximum amount of time that the function can run for, in seconds. If the function doesnβt complete in the specified time, the system cancels the function. (Default: 300)
(Optional) Configure Provisioned concurrency to minimize any initial delays when invoking the function by specifying a minimum number of concurrent function invocations for which you want to have execution infrastructure constantly available. (Default: Not selected)
If selected, specify the number of provisioned concurrency units assigned to this function. Default: 20.
Optionally enter any tags in the Tagging options section. If you have permissions to create a resource, then you also have permissions to apply free-form tags to that resource. To apply a defined tag, you must have permissions to use the tag namespace. For more information about tagging, see Resource Tags. If you're not sure whether to apply tags, skip this option or ask an administrator. You can apply tags later.
The id of the domain that is to monitor the service log.
Yes
PBF_LOG_LEVEL
Logging level, options are DEBUG, INFO, WARN, and ERROR. Defaults to INFO.
No
Permissions π
Running a function requires certain IAM policies. If you selected the Do not create a dynamic group and IAM policy option when creating the function, you must define the dynamic group and the IAM policy yourself.
To set the proper policies, perform the following steps:
Create a dynamic group with the rule:
Copy
ALL {resource.id = '<function_ocid>', resource.compartment.id = '<compartment_ocid>'
Configure an IAM policy using the dynamic group:
Copy
Allow dynamic-group <dynamic-group-name> to read apm-domains in compartment <compartment-name>
Allow dynamic-group <dynamic-group-name> to {APM_DOMAIN_DATA_UPLOAD} in compartment <compartment-name>
Note
Replace <function-ocid> with the OCID of the function that you created in preceding steps.
Note
Replace <dynamic-group-name> with the name of the dynamic group that you created using the function's OCID.
Note
Replace <compartment_ocid> with the OCID of the compartment that contains the function.
Note
Replace <compartment_name> with the name of the compartment that contains the APM domain.
Invoking This Function π
Connector Hub uses the function created using this PBF to move service logs to an APM domain.
Create a function using this PBF.
Create a connector in the Connector Hub to forward the activity stream logs to the function:
Open the navigation menu and select Analytics & AI. Under Messaging, select Connector Hub.
Select the Create connector button.
Enter a name and optional description.
Select a compartment.
Under Configure connector, set the Source to Logging, and the Target to Functions.
Under Configure source, point the Log Group and Logs to a service log.
Under Configure target, set the Function application and Function to the function that you created in the earlier step.
Note: Do not configure a task.
Select the Create button.
Troubleshooting π
OCI Functions common status codes
The following table summarizes common OCI Functions errors that you might encounter when working with pre-built functions:
Note that most clients have an inner timeout of 60 seconds. Even when the pre-built function timeout is set to 300 seconds, the following might be required:
When using the OCI CLI: Use --read-timeout 300
When using the OCI SDK: Set the read timeout to 300 when creating the client
When using DBMS_CLOUD.SEND_REQUEST: Use UTL_HTTP.set_transfer_timeout(300);
Most issues return a 502 status code (see Invoking a function returns a Function failed message and a 502 error). A 502 error with the message "error receiving function response" might be resolved by increasing the memory allocation. A 502 might occur occasionally when the function is in some transient state. A retry might solve the issue.
All the pre-built functions provide an option to specify the logging level as a configuration parameter. You can set the logging level to DEBUG to get more information.
Since an application has multiple functions, the pre-built function log entries are identified by the prefix "PBF | <PBF NAME> ".
For example, a log entry for the APM Log Sender pre-built function looks similar to the following:
"PBF | APM Log Sender | ERROR | 2024-08-13T12:44:49.579050219Z | Unable to retrieve data upload endpoint"