-
Notifications
You must be signed in to change notification settings - Fork 402
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: http flusher add Convert.Separator config field (#616)
* feat: http flusher add Convert.Separator config field * fix: add docs for http flusher convert separator * feat: add docs for raw protocol
- Loading branch information
1 parent
6cb1ff3
commit 77b65fb
Showing
9 changed files
with
249 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# raw协议 | ||
|
||
raw协议在内存中对应的数据结构定义如下: | ||
|
||
## ByteArray & GroupInfo | ||
|
||
传输数据的原始字节流,是`PipelineEvent`的一种实现。 | ||
|
||
```go | ||
type ByteArray []byte | ||
``` | ||
|
||
传输数据的标签及元数据信息,简单的key/value对。 | ||
|
||
```go | ||
type GroupInfo struct { | ||
Metadata Metadata | ||
Tags Tags | ||
} | ||
``` | ||
|
||
## PipelineGroupEvents | ||
传输数据整体。 | ||
|
||
```go | ||
type PipelineGroupEvents struct { | ||
Group *GroupInfo | ||
Events []PipelineEvent | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters