# 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).

require 'date'
require 'oci'

# Create a default config using DEFAULT profile in default location
# Refer to https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File for more info
config = OCI::ConfigFileLoader.load_config

# Initialize service client with default config file
opsi_client = OCI::Opsi::OperationsInsightsClient.new(config: config)

# Send the request to service, some parameters are not required, see API doc for more info
ingest_host_metrics_response =
  opsi_client.ingest_host_metrics(
    'ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value',
    OCI::Opsi::Models::IngestHostMetricsDetails.new(
      items: [
        OCI::Opsi::Models::HostFilesystemUsage.new(
          metric_name: 'HOST_FILESYSTEM_USAGE',
          time_collected: DateTime.parse('2039-11-27T04:01:58.226Z'),
          mount_point: 'EXAMPLE-mountPoint-Value',
          file_system_usage_in_gb: 5204.9595,
          file_system_avail_in_percent: 3989.6287,
          file_system_avail_in_gbs: 5292.7456
        )
      ]
    )
  )

# Get the data from response
puts "#{ingest_host_metrics_response.data}"

Was this article helpful?