Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows auto start #542

Merged
merged 4 commits into from
Apr 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,18 @@ cross-compilation issue, but will return in v0.13.0.

# Main (unreleased)

# 0.14.0-rc.3 (2021-04-15)
rfratto marked this conversation as resolved.
Show resolved Hide resolved

- [ENHANCEMENT] Add `headers` field in `remote_write` config for Tempo. `headers`
specifies HTTP headers to forward to the remote endpoint. (@alexbiehl)

- [BUGFIX] Grafana Agent running as a Windows service should start automatically on startup
(@mattdurham)

- [BUGFIX] Validate that incoming scraped metrics do not have an empty label
set or a label set with duplicate labels, mirroring the behavior of
Prometheus. (@rfratto)

# v0.13.1 (2021-04-09)

- [BUGFIX] Validate that incoming scraped metrics do not have an empty label
mattdurham marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
2 changes: 1 addition & 1 deletion packaging/windows/install_script.nsis
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Function Install
nsExec::ExecToLog 'sc create "Grafana Agent" binpath= "$INSTDIR\agent-windows-amd64.exe"'
Pop $0
# These separate create and config commands are needed, on the config the binpath is required
nsExec::ExecToLog 'sc config "Grafana Agent" binpath= "$INSTDIR\agent-windows-amd64.exe -config.file=\"$INSTDIR\agent-config.yaml\""'
nsExec::ExecToLog 'sc config "Grafana Agent" start= auto binpath= "$INSTDIR\agent-windows-amd64.exe -config.file=\"$INSTDIR\agent-config.yaml\""'
Pop $0
nsExec::ExecToLog `sc start "Grafana Agent"`
Pop $0
Expand Down