mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-02-23 13:16:36 +00:00
This prevents the exporter HTTP port from being omitted from the firewall rule DisplayName. I've tested this in the following four scenarios, and web.listen-address is set correctly for each: * Nothing set: 0.0.0.0:9182 * LISTEN_PORT=9184: 0.0.0.0:9184 * LISTEN_ADDR=127.0.0.1: 127.0.0.1:9182 * LISTEN_PORT=9184 LISTEN_ADDR=127.0.0.1: 127.0.0.1:9184 Signed-off-by: Ben Reedy <breed808@breed808.com>
62 lines
3.8 KiB
XML
62 lines
3.8 KiB
XML
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:fw="http://wixtoolset.org/schemas/v4/wxs/firewall" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
|
|
<?if $(sys.BUILDARCH)=x64 ?>
|
|
<?define PlatformProgramFiles = "ProgramFiles64Folder" ?>
|
|
<?else?>
|
|
<?define PlatformProgramFiles = "ProgramFilesFolder" ?>
|
|
<?endif?>
|
|
|
|
<Package UpgradeCode="66a6eb5b-1fc2-4b14-a362-5ceec6413308" Name="windows_exporter" Version="$(var.Version)" Manufacturer="prometheus-community" Language="1033" Codepage="1252"><SummaryInformation Manufacturer="prometheus-community" Description="windows_exporter $(var.Version) installer" />
|
|
<Media Id="1" Cabinet="windows_exporter.cab" EmbedCab="yes" />
|
|
<MajorUpgrade Schedule="afterInstallInitialize" DowngradeErrorMessage="A later version of [ProductName] is already installed. Setup will now exit." />
|
|
|
|
<Property Id="ENABLED_COLLECTORS" Secure="yes" />
|
|
<SetProperty Id="CollectorsFlag" After="InstallFiles" Sequence="execute" Value="--collectors.enabled [ENABLED_COLLECTORS]" Condition="ENABLED_COLLECTORS" />
|
|
|
|
<Property Id="EXTRA_FLAGS" Secure="yes" />
|
|
<SetProperty Id="ExtraFlags" After="InstallFiles" Sequence="execute" Value="[EXTRA_FLAGS]" Condition="EXTRA_FLAGS" />
|
|
|
|
<Property Id="LISTEN_ADDR" Secure="yes" Value="0.0.0.0" />
|
|
<Property Id="LISTEN_PORT" Secure="yes" Value="9182" />
|
|
|
|
<Property Id="METRICS_PATH" Secure="yes" />
|
|
<SetProperty Id="MetricsPathFlag" After="InstallFiles" Sequence="execute" Value="--telemetry.path [METRICS_PATH]" Condition="METRICS_PATH" />
|
|
|
|
<Property Id="REMOTE_ADDR" Secure="yes" />
|
|
<SetProperty Id="RemoteAddressFlag" After="InstallFiles" Sequence="execute" Value="[REMOTE_ADDR]" Condition="REMOTE_ADDR" />
|
|
|
|
|
|
|
|
<Property Id="TEXTFILE_DIR" Secure="yes" />
|
|
<SetProperty Id="TextfileDirFlag" After="InstallFiles" Sequence="execute" Value="--collector.textfile.directory [TEXTFILE_DIR]" Condition="TEXTFILE_DIR" />
|
|
|
|
<ComponentGroup Id="Files">
|
|
<Component Directory="APPLICATIONROOTDIRECTORY">
|
|
<File Id="windows_exporter.exe" Name="windows_exporter.exe" Source="Work\windows_exporter.exe" KeyPath="yes">
|
|
<fw:FirewallException Id="MetricsEndpoint" Name="windows_exporter (HTTP [LISTEN_PORT])" Description="windows_exporter HTTP endpoint" Port="[LISTEN_PORT]" Protocol="tcp" IgnoreFailure="yes">
|
|
<fw:RemoteAddress Value="[REMOTE_ADDR]" />
|
|
</fw:FirewallException>
|
|
</File>
|
|
<ServiceInstall Id="InstallExporterService" Name="windows_exporter" DisplayName="windows_exporter" Description="Exports Prometheus metrics about the system" ErrorControl="normal" Start="auto" Type="ownProcess" Arguments="--log.file eventlog [CollectorsFlag] --web.listen-address [LISTEN_ADDR]:[LISTEN_PORT] [MetricsPathFlag] [TextfileDirFlag] [ExtraFlags]">
|
|
<util:ServiceConfig FirstFailureActionType="restart" SecondFailureActionType="restart" ThirdFailureActionType="restart" RestartServiceDelayInSeconds="60" />
|
|
<ServiceDependency Id="wmiApSrv" />
|
|
</ServiceInstall>
|
|
<ServiceControl Id="ServiceStateControl" Name="windows_exporter" Remove="uninstall" Start="install" Stop="both" />
|
|
<util:EventSource Log="Application" Name="windows_exporter" EventMessageFile="%SystemRoot%\System32\EventCreate.exe" />
|
|
</Component>
|
|
<Component Id="CreateTextfileDirectory" Directory="textfile_inputs" Guid="d03ef58a-9cbf-4165-ad39-d143e9b27e14">
|
|
<CreateFolder />
|
|
</Component>
|
|
</ComponentGroup>
|
|
|
|
<Feature Id="DefaultFeature" Level="1">
|
|
<ComponentGroupRef Id="Files" />
|
|
</Feature>
|
|
|
|
<Directory Id="$(var.PlatformProgramFiles)">
|
|
<Directory Id="APPLICATIONROOTDIRECTORY" Name="windows_exporter">
|
|
<Directory Id="textfile_inputs" Name="textfile_inputs" />
|
|
</Directory>
|
|
</Directory>
|
|
</Package>
|
|
</Wix>
|