You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[[inputs.postgresql_extensible]]
alias = "server1"address = "postgres://posgres:postgres@localhost:5432/postgres?default_transaction_read_only=on&application_name=telegraf-pgexport"
[[inputs.postgresql_extensible.query]]
measurement="pg_version"sqlquery = """ select current_database() as datname, 1 as gauge;"""....repeat 100 times...
Logs from Telegraf
2023-08-21T17:50:00Z W! [inputs.postgresql_extensible::server1] Collection took longer than expected; not complete after interval of 1m0s
2023-08-21T17:50:00Z W! [inputs.postgresql_extensible::server2] Collection took longer than expected; not complete after interval of 1m0s
2023-08-21T17:50:00Z W! [inputs.postgresql_extensible::server3] Collection took longer than expected; not complete after interval of 1m0s
...
Relevant telegraf.conf
Logs from Telegraf
System info
bbc6322
Docker
No response
Steps to reproduce
run on linux and limit lockable memory to small value:
ulimit -l
should report 16 . Useulimit
to lower maximum lockable memory if it is higher.Also we run telegraf with the
GOMAXPROCS=1
env var and single CPU allocated. Running it withcpuset
should achieve similar setupExpected behavior
In the order of preference:
Actual behavior
plugin gather goroutnes deadlock most with one of following (first number is number of goroutines with the same stacktrace)
And one goroutine with following:
Additional info
No response
The text was updated successfully, but these errors were encountered: