Newer Version Available
Monitor Change Event Publishing and Delivery Usage
Use PlatformEventUsageMetric to get visibility into your event usage and usage trends. The usage data gives you an idea of how close you are to your allocations and when you need more allocations. The usage metrics stored in PlatformEventUsageMetric are separate from the REST API limits values. Use the REST API limits to track your monthly delivery usage against your allocations. The monthly CometD-client delivery usage that the limits API returns is common for platform events and change data capture events. PlatformEventUsageMetric breaks down usage of platform events and change data capture events so you can track their usage separately.
Because dates are stored in Coordinated Universal Time (UTC), convert your local dates and times to UTC for the query. For the date format to use, see Date Formats and Date Literals in the SOQL and SOSL Reference.
For change events, you can query usage data for these metrics. The first value is the metric name value that you supply in the query.
- CHANGE_EVENTS_PUBLISHED—Number of change data capture events published
- CHANGE_EVENTS_DELIVERED—Number of change data capture events delivered to CometD clients
For platform events, you can query usage data for these metrics. The first value is the metric name value that you supply in the query.
- PLATFORM_EVENTS_PUBLISHED—Number of platform events published
- PLATFORM_EVENTS_DELIVERED—Number of platform events delivered to CometD clients
Obtain Usage Metrics for the Last 24 Hours
To get usage metrics for the last 24 hours, ending at the last hour, perform a query by specifying the start and end date and time in UTC, and the metric name.
For the last 24-hour period, the end date is the current date in UTC, with the time rounded down to the previous hour. The start date is 24 hours before the end date. Dates have hourly granularity.
Example
Based on the current date and time of August 4, 2020 11:23 in UTC, the last hour is 11:00. The query includes these dates.
- Start date in UTC format: 2020-08-03T11:00:00.000Z
- End date in UTC format: 2020-08-04T11:00:00.000Z
This query returns the usage for the number of platform events delivered to CometD clients for August 3, 2020 at 11:00 to August 4, 2020 at 11:00.
1SELECT Name, StartDate, EndDate, Value FROM PlatformEventUsageMetric
2WHERE Name='CHANGE_EVENTS_DELIVERED'
3AND StartDate=2020-08-03T11:00:00.000Z AND EndDate=2020-08-04T11:00:00.000ZThe query returns this result for the last 24-hour usage.
| Name | StartDate | EndDate | Value |
|---|---|---|---|
| CHANGE_EVENTS_DELIVERED | 2020-08-03T11:00:00.000+0000 | 2020-08-04T11:00:00.000+0000 | 575 |
The time span between StartDate and EndDate is 24 hours for the stored 24-hour usage. Therefore, you can specify either StartDate or EndDate in the query and you get the same result.
Obtain Historical Daily Usage Metrics
To get daily usage metrics for one or more days, perform a query by specifying the start date and end date in UTC, and metric name.
Example
To get usage metrics for a period of 3 days, from July 19 to July 22, 2020, use these start and end dates. Time values are 0.
- Start date for the query: 2020-07-19T00:00:00.000Z
- End date for the query: 2020-07-22T00:00:00.000Z
This query selects usage metrics for the number of platform events delivered to CometD clients for a 3-day period.
1SELECT Name, StartDate, EndDate, Value FROM PlatformEventUsageMetric
2WHERE Name='CHANGE_EVENTS_DELIVERED'
3AND StartDate>=2020-07-19T00:00:00.000Z and EndDate<=2020-07-22T00:00:00.000ZThe query returns these results for the specified date range.
| Name | StartDate | EndDate | Value |
|---|---|---|---|
| CHANGE_EVENTS_DELIVERED | 2020-07-19T00:00:00.000+0000 | 2020-07-20T00:00:00.000+0000 | 575 |
| CHANGE_EVENTS_DELIVERED | 2020-07-20T00:00:00.000+0000 | 2020-07-21T00:00:00.000+0000 | 899 |
| CHANGE_EVENTS_DELIVERED | 2020-07-21T00:00:00.000+0000 | 2020-07-22T00:00:00.000+0000 | 1,035 |