Getting Onboarding Metrics #454
-
If I want to get a report of what repositories are onboarded to the Renovate CE app, what is the best way(ways) to do that? |
Beta Was this translation helpful? Give feedback.
Answered by
mikaello
Feb 14, 2024
Replies: 1 comment 1 reply
-
Maybe the {
"bootTime": "2024-02-13 14:52:09",
"endpoint": "https://git.acme.com/api/",
"platform": "gitlab",
"app": {
"organizationCount": 13,
"repositoryCount": 131
},
"jobs": {
"history": {
"lastDispatchDate": "2024-02-14 12:08:27",
"lastEnqueueDate": "2024-02-14 12:00:05",
"processed": 3006,
"lastFinished": {
"jobId": 3018,
"repository": "acme/acme-repo",
"organizationName": "acme",
"reason": "hourly",
"priority": 10,
"addedAt": "2024-02-14 12:00:05",
"startedAt": "2024-02-14 12:08:21",
"lastAlive": "2024-02-14 12:08:21",
"attempts": 1,
"status": "success",
"finishedAt": "2024-02-14 12:08:56"
}
},
"queue": {
"inProgress": [],
"size": 0
}
},
"scheduler": {
"job": {
"cron": "0 0,4,8,12,16,20 * * *",
"lastScheduling": "2024-02-14 12:00:00"
},
"sync": {
"cron": "0 * * * *",
"lastScheduling": "2024-02-14 12:00:00"
}
},
"webhooks": {
"lastValidWebhookReceived": "2024-02-14 11:58:40"
},
"renovateVersion": "37.170.0;"
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
shenke-adsk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Maybe the
api/status
can give you that information? Here is what I get fromcurl -H "Authorization: $API_TOKEN" https://renovate.acme.com/api/status | jq
, noticeapp.repositoryCount
: