Christian Haudum

Results 89 comments of Christian Haudum
trafficstars

I have to agree that the user experience could be better. Given the fact, that a valid `config.yml` only requires at minimum a single endpoint with a `host` field. Everything...

Hi @lyc0221 Sorry for the late reply. Could you be a bit more specific about your question? What exactly do you mean with HA mode? Thanks, Christian

With this small diff: ```diff diff --git a/src/crate/client/sqlalchemy/dialect.py b/src/crate/client/sqlalchemy/dialect.py index 1f51acf..31cc650 100644 --- a/src/crate/client/sqlalchemy/dialect.py +++ b/src/crate/client/sqlalchemy/dialect.py @@ -20,7 +20,7 @@ # software solely pursuant to the terms of the relevant...

> I'm not sure if it is a good idea to discard information implicitly doing the serialization. ```py dt.strftime("%Y-%m-%dT%H:%M:%S.%f%z") ``` This would not discard any information, but would add the...

> > This would not discard any information, but would add the TZ offset to the ISO string. > > You'd still loose part of the information eventually, even with...

> > * [ ] We chatted about deprecating non-boltdb index stores. Do we still want to do that? > > +1 for this. We should do this to remove...

The basic structure of the CEF format can be parsed using the `pattern` parser, like this: `pattern `CEF:|||||||` Example: ``` {filename="/var/log/cef.log"} |= "cat=Discovery" | pattern `CEF:|||||||` ``` However, if you...

> > However, if you want to parse also the key value pairs of the extension it can get tricky. Even though it looks very much like logfmt, it's not...