// This is an automatically generated code sample.
// To make this code sample work in your Oracle Cloud tenancy,
// please replace the values for any parameters whose current values do not fit
// your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
// boolean, number, and enum parameters with values not fitting your use case).
package main
import (
"context"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"github.com/oracle/oci-go-sdk/v65/example/helpers"
"github.com/oracle/oci-go-sdk/v65/logging"
)
func ExampleCreateUnifiedAgentConfiguration() {
// Create a default authentication provider that uses the DEFAULT
// profile in the configuration file.
// Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.
client, err := logging.NewLoggingManagementClientWithConfigurationProvider(common.DefaultConfigProvider())
helpers.FatalIfError(err)
// Create a request and dependent object(s).
req := logging.CreateUnifiedAgentConfigurationRequest{CreateUnifiedAgentConfigurationDetails: logging.CreateUnifiedAgentConfigurationDetails{Description: common.String("EXAMPLE-description-Value"),
DisplayName: common.String("EXAMPLE-displayName-Value"),
FreeformTags: map[string]string{"EXAMPLE_KEY_4qk1G": "EXAMPLE_VALUE_qHlpIRM2fCRJoEoDsVi2"},
GroupAssociation: &logging.GroupAssociationDetails{GroupList: []string{"EXAMPLE--Value"}},
IsEnabled: common.Bool(true),
ServiceConfiguration: logging.UnifiedAgentLoggingConfiguration{Destination: &logging.UnifiedAgentLoggingDestination{LogObjectId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-logObjectId-Value"),
OperationalMetricsConfiguration: &logging.OperationalMetricsConfiguration{Destination: &logging.OperationalMetricsDestination{CompartmentId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value")},
Source: &logging.OperationalMetricsSource{Type: logging.OperationalMetricsSourceTypeUmaMetrics,
Metrics: []string{"EXAMPLE--Value"},
RecordInput: &logging.OperationalMetricsRecordInput{Namespace: common.String("EXAMPLE-namespace-Value"),
ResourceGroup: common.String("EXAMPLE-resourceGroup-Value")}}}},
Filter: []logging.UnifiedAgentLoggingFilter{logging.UnifiedAgentLoggingRecordTransformerFilter{IsAutoTypecastEnabled: common.Bool(false),
IsRenewRecordEnabled: common.Bool(true),
IsRubyEnabled: common.Bool(true),
KeepKeys: []string{"EXAMPLE--Value"},
Name: common.String("EXAMPLE-name-Value"),
RecordList: []logging.RecordTransformerPair{logging.RecordTransformerPair{Value: common.String("EXAMPLE-value-Value"),
Key: common.String("EXAMPLE-key-Value")}},
RemoveKeys: []string{"EXAMPLE--Value"},
RenewTimeKey: common.String("EXAMPLE-renewTimeKey-Value")}},
Sources: []logging.UnifiedAgentLoggingSource{logging.UnifiedAgentTailLogSource{Name: common.String("EXAMPLE-name-Value"),
Parser: logging.UnifiedJsonParser{TimeoutInMilliseconds: common.Int(907),
Types: map[string]string{"EXAMPLE_KEY_CfbVC": "EXAMPLE_VALUE_owMZIDkdm7HFrlDfHTSa"},
FieldTimeKey: common.String("EXAMPLE-fieldTimeKey-Value"),
IsKeepTimeKey: common.Bool(false),
IsNullEmptyString: common.Bool(true),
NullValuePattern: common.String("EXAMPLE-nullValuePattern-Value"),
ParseNested: common.Bool(true),
TimeType: logging.UnifiedJsonParserTimeTypeFloat,
IsEstimateCurrentEvent: common.Bool(true),
Separator: common.String("EXAMPLE-separator-Value"),
TimeFormat: common.String("EXAMPLE-timeFormat-Value")},
Paths: []string{"EXAMPLE--Value"},
AdvancedOptions: &logging.UnifiedAgentTailSourceAdvancedOptions{IsReadFromHead: common.Bool(false)}}}},
CompartmentId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"),
DefinedTags: map[string]map[string]interface{}{"EXAMPLE_KEY_EvL0O": map[string]interface{}{"EXAMPLE_KEY_GOOiX": "EXAMPLE--Value"}}},
OpcRequestId: common.String("HYMSVUYYHEJJKT6LEUQQ<unique_ID>"),
OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value")}
// Send the request using the service client
resp, err := client.CreateUnifiedAgentConfiguration(context.Background(), req)
helpers.FatalIfError(err)
// Retrieve value from the response.
fmt.Println(resp)
}