Anyone had much experience with the Sumologic tap ...
# troubleshooting
j
Anyone had much experience with the Sumologic tap or API? No matter I how I format my query I get:
Copy code
"status" : 400,
  "id" : "H0PEY-I29NO-66SV4",
  "code" : "searchjob.generic",
  "message" : "Generic error."
which obviously the most useless error code I’ve seen in my life. I have to assume it has something to do with the format of my query, but I can’t for the life of me figure out what I’m doing wrong query that works in the Sumologic UI (with obvious substitutions):
Copy code
_sourceCategory=category/name/here
| where logger_name = "com.foo.baz.spam.eggs.potatoes"
| count by account_name,account_id,field_3,field_4
I concatenate it to a single line to fit in the
meltano.yml
file
v
I wonder if their ui uses the same api, then you could use chrome network tools and see how they format the api call, and then diff that to yours? Just an idea!