[118653] <DATE> (11180 ReportEventList Thread 0) Statement returned error [8115]: [Microsoft][SQL Server Native Client 11.0][SQL Server]Arithmetic overflow error converting IDENTITY to data type int.The DAS database table "dbo.metered_execs" was designed to use the INT (integer) value by default, which has a maximum value of 2,147,483,647. Once that limit is reached, the database will fail to ingest any more events that are related to that table.
USE das;
SELECT
OBJECT_NAME(object_id) AS TableName,
name AS ColumnName,
TYPE_NAME(system_type_id) AS DataType,
CAST(last_value AS bigint) AS CurrentIdentityValue,
2147483647 - CAST(last_value AS bigint) AS Remain
FROM sys.identity_columns
WHERE OBJECT_NAME(object_id) IN ('internal_events', 'metered_execs', 'events')
ORDER BY Remain ASC;