|
1178 | 1178 | # # field = "read_count" |
1179 | 1179 | # # suffix = "_count" |
1180 | 1180 | # |
1181 | | -# ## Replace substrings within field names |
1182 | | -# # [[processors.strings.trim_suffix]] |
| 1181 | +# ## Replace all non-overlapping instances of old with new |
| 1182 | +# # [[processors.strings.replace]] |
1183 | 1183 | # # measurement = "*" |
1184 | 1184 | # # old = ":" |
1185 | 1185 | # # new = "_" |
|
2376 | 2376 | # # no configuration |
2377 | 2377 |
|
2378 | 2378 |
|
| 2379 | +# # Read jobs and cluster metrics from Jenkins instances |
| 2380 | +# [[inputs.jenkins]] |
| 2381 | +# ## The Jenkins URL |
| 2382 | +# url = "http://my-jenkins-instance:8080" |
| 2383 | +# # username = "admin" |
| 2384 | +# # password = "admin" |
| 2385 | +# |
| 2386 | +# ## Set response_timeout |
| 2387 | +# response_timeout = "5s" |
| 2388 | +# |
| 2389 | +# ## Optional TLS Config |
| 2390 | +# # tls_ca = "/etc/telegraf/ca.pem" |
| 2391 | +# # tls_cert = "/etc/telegraf/cert.pem" |
| 2392 | +# # tls_key = "/etc/telegraf/key.pem" |
| 2393 | +# ## Use SSL but skip chain & host verification |
| 2394 | +# # insecure_skip_verify = false |
| 2395 | +# |
| 2396 | +# ## Optional Max Job Build Age filter |
| 2397 | +# ## Default 1 hour, ignore builds older than max_build_age |
| 2398 | +# # max_build_age = "1h" |
| 2399 | +# |
| 2400 | +# ## Optional Sub Job Depth filter |
| 2401 | +# ## Jenkins can have unlimited layer of sub jobs |
| 2402 | +# ## This config will limit the layers of pulling, default value 0 means |
| 2403 | +# ## unlimited pulling until no more sub jobs |
| 2404 | +# # max_subjob_depth = 0 |
| 2405 | +# |
| 2406 | +# ## Optional Sub Job Per Layer |
| 2407 | +# ## In workflow-multibranch-plugin, each branch will be created as a sub job. |
| 2408 | +# ## This config will limit to call only the lasted branches in each layer, |
| 2409 | +# ## empty will use default value 10 |
| 2410 | +# # max_subjob_per_layer = 10 |
| 2411 | +# |
| 2412 | +# ## Jobs to exclude from gathering |
| 2413 | +# # job_exclude = [ "job1", "job2/subjob1/subjob2", "job3/*"] |
| 2414 | +# |
| 2415 | +# ## Nodes to exclude from gathering |
| 2416 | +# # node_exclude = [ "node1", "node2" ] |
| 2417 | +# |
| 2418 | +# ## Worker pool for jenkins plugin only |
| 2419 | +# ## Empty this field will use default value 5 |
| 2420 | +# # max_connections = 5 |
| 2421 | + |
| 2422 | + |
2379 | 2423 | # # Read JMX metrics through Jolokia |
2380 | 2424 | # [[inputs.jolokia]] |
2381 | 2425 | # # DEPRECATED: the jolokia plugin has been deprecated in favor of the |
|
4438 | 4482 | # percentile_limit = 1000 |
4439 | 4483 |
|
4440 | 4484 |
|
4441 | | -# # Accepts syslog messages per RFC5425 |
| 4485 | +# # Accepts syslog messages following RFC5424 format with transports as per RFC5426, RFC5425, or RFC6587 |
4442 | 4486 | # [[inputs.syslog]] |
4443 | 4487 | # ## Specify an ip or hostname with port - eg., tcp://localhost:6514, tcp://10.0.0.1:6514 |
4444 | 4488 | # ## Protocol, address and port to host the syslog receiver. |
|
4466 | 4510 | # ## 0 means unlimited. |
4467 | 4511 | # # read_timeout = "5s" |
4468 | 4512 | # |
| 4513 | +# ## The framing technique with which it is expected that messages are transported (default = "octet-counting"). |
| 4514 | +# ## Whether the messages come using the octect-counting (RFC5425#section-4.3.1, RFC6587#section-3.4.1), |
| 4515 | +# ## or the non-transparent framing technique (RFC6587#section-3.4.2). |
| 4516 | +# ## Must be one of "octect-counting", "non-transparent". |
| 4517 | +# # framing = "octet-counting" |
| 4518 | +# |
| 4519 | +# ## The trailer to be expected in case of non-trasparent framing (default = "LF"). |
| 4520 | +# ## Must be one of "LF", or "NUL". |
| 4521 | +# # trailer = "LF" |
| 4522 | +# |
4469 | 4523 | # ## Whether to parse in best effort mode or not (default = false). |
4470 | 4524 | # ## By default best effort parsing is off. |
4471 | 4525 | # # best_effort = false |
|
4661 | 4715 | # # object_discovery_interval = "300s" |
4662 | 4716 | # |
4663 | 4717 | # ## timeout applies to any of the api request made to vcenter |
4664 | | -# # timeout = "20s" |
| 4718 | +# # timeout = "60s" |
4665 | 4719 | # |
4666 | 4720 | # ## Optional SSL Config |
4667 | 4721 | # # ssl_ca = "/path/to/cafile" |
|
0 commit comments