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

unexpected fault address 0x13d739f0 #2892

Closed
rogerfar opened this issue Jun 6, 2017 · 2 comments
Closed

unexpected fault address 0x13d739f0 #2892

rogerfar opened this issue Jun 6, 2017 · 2 comments

Comments

@rogerfar
Copy link

rogerfar commented Jun 6, 2017

When I run telegraf on Windows 2016 version 1.3.1, I receive the following error:
error.txt

This my config:

[global_tags]

[agent]
  interval = "10s"
  round_interval = true
  metric_buffer_limit = 1000
  flush_buffer_when_full = true
  collection_jitter = "0s"
  flush_interval = "10s"
  flush_jitter = "0s"
  debug = false
  quiet = false
  hostname = "Prod-1"

[[outputs.influxdb]]
  urls = ["http://1.2.3.4:8086"] 
  database = "telegraf"
  precision = "s"
  timeout = "5s"

[[inputs.win_perf_counters]]
  [[inputs.win_perf_counters.object]]
    ObjectName = "Processor"
    Instances = ["*"]
    Counters = ["% Processor Time"]
    Measurement = "win_cpu"
@danielnelson
Copy link
Contributor

I think this is a duplicate of #2468

@ronnix
Copy link

ronnix commented Sep 4, 2017

FYI, the default configuration enables win_perf_counter plugins, which works fine on 64-bit Windows, but causes a crash on 32-bit Windows (see #2468).

A workaround is to comment all the [[inputs.win_perf_counters.*]] sections, and to uncomment the following sections:

[[inputs.cpu]]
[[inputs.disk]]
[[inputs.diskio]]
[[inputs.mem]]
[[inputs.swap]]

Maybe changing the default config shipped with the 32-bit build would prevent this bad out-of-the-box experience?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants