tree: 8f80a47258c359491b379311d6e72796c181299a [path history] [tgz]
  1. src/
  2. pom.xml
  3. README.md
flink-connector-prometheus-request-signer-amp/README.md

Request Signer for Amazon Managed Prometheus (AMP)

Request signer implementation for Amazon Managed Prometheus (AMP).

The signer retrieves AWS credential using the default credential provider chain, that searches for credentials in the following order: ENV_VARS, SYS_PROPS, WEB_IDENTITY_TOKEN, PROFILE and EC2/ECS credentials provider.

The Flink application requires RemoteWrite permissions to the AMP workspace (e.g. AmazonPromethusRemoteWriteAccess policy).

Sample usage

To enable request signing for Amazon Managed Prometheus, and instance of AmazonManagedPrometheusWriteRequestSigner must be provided when building the PrometheusSink instance. The only required parameters are the AWS region and the AMP remote-write URL.


// AWS region of the AMP workspace String prometheusRegion = "us-east-1"; // Remote-Write URL of the AMP workspace String prometheusRemoteWriteUrl = "https://aps-workspaces.us-east-1.amazonaws.com/workspaces/ws-091245678-9abc-def0-1234-56789abcdef0/api/v1/remote_write"; // Build the sink to AMP using the request signer AsyncSinkBase<PrometheusTimeSeries, Types.TimeSeries> sink = PrometheusSink.builder() .setPrometheusRemoteWriteUrl(prometheusRemoteWriteUrl) .setRequestSigner(new AmazonManagedPrometheusWriteRequestSigner(prometheusRemoteWriteUrl, prometheusRegion)) .build();