Skip to content

Commit

Permalink
set default monitoring agent to alloy (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoBrigitte authored Oct 17, 2024
1 parent fa6b6eb commit f0af90d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add wal `truncate_frequency` configuration to alloy-metrics with a default set to 15m.
- Add grafanaOrganization CRD in helm chart.

### Changed

- Change default default monitoring agent to Alloy

## [0.7.1] - 2024-10-10

### Fixed
Expand Down
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ func main() {
flag.StringVar(&managementClusterRegion, "management-cluster-region", "",
"The region of the management cluster.")
// Monitoring configuration flags.
flag.StringVar(&monitoringAgent, "monitoring-agent", commonmonitoring.MonitoringAgentAlloy,
fmt.Sprintf("select monitoring agent to use (%s or %s)", commonmonitoring.MonitoringAgentPrometheus, commonmonitoring.MonitoringAgentAlloy))
flag.BoolVar(&monitoringEnabled, "monitoring-enabled", false,
"Enable monitoring at the management cluster level.")
flag.StringVar(&monitoringAgent, "monitoring-agent", commonmonitoring.MonitoringAgentPrometheus,
Expand Down

0 comments on commit f0af90d

Please sign in to comment.