Getting no results with DB Connect
Hello,Given
- Successful DB connection config (attached)
- DB collector config (attached)
I get no results when i run the collector (attached)What is wrong or what is missing? Appreciate your support.
Best Answers
-
Please try this:
`select * from RUNS;`
Instead of
'select * from RUNS;'
Can you verify this SQL query also return results independent of Cribl?
If all of the above checks .. and you still do not get results .. try:
- Last time I saw this issue the customer upgraded the Leader to a version that supports Postgres, but not the Workers
- Make sure you commit and deploy
0 -
the issue lied in the syntax itself, so instead of
select * from RUNS ;
it should have beenselect * from "RUNS" ;
0
Answers
-
Please try this:
`select * from RUNS;`
Instead of
'select * from RUNS;'
Can you verify this SQL query also return results independent of Cribl?
If all of the above checks .. and you still do not get results .. try:
- Last time I saw this issue the customer upgraded the Leader to a version that supports Postgres, but not the Workers
- Make sure you commit and deploy
0 -
also check for any errors in the logs in cribl and/or auth errors in the postgres db logs.
0 -
the issue lied in the syntax itself, so instead of
select * from RUNS ;
it should have beenselect * from "RUNS" ;
0