turbot/newrelic
steampipe plugin install newrelic

Table: newrelic_notification_channel - Query New Relic Notification Channels using SQL

New Relic Notification Channels are part of the larger Alert system within New Relic, a cloud-based software to help website and application owners track the performances of their services. These channels represent the destinations for alerts generated by New Relic's monitoring services, such as email, Slack, or a custom webhook. They provide a way for New Relic to communicate alert information to users or systems.

Table Usage Guide

The newrelic_notification_channel table provides insights into the notification channels within New Relic's Alert system. As a DevOps engineer, explore channel-specific details through this table, including type, configuration, and linked policies. Utilize it to manage and audit your alert communication settings, such as verifying the correct configuration of channels, understanding the distribution of alert types across channels, and ensuring the proper linkage to alert policies.

Important Notes

  • You must specify the account_id in the where clause to query this table.

Examples

List all notification channels for a specific account

Discover the segments that have active notifications for a specific user account. This can help in managing and organizing notifications, ensuring that important updates are not missed.

select
id,
name,
account_id,
active,
created_at,
updated_at,
updated_by,
destination_id,
product,
properties,
status,
type
from
newrelic_notification_channel
where
account_id = 21355;
select
id,
name,
account_id,
active,
created_at,
updated_at,
updated_by,
destination_id,
product,
properties,
status,
type
from
newrelic_notification_channel
where
account_id = 21355;

Schema for newrelic_notification_channel

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
account_idbigint=ID of the account the channel belongs to.
activebooleanIndicates if the channel is enabled.
created_attimestamp with time zoneTimestamp when the channel was created.
destination_idtextThe ID of the notification destination.
idtextID of the channel.
nametextName of the channel.
producttextName of the product the channel is created for.
propertiesjsonbArray of properties associated with the channel.
statustextStatus of the channel.
typetextType of the channel
updated_attimestamp with time zoneTimestamp when channel was last updated.
updated_bybigintThe ID of the user which last updated the channel.

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

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

steampipe_export_newrelic --config '<your_config>' newrelic_notification_channel