|
1 | 1 | # sendgrid-stats-exporter |
2 | 2 |
|
3 | | -## Overview |
4 | | - |
5 | | -(TBW) |
6 | | - |
| 3 | +Prometheus exporter for SendGrid daily metrics exposed by SendGrid Stats API(v3). |
7 | 4 |
|
8 | 5 | +---------------------------+ +------------+ +--------------+ |
9 | 6 | | SendGrid Stats API (v3) |---(collect /v3/stats)--->| exporter |<---(scrape /metrics)---| Prometheus | |
@@ -50,26 +47,26 @@ Name | Description |
50 | 47 |
|
51 | 48 | Name | Description |
52 | 49 | ---------|------------ |
53 | | -blocks | dummy |
54 | | -bounce_drops | dummy |
55 | | -bounces | dummy |
56 | | -deferred | dummy |
57 | | -delivered | dummy |
58 | | -invalid_emails | dummy |
59 | | -processed | dummy |
60 | | -requests | dummy |
61 | | -spam_report_drops | dummy |
62 | | -spam_reports | dummy |
63 | | -unique_clicks | dummy |
64 | | -unique_opens | dummy |
65 | | -unsubscribe_drops | dummy |
66 | | -unsubscribes | dummy |
| 50 | +blocks | The number of emails that were not allowed to be delivered by ISPs. |
| 51 | +bounce_drops | The number of emails that were dropped because of a bounce. |
| 52 | +bounces | The number of emails that bounced instead of being delivered. |
| 53 | +deferred | The number of emails that temporarily could not be delivered. |
| 54 | +delivered | The number of emails SendGrid was able to confirm were actually delivered to a recipient. |
| 55 | +invalid_emails | The number of recipients who had malformed email addresses or whose mail provider reported the address as invalid. |
| 56 | +processed | Requests from your website, application, or mail client via SMTP Relay or the API that SendGrid processed. |
| 57 | +requests | The number of emails that were requested to be delivered. |
| 58 | +spam_report_drops | The number of emails that were dropped due to a recipient previously marking your emails as spam. |
| 59 | +spam_reports | The number of recipients who marked your email as spam. |
| 60 | +unique_clicks | The number of unique recipients who clicked links in your emails. |
| 61 | +unique_opens | The number of unique recipients who opened your emails. |
| 62 | +unsubscribe_drops | The number of emails dropped due to a recipient unsubscribing from your emails. |
| 63 | +unsubscribes | The number of recipients who unsubscribed from your emails. |
67 | 64 |
|
68 | 65 | ### Running with Docker |
69 | 66 |
|
70 | | -(TBW) |
71 | | - |
72 | | - - docker run |
| 67 | +``` |
| 68 | +$ docker run -d -p 9154:9154 chatwork/sendgrid-stats-exporter |
| 69 | +``` |
73 | 70 |
|
74 | 71 | #### Running with `docker-compose` |
75 | 72 |
|
|
0 commit comments