Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Telegraf (Install) 1.38.3

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by InfluxData. The inclusion of InfluxData trademark(s), if any, upon this webpage is solely to identify InfluxData goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Temporarily exempted from package-verifier due to this issue: https://github.com/chocolatey/package-verifier/issues/106

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Telegraf (Install), run the following command from the command line or from PowerShell:

>

To upgrade Telegraf (Install), run the following command from the command line or from PowerShell:

>

To uninstall Telegraf (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade telegraf -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade telegraf -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install telegraf
  win_chocolatey:
    name: telegraf
    version: '1.38.3'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'telegraf' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.38.3'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller telegraf
{
    Name     = "telegraf"
    Version  = "1.38.3"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'telegraf':
  ensure   => '1.38.3',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 21 Apr 2026.

Description

Telegraf is a plugin-driven server agent for collecting and reporting
metrics, and is the first piece of the TICK stack. Telegraf has plugins to source a
variety of metrics directly from the system it’s running on, pull metrics from third
party APIs, or even listen for metrics via a statsd and Kafka consumer services. It
also has output plugins to send metrics to a variety of other datastores, services,
and message queues, including InfluxDB, Graphite, OpenTSDB, Datadog, Librato, Kafka,
MQTT, NSQ, and many others.

Telegraf is installed under %ProgramFiles%\telegraf.


tools\chocolateybeforemodify.ps1
If (Get-Service -Name "telegraf" -ErrorAction SilentlyContinue) {
    Stop-Service -Name "telegraf"
}
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'telegraf'
$softwareName = 'telegraf*'
$installerType = 'EXE'
$install_folder = Join-Path $env:ProgramFiles 'telegraf'

$silentArgs = 'service uninstall'
$validExitCodes = @(0)

$uninstalled = $false

$file = Join-Path $install_folder 'telegraf.exe'

Uninstall-ChocolateyPackage -PackageName $packageName `
                            -FileType $installerType `
                            -SilentArgs "$silentArgs" `
                            -ValidExitCodes $validExitCodes `
                            -File "$file"

Start-Sleep -Seconds 3
Remove-Item -Path $install_folder -Recurse -Confirm:$false -Force
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$unzipFolder     = $env:ProgramFiles
$installFolder   = "$unzipFolder\telegraf"
$baseConfigFile  = Join-Path $installFolder 'telegraf.conf'
$configDirectory = Join-Path $installFolder 'telegraf.d'
$packageName     = 'telegraf'
$softwareName    = 'telegraf*'
$toolsDir        = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url             = 'https://dl.influxdata.com/telegraf/releases/telegraf-1.38.3_windows_i386.zip '
$url64           = 'https://dl.influxdata.com/telegraf/releases/telegraf-1.38.3_windows_amd64.zip '
$fileLocation    = Join-Path $installFolder 'telegraf.exe'
$telegrafRegPath = "HKLM:\SYSTEM\CurrentControlSet\Services\EventLog\Application\telegraf"

# Extract current version of telegraf
$versionSearch = $url -match '.*-(\d*\.\d*\.\d*)_.*'
if ($versionSearch) {
  $version = $matches[1]
}

If(!(Test-Path -Path $configDirectory)){
  New-Item -Path $configDirectory -ItemType Directory
}

If (Get-Service -Name "telegraf" -ErrorAction SilentlyContinue) {
  $servicePath = (Get-WmiObject win32_service | ?{$_.Name -like 'telegraf'}).PathName.Split('--')[0].Trim().Replace("""","")
  & $servicePath service uninstall
}

If (Test-Path $telegrafRegPath) {
  Remove-Item $telegrafRegPath -Force
}

If (Test-Path "$installFolder\telegraf.conf" -ErrorAction SilentlyContinue) {
  Copy-Item -Force -Path "$installFolder\telegraf.conf" -Destination "$installFolder\telegraf.backup.conf"
}

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $unzipFolder
  fileType      = 'EXE'
  url           = $url
  url64bit      = $url64
  file          = $fileLocation
  file64        = $fileLocation

  softwareName  = 'telegraf*'

  checksum       = '2d3e8170dae1c7473956634814c740920c7afcc71c18f634deb7bfdad766b3e1'
  checksumType   = 'sha256'
  checksum64     = 'fc06d2815f91c71713d6a5d7fabfd279a792019306da5d07b832c988d3408802'
  checksumType64 = 'sha256'

  silentArgs     = "--config `"$baseConfigFile`" --config-directory `"$configDirectory`" service install"
  validExitCodes= @(0)
}

Install-ChocolateyZipPackage @packageArgs

# Move files to non versioned telegraf folder
If((Test-Path -Path "$installFolder-$version")){
  Write-Host "Moving telegraf files"
  Move-Item -Force -Path "$installFolder-$version\*" -Destination "$installFolder\"
  Remove-Item -Path "$installFolder-$version" -Recurse -Force
}

Install-ChocolateyInstallPackage @packageArgs

If (Test-Path $baseConfigFile -ErrorAction SilentlyContinue) {
  Write-Host "Appending discard output to telegraf.conf so service can start"
  Add-Content -Path $baseConfigFile -NoNewline -Value "[[outputs.discard]]`n  # no configuration`n"
}

If (Test-Path "$installFolder\telegraf.backup.conf" -ErrorAction SilentlyContinue) {
  Move-Item -Force -Path "$installFolder\telegraf.backup.conf" -Destination "$installFolder\telegraf.conf"
  Restart-Service -Name "telegraf"
}

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Telegraf (Install) 1.38.2 10465 Tuesday, March 31, 2026 Approved
Telegraf (Install) 1.38.1 7210 Tuesday, March 17, 2026 Approved
Telegraf (Install) 1.38.0 3598 Tuesday, March 10, 2026 Approved
Telegraf (Install) 1.37.3 6596 Tuesday, February 24, 2026 Approved
Telegraf (Install) 1.37.2 5938 Friday, February 13, 2026 Approved
Telegraf (Install) 1.37.1 15822 Tuesday, January 13, 2026 Approved
Telegraf (Install) 1.37.0 17527 Wednesday, December 10, 2025 Approved
Telegraf (Install) 1.36.4 10664 Wednesday, November 19, 2025 Approved
Telegraf (Install) 1.36.3 14458 Wednesday, October 22, 2025 Approved
Telegraf (Install) 1.36.2 11380 Wednesday, October 1, 2025 Approved
Telegraf (Install) 1.36.1 11030 Wednesday, September 10, 2025 Approved
Telegraf (Install) 1.35.4 8840 Tuesday, August 19, 2025 Approved
Telegraf (Install) 1.35.3 12066 Wednesday, July 30, 2025 Approved
Telegraf (Install) 1.35.2 15347 Wednesday, July 9, 2025 Approved
Telegraf (Install) 1.35.1 11721 Wednesday, June 25, 2025 Approved
Telegraf (Install) 1.35.0 5573 Thursday, June 19, 2025 Approved
Telegraf (Install) 1.34.4 24711 Tuesday, May 20, 2025 Approved
Telegraf (Install) 1.34.3 9569 Thursday, May 8, 2025 Approved
Telegraf (Install) 1.34.2 17572 Wednesday, April 16, 2025 Approved
Telegraf (Install) 1.34.1 18963 Wednesday, March 26, 2025 Approved
Telegraf (Install) 1.34.0 13104 Wednesday, March 12, 2025 Approved
Telegraf (Install) 1.33.3 10072 Friday, February 28, 2025 Approved
Telegraf (Install) 1.33.1 29906 Sunday, January 12, 2025 Approved
Telegraf (Install) 1.33.0 11884 Friday, December 20, 2024 Approved
Telegraf (Install) 1.32.0 39139 Sunday, September 29, 2024 Approved
Telegraf (Install) 1.31.1 56009 Tuesday, July 2, 2024 Approved
Telegraf (Install) 1.31.0 78867 Tuesday, June 11, 2024 Approved
Telegraf (Install) 1.30.3 1295 Wednesday, May 22, 2024 Approved
Telegraf (Install) 1.30.2 1623 Wednesday, April 24, 2024 Approved
Telegraf (Install) 1.30.1 2402 Tuesday, April 2, 2024 Approved
Telegraf (Install) 1.30.0 3076 Wednesday, March 13, 2024 Approved
Telegraf (Install) 1.29.5 3482 Wednesday, February 21, 2024 Approved
Telegraf (Install) 1.29.4 9081 Thursday, February 1, 2024 Approved
Telegraf (Install) 1.29.2 18235 Tuesday, January 9, 2024 Approved
Telegraf (Install) 1.29.1 17725 Friday, December 15, 2023 Approved
Telegraf (Install) 1.29.0 1940 Wednesday, December 13, 2023 Approved
Telegraf (Install) 1.28.5 18267 Thursday, November 16, 2023 Approved
Telegraf (Install) 1.28.4 1185 Tuesday, November 14, 2023 Approved
Telegraf (Install) 1.28.3 41669 Tuesday, October 24, 2023 Approved
Telegraf (Install) 1.28.2 28221 Tuesday, October 3, 2023 Approved
Telegraf (Install) 1.28.1 41965 Wednesday, September 13, 2023 Approved
Telegraf (Install) 1.28.0 2484 Tuesday, September 12, 2023 Approved
Telegraf (Install) 1.27.4 46318 Tuesday, August 22, 2023 Approved
Telegraf (Install) 1.27.3 35719 Tuesday, August 1, 2023 Approved
Telegraf (Install) 1.27.2 34278 Tuesday, July 11, 2023 Approved
Telegraf (Install) 1.27.1 34943 Thursday, June 22, 2023 Approved
Telegraf (Install) 1.27.0 21525 Tuesday, June 13, 2023 Approved
Telegraf (Install) 1.26.3 37078 Tuesday, May 23, 2023 Approved
Telegraf (Install) 1.26.2 15473 Wednesday, April 26, 2023 Approved
Telegraf (Install) 1.26.1 18409 Tuesday, April 4, 2023 Approved
Telegraf (Install) 1.26.0 62733 Tuesday, March 14, 2023 Approved
Telegraf (Install) 1.25.3 9619 Tuesday, February 28, 2023 Approved
Telegraf (Install) 1.25.2 9860 Tuesday, February 14, 2023 Approved
Telegraf (Install) 1.25.1 11009 Tuesday, January 31, 2023 Approved
Telegraf (Install) 1.25.0 35377 Tuesday, December 13, 2022 Approved
Telegraf (Install) 1.24.4 10828 Thursday, December 1, 2022 Approved
Telegraf (Install) 1.24.3 24408 Thursday, November 3, 2022 Approved
Telegraf (Install) 1.24.2 81519 Tuesday, October 4, 2022 Approved
Telegraf (Install) 1.24.1 54386 Tuesday, September 20, 2022 Approved
Telegraf (Install) 1.24.0 24368 Tuesday, September 13, 2022 Approved
Telegraf (Install) 1.23.4 85375 Thursday, August 18, 2022 Approved
Telegraf (Install) 1.23.3 131199 Tuesday, July 26, 2022 Approved
Telegraf (Install) 1.23.2 195911 Tuesday, July 12, 2022 Approved
Telegraf (Install) 1.23.1 80205 Wednesday, July 6, 2022 Approved
Telegraf (Install) 1.23.0 118403 Tuesday, June 14, 2022 Approved
Telegraf (Install) 1.22.4 85648 Wednesday, May 18, 2022 Approved
Telegraf (Install) 1.22.3 102 Wednesday, May 18, 2022 Approved
Telegraf (Install) 1.22.2 113 Wednesday, May 18, 2022 Approved
Telegraf (Install) 1.22.1 39121 Sunday, April 17, 2022 Approved
Telegraf (Install) 1.22.0 141 Sunday, April 17, 2022 Approved
Telegraf (Install) 1.21.4 48246 Thursday, February 17, 2022 Approved
Telegraf (Install) 1.21.3 1922 Saturday, January 29, 2022 Approved
Telegraf (Install) 1.21.2 28390 Thursday, January 6, 2022 Approved
Telegraf (Install) 1.21.1 1295 Saturday, December 18, 2021 Approved
Telegraf (Install) 1.21.0 1002 Thursday, December 16, 2021 Approved
Telegraf (Install) 1.20.4 4930 Thursday, November 18, 2021 Approved
Telegraf (Install) 1.20.3 2700 Friday, October 29, 2021 Approved
Telegraf (Install) 1.20.2 1354 Friday, October 8, 2021 Approved
Telegraf (Install) 1.20.1 566 Thursday, October 7, 2021 Approved
Telegraf (Install) 1.20.0 1417 Tuesday, September 21, 2021 Approved
Telegraf (Install) 1.19.3 2349 Friday, August 20, 2021 Approved
Telegraf (Install) 1.19.2 2403 Friday, July 30, 2021 Approved
Telegraf (Install) 1.19.1 1082 Thursday, July 8, 2021 Approved
Telegraf (Install) 1.19.0 1597 Friday, June 18, 2021 Approved
Telegraf (Install) 1.18.3 1516 Tuesday, May 25, 2021 Approved
Telegraf (Install) 1.18.2.20210501 4177 Sunday, May 2, 2021 Approved
Telegraf (Install) 1.18.2 1997 Friday, April 30, 2021 Approved
Telegraf (Install) 1.18.1 149 Friday, April 30, 2021 Approved
Telegraf (Install) 1.18.0 7185 Thursday, March 18, 2021 Approved
Telegraf (Install) 1.17.3 1420 Friday, February 19, 2021 Approved
Telegraf (Install) 1.17.2 25355 Saturday, January 30, 2021 Approved
Telegraf (Install) 1.17.1 1439 Friday, January 29, 2021 Approved
Telegraf (Install) 1.17.0 223896 Saturday, December 19, 2020 Approved
Telegraf (Install) 1.16.3 2434 Thursday, December 3, 2020 Approved
Telegraf (Install) 1.16.2 1925 Saturday, November 14, 2020 Approved
Telegraf (Install) 1.16.1 2335 Friday, October 30, 2020 Approved
Telegraf (Install) 1.16.0 4803 Thursday, October 22, 2020 Approved
Telegraf (Install) 1.15.3 34064 Saturday, September 12, 2020 Approved
Telegraf (Install) 1.15.2 9639 Tuesday, August 4, 2020 Approved
Telegraf (Install) 1.15.1.20200723 2687 Friday, July 24, 2020 Approved
Telegraf (Install) 1.15.1 1175 Thursday, July 23, 2020 Approved
Telegraf (Install) 1.14.5 224955 Wednesday, July 1, 2020 Approved
Telegraf (Install) 1.14.4 7245 Wednesday, June 10, 2020 Approved
Telegraf (Install) 1.14.3 8605 Wednesday, May 20, 2020 Approved
Telegraf (Install) 1.14.2 12390 Thursday, April 30, 2020 Approved
Telegraf (Install) 1.14.1 5087 Wednesday, April 15, 2020 Approved
Telegraf (Install) 1.14.0 9100 Friday, March 27, 2020 Approved
Telegraf (Install) 1.13.4 12696 Wednesday, February 26, 2020 Approved
Telegraf (Install) 1.13.3 10983 Thursday, February 6, 2020 Approved
Telegraf (Install) 1.13.2 3314 Wednesday, January 22, 2020 Approved
Telegraf (Install) 1.13.1 7472 Thursday, January 9, 2020 Approved
Telegraf (Install) 1.13.0 13893 Friday, December 13, 2019 Approved
Telegraf (Install) 1.12.6 18122 Wednesday, November 20, 2019 Approved
Telegraf (Install) 1.12.5 4093 Wednesday, November 13, 2019 Approved
Telegraf (Install) 1.12.4 5524 Thursday, October 24, 2019 Approved
Telegraf (Install) 1.12.3 3424 Tuesday, October 8, 2019 Approved
Telegraf (Install) 1.12.2 1214 Wednesday, September 25, 2019 Approved
Telegraf (Install) 1.12.1 2361 Thursday, September 12, 2019 Approved
Telegraf (Install) 1.12.0 1403 Wednesday, September 4, 2019 Approved
Telegraf (Install) 1.11.5 2178 Wednesday, August 28, 2019 Approved
Telegraf (Install) 1.11.4 13411 Wednesday, August 7, 2019 Approved
Telegraf (Install) 1.11.3 1196 Wednesday, July 24, 2019 Approved
Telegraf (Install) 1.11.2 1685 Wednesday, July 10, 2019 Approved
Telegraf (Install) 1.11.1 1102 Wednesday, June 26, 2019 Approved
Telegraf (Install) 1.11.0 2678 Wednesday, June 12, 2019 Approved
Telegraf (Install) 1.10.4 15669 Wednesday, May 15, 2019 Approved
Telegraf (Install) 1.10.3 11185 Wednesday, April 17, 2019 Approved
Telegraf (Install) 1.10.2 787 Wednesday, April 3, 2019 Approved
Telegraf (Install) 1.10.1 794 Wednesday, March 20, 2019 Approved
Telegraf (Install) 1.10.0 910 Thursday, March 7, 2019 Approved
Telegraf (Install) 1.9.5 757 Wednesday, February 27, 2019 Approved
Telegraf (Install) 1.9.4 1575 Wednesday, February 6, 2019 Approved
Telegraf (Install) 1.9.3 2332 Wednesday, January 23, 2019 Approved
Telegraf (Install) 1.9.2 8639 Wednesday, January 9, 2019 Approved
Telegraf (Install) 1.9.1 2042 Friday, December 14, 2018 Approved
Telegraf (Install) 1.9.0 1830 Wednesday, November 21, 2018 Approved
Telegraf (Install) 1.8.3 1998 Wednesday, October 31, 2018 Approved
Telegraf (Install) 1.8.2 1349 Thursday, October 18, 2018 Approved
Telegraf (Install) 1.8.1 3349 Friday, October 5, 2018 Approved
Telegraf (Install) 1.8.0 609 Saturday, September 22, 2018 Approved
Telegraf (Install) 1.7.4 1966 Thursday, August 30, 2018 Approved
Telegraf (Install) 1.7.3 1198 Wednesday, August 8, 2018 Approved
Telegraf (Install) 1.7.2 5350 Thursday, July 19, 2018 Approved
Telegraf (Install) 1.7.1 1316 Friday, July 6, 2018 Approved
Telegraf (Install) 1.7.0 1565 Thursday, June 14, 2018 Approved
Telegraf (Install) 1.6.4 1207 Wednesday, June 6, 2018 Approved
Telegraf (Install) 1.6.3 5179 Tuesday, May 22, 2018 Approved
Telegraf (Install) 1.6.2 754 Wednesday, May 9, 2018 Approved
Telegraf (Install) 1.6.1 2015 Tuesday, April 24, 2018 Approved
Telegraf (Install) 1.6.0 647 Tuesday, April 17, 2018 Approved
Telegraf (Install) 1.5.3 2815 Friday, March 16, 2018 Approved
Telegraf (Install) 1.5.2 1877 Thursday, February 8, 2018 Approved
Telegraf (Install) 1.5.1 2101 Thursday, January 11, 2018 Approved
Telegraf (Install) 1.5.0 615 Monday, January 8, 2018 Approved
Telegraf (Install) 1.4.4 7316 Thursday, November 9, 2017 Approved
Telegraf (Install) 1.4.3 1067 Monday, November 6, 2017 Approved
Telegraf (Install) 1.4.0 1770 Friday, September 8, 2017 Approved
Telegraf (Install) 1.3.5 1454 Wednesday, August 16, 2017 Approved
Telegraf (Install) 1.3.4 676 Wednesday, July 26, 2017 Approved
Telegraf (Install) 1.3.3 910 Monday, July 10, 2017 Approved
Telegraf (Install) 1.3.1 686 Tuesday, June 13, 2017 Approved
Telegraf (Install) 1.3.0 642 Wednesday, May 24, 2017 Approved
Telegraf (Install) 1.2.1 2897 Saturday, February 4, 2017 Approved
Telegraf (Install) 1.2.0 730 Sunday, January 29, 2017 Approved
Telegraf (Install) 1.1.2 941 Monday, January 16, 2017 Approved
Telegraf (Install) 1.0.1 585 Sunday, October 30, 2016 Approved

This package has no dependencies.

Discussion for the Telegraf (Install) Package

Ground Rules:

  • This discussion is only about Telegraf (Install) and the Telegraf (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Telegraf (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus