steampipe plugin install oci

Table: oci_streaming_stream - Query OCI Streaming Service Streams using SQL

Oracle Cloud Infrastructure's Streaming Service is a fully managed, scalable, and durable solution for ingesting and consuming high-volume data streams in real time. It allows you to collect, process, and analyze streaming data, such as application logs, telemetry, and other data, in a fault-tolerant way. The service is designed to support streaming use cases, such as analytics, application monitoring, and telemetry, among others.

Table Usage Guide

The oci_streaming_stream table provides insights into streams within Oracle Cloud Infrastructure's Streaming Service. As a data engineer, explore stream-specific details through this table, including partitions, retention periods, and associated metadata. Utilize it to uncover information about streams, such as those with long retention periods, the partition distribution within streams, and the verification of stream properties.

Examples

Basic info

Explore which streams in your Oracle Cloud Infrastructure are active and when they were created. This can help you manage and track your resources effectively.

select
name,
id,
lifecycle_state,
time_created
from
oci_streaming_stream;
select
name,
id,
lifecycle_state,
time_created
from
oci_streaming_stream;

List streams that are not active

Uncover the details of inactive streams within your environment. This can be useful for identifying potential resource waste or areas for optimization.

select
name,
id,
lifecycle_state,
time_created
from
oci_streaming_stream
where
lifecycle_state <> 'ACTIVE';
select
name,
id,
lifecycle_state,
time_created
from
oci_streaming_stream
where
lifecycle_state <> 'ACTIVE';

List streams with retention period greater than 24 hrs

Discover the segments that have a retention period longer than a day. This is useful for identifying and managing streams that require a longer data storage period.

select
name,
id,
lifecycle_state,
time_created,
retention_in_hours
from
oci_streaming_stream
where
retention_in_hours > 24;
select
name,
id,
lifecycle_state,
time_created,
retention_in_hours
from
oci_streaming_stream
where
retention_in_hours > 24;

Schema for oci_streaming_stream

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
compartment_idtext=The OCID of the compartment in Tenant in which the resource is located.
defined_tagsjsonbDefined tags for resource. Defined tags are set up in your tenancy by an administrator. Only users granted permission to work with the defined tags can apply them to resources.
freeform_tagsjsonbFree-form tags for resource. This tags can be applied by any user with permissions on the resource.
idtext=The OCID of the stream.
lifecycle_statetext=The current state of the stream.
lifecycle_state_detailstextAny additional details about the current state of the stream.
messages_endpointtextThe endpoint to use when creating the StreamClient to consume or publish messages in the stream.
nametext=The name of the stream.
partitionsbigintThe number of partitions in the stream.
regiontextThe OCI region in which the resource is located.
retention_in_hoursbigintThe retention period of the stream, in hours. This property is read-only.
stream_pool_idtext=The OCID of the stream pool that contains the stream.
tagsjsonbA map of tags for the resource.
tenant_idtextThe OCID of the Tenant in which the resource is located.
tenant_nametextThe name of the Tenant in which the resource is located.
time_createdtimestamp with time zoneThe date and time the stream was created.
titletextTitle of the resource.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- oci

You can pass the configuration to the command with the --config argument:

steampipe_export_oci --config '<your_config>' oci_streaming_stream