{"id":44042108,"url":"https://github.com/sysadmind/awsses_exporter","last_synced_at":"2026-02-07T21:11:17.482Z","repository":{"id":62867274,"uuid":"120808239","full_name":"sysadmind/awsses_exporter","owner":"sysadmind","description":"AWS SES metrics exporter for Prometheus","archived":false,"fork":false,"pushed_at":"2022-11-22T00:39:46.000Z","size":24,"stargazers_count":8,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-06-20T03:42:22.063Z","etag":null,"topics":["aws","aws-ses","golang","monitoring","prometheus","prometheus-exporter","ses"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sysadmind.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-08T19:36:49.000Z","updated_at":"2023-08-07T12:58:06.000Z","dependencies_parsed_at":"2022-11-08T06:49:32.462Z","dependency_job_id":null,"html_url":"https://github.com/sysadmind/awsses_exporter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sysadmind/awsses_exporter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysadmind%2Fawsses_exporter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysadmind%2Fawsses_exporter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysadmind%2Fawsses_exporter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysadmind%2Fawsses_exporter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sysadmind","download_url":"https://codeload.github.com/sysadmind/awsses_exporter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysadmind%2Fawsses_exporter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29208184,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T20:33:12.493Z","status":"ssl_error","status_checked_at":"2026-02-07T20:30:47.381Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","aws-ses","golang","monitoring","prometheus","prometheus-exporter","ses"],"created_at":"2026-02-07T21:11:16.938Z","updated_at":"2026-02-07T21:11:17.473Z","avatar_url":"https://github.com/sysadmind.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWS SES Exporter\n\nExporter for AWS SES quotas. `awsses_exporter` will poll all AWS SES regions and report back the max send rate, max send per 24 hours, and current send in last 24 hours. The AWS SES API endpoint `GetSendQuota` is called once per region per call to the `/metrics` endpoint\n\n## Usage\n```\n$ awsses_exporter --help\nusage: collector [\u003cflags\u003e]\n\nFlags:\n  -h, --help              Show context-sensitive help (also try --help-long and --help-man).\n      --web.listen-address=\":9199\"\n                          Address to listen on for web interface and telemetry.\n      --web.telemetry-path=\"/metrics\"\n                          Path under which to expose metrics.\n      --aws.regions=\"us-east-1\"\n                          List of AWS regions to export the metrics for.\n                          To pass in multiple regions, repeat the flag like so: --aws.regions=\"us-east-1\" --aws.regions=\"eu-central-1\"\n      --log.level=\"info\"  Only log messages with the given severity or above. Valid levels: [debug, info, warn, error, fatal]\n      --log.format=\"logger:stderr\"\n                          Set the log target and format. Example: \"logger:syslog?appname=bob\u0026local=7\" or \"logger:stdout?json=true\"\n      --version           Show application version.\n```\n\nAWS credentials are pulled via the rules in https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config. Most notably you can use the environment variables `AWS_ACCESS_KEY` and `AWS_SECRET_ACCESS_KEY`.\n\nIf using config file, credentials file or web identity token file, make sure to set `AWS_SDK_LOAD_CONFIG=1`.\n\n## Build\n\nThis easiest way to build and run this utility is with the included docker image: `docker build .`\n\nYou can also install it locally with:\n```\ngo get github.com/sysadmind/awsses_exporter\ngo install github.com/sysadmind/awsses_exporter\n```\n\n\n## Example Metrics\nBelow is an example of the output of the `/metrics` endpoint\n```\n# HELP awsses_exporter_max24hoursend The maximum number of emails allowed to be sent in a rolling 24 hours.\n# TYPE awsses_exporter_max24hoursend gauge\nawsses_exporter_max24hoursend{aws_region=\"eu-west-1\"} 50000\nawsses_exporter_max24hoursend{aws_region=\"us-east-1\"} 50000\nawsses_exporter_max24hoursend{aws_region=\"us-west-2\"} 50000\n# HELP awsses_exporter_maxsendrate The maximum rate of emails allowed to be sent per second.\n# TYPE awsses_exporter_maxsendrate gauge\nawsses_exporter_maxsendrate{aws_region=\"eu-west-1\"} 14\nawsses_exporter_maxsendrate{aws_region=\"us-east-1\"} 14\nawsses_exporter_maxsendrate{aws_region=\"us-west-2\"} 14\n# HELP awsses_exporter_sentlast24hours The number of emails sent in the last 24 hours.\n# TYPE awsses_exporter_sentlast24hours gauge\nawsses_exporter_sentlast24hours{aws_region=\"eu-west-1\"} 101\nawsses_exporter_sentlast24hours{aws_region=\"us-east-1\"} 505\nawsses_exporter_sentlast24hours{aws_region=\"us-west-2\"} 888\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsysadmind%2Fawsses_exporter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsysadmind%2Fawsses_exporter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsysadmind%2Fawsses_exporter/lists"}