-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: gtfs-api: fix gtfs_data_imported_at metric's format
- Loading branch information
Showing
2 changed files
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CREATE OR REPLACE FUNCTION api.gtfs_data_imported_at_metric () | ||
RETURNS api."text/plain" | ||
AS $$ | ||
SELECT E'# HELP gtfs_data_imported_at when the GTFS data has been imported\n# TYPE gtfs_data_imported_at gauge\ngtfs_data_imported_at=' || floor(EXTRACT(EPOCH FROM api.gtfs_data_imported_at())) || E'\n'; | ||
SELECT E'# HELP gtfs_data_imported_at when the GTFS data has been imported\n# TYPE gtfs_data_imported_at gauge\ngtfs_data_imported_at ' || floor(EXTRACT(EPOCH FROM api.gtfs_data_imported_at())) || E'\n'; | ||
$$ LANGUAGE SQL IMMUTABLE; | ||
|
||
GRANT EXECUTE ON FUNCTION api.gtfs_data_imported_at_metric TO postgrest; |