You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Start adding Runner structs and garbage collector functions
* Add runners and new schemas
* Fix Redis methods to manipulate runner data
* Fix missing returned error name
* Update documentation
* Set gathering runner information to true by default
* Update store and fix duplicates entries for runners
* Update store and fix duplicates entries for runners
* Update add new runners as metrics
Copy file name to clipboardExpand all lines: docs/metrics.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@
13
13
|`gcpe_metrics_count`| Number of GitLab pipelines metrics being exported ||*available by default*|
14
14
|`gcpe_projects_count`| Number of GitLab projects being exported ||*available by default*|
15
15
|`gcpe_refs_count`| Number of GitLab refs being exported ||*available by default*|
16
+
|`gcpe_runners_count`| Number of Runners being exported ||*available by default*|
16
17
|`gitlab_ci_environment_behind_commits_count`| Number of commits the environment is behind given its last deployment |[project], [environment]|`project_defaults.pull.environments.enabled`|
17
18
|`gitlab_ci_environment_behind_duration_seconds`| Duration in seconds the environment is behind the most recent commit given its last deployment |[project], [environment]|`project_defaults.pull.environments.enabled`|
18
19
|`gitlab_ci_environment_deployment_count`|Number of deployments for an environment |[project], [environment]|`project_defaults.pull.environments.enabled`|
Copy file name to clipboardExpand all lines: pkg/config/config.go
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -129,6 +129,13 @@ type Pull struct {
129
129
IntervalSecondsint`default:"1800" validate:"gte=1" yaml:"interval_seconds"`// IntervalSeconds defines the interval in seconds between scheduled fetches.
0 commit comments