Skip to content

Commit

Permalink
news: add entry for #4472
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Szakacs <attila.szakacs@axoflow.com>
  • Loading branch information
alltilla committed May 12, 2023
1 parent 1e34f97 commit 296f5b9
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions news/feature-4472.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
Sending messages to CrowdStrike Falcon LogScale (Humio)

The `logscale-hec()` destination feeds LogScale via the [HEC API](https://library.humio.com/falcon-logscale/log-shippers-hec.html).

Minimal config:
```
destination d_logscale_hec {
logscale-hec(
url("http://localhost")
token("my-token")
);
};
```
Additional options include:
* event()
* index()
* source()
* sourcetype()
* host()
* time()
* timezone()
* fields()
* extra-headers()
* content-type()

By default the messages are sent in RFC5424 format with syslog sourcetype, which
executes the [syslog Parser](https://library.humio.com/falcon-logscale/parsers-built-in.html#parsers-built-in-parser-syslog) in LogScale.

The `logscale-hec-raw()` destination feeds LogScale via the [Raw HEC API](https://library.humio.com/falcon-logscale/log-shippers-hec.html#log-shippers-hec-raw).

Minimal config:
```
destination d_logscale_hec_raw {
logscale-hec-raw(
url("http://localhost")
token("my-token")
channel("my-channel")
);
};
```

0 comments on commit 296f5b9

Please sign in to comment.