steampipe plugin install aiven

Table: aiven_service_integration_endpoint - Query Aiven Service Integration Endpoints using SQL

Aiven Service Integration Endpoint is a feature within Aiven that allows you to connect Aiven services with external systems. It provides a centralized way to manage and configure connections for various Aiven resources, including databases, caches, and more. Aiven Service Integration Endpoint helps you establish secure and reliable connections between Aiven services and your external systems.

Table Usage Guide

The aiven_service_integration_endpoint table provides insights into service integration endpoints within Aiven. As a DevOps engineer, explore endpoint-specific details through this table, including endpoint configurations, related services, and associated metadata. Utilize it to uncover information about endpoints, such as their configuration details, the services they connect to, and the status of these connections.

Examples

Basic info

Discover the segments that are linked to different project names and endpoint types. This can be useful in managing and organizing your service integration endpoints effectively.

select
endpoint_id,
endpoint_name,
project_name,
endpoint_type
from
aiven_service_integration_endpoint;
select
endpoint_id,
endpoint_name,
project_name,
endpoint_type
from
aiven_service_integration_endpoint;

List external service integration endpoints

Explore which external services are integrated with your project. This helps you maintain an overview of your project's dependencies and interactions.

select
endpoint_id,
endpoint_name,
project_name,
endpoint_type
from
aiven_service_integration_endpoint
where
endpoint_type like 'external%';
select
endpoint_id,
endpoint_name,
project_name,
endpoint_type
from
aiven_service_integration_endpoint
where
endpoint_type like 'external%';

List service integration endpoints which are not associated to any service

Discover the segments that consist of service integration endpoints which are not linked to any service. This is beneficial in identifying unused resources, thereby aiding in efficient resource management and cost optimization.

select
endpoint_id,
endpoint_name,
project_name,
endpoint_type
from
aiven_service_integration_endpoint
where
endpoint_id not in (
select
i ->> 'source_endpoint_id' as endpoint_id
from
aiven_service,
jsonb_array_elements(integrations) as i
union
select
i ->> 'dest_endpoint_id' as endpoint_id
from
aiven_service,
jsonb_array_elements(integrations) as i
);
select
endpoint_id,
endpoint_name,
project_name,
endpoint_type
from
aiven_service_integration_endpoint
where
endpoint_id not in (
select
json_extract(i.value, '$.source_endpoint_id') as endpoint_id
from
aiven_service,
json_each(integrations) as i
union
select
json_extract(i.value, '$.dest_endpoint_id') as endpoint_id
from
aiven_service,
json_each(integrations) as i
);

List service integration endpoint settings

Explore the configuration details of service integration endpoints to understand their types and user settings. This can be useful to assess the elements within your service integration and identify potential areas for optimization or troubleshooting.

select
endpoint_id,
endpoint_name,
endpoint_type,
jsonb_pretty(user_config) as user_config
from
aiven_service_integration_endpoint;
select
endpoint_id,
endpoint_name,
endpoint_type,
user_config
from
aiven_service_integration_endpoint;

Schema for aiven_service_integration_endpoint

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
endpoint_configjsonbService integration endpoint backend settings.
endpoint_idtext=The integration endpoint ID.
endpoint_nametextThe integration endpoint name.
endpoint_typetextIntegration endpoint type.
project_nametext=The project name.
user_configjsonbService integration endpoint settings.

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)" -- aiven

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

steampipe_export_aiven --config '<your_config>' aiven_service_integration_endpoint