Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

temporarily remove nginx e2e case #753

Merged
merged 2 commits into from
Mar 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/cn/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
* [分隔符](data-pipeline/processor/processor-delimiter.md)
* [键值对](data-pipeline/processor/processor-split-key-value.md)
* [多行切分](data-pipeline/processor/processor-split-log-regex.md)
* [云平台元数据](data-pipeline/processor/processor-cloudmeta.md)
* [聚合](data-pipeline/aggregator/README.md)
* [基础](data-pipeline/aggregator/aggregator-base.md)
* [上下文](data-pipeline/aggregator/aggregator-context.md)
Expand All @@ -83,7 +84,7 @@
* [ElasticSearch](data-pipeline/flusher/flusher-elasticsearch.md)
* [SLS](data-pipeline/flusher/flusher-sls.md)
* [标准输出/文件](data-pipeline/flusher/flusher-stdout.md)
* [OTLP日志](data-pipeline/flusher/flusher-otlp-log.md)
* [OTLP日志](data-pipeline/flusher/flusher-otlp.md)
* [Pulsar](data-pipeline/flusher/flusher-pulsar.md)
* [HTTP](data-pipeline/flusher/flusher-http.md)
* [加速](data-pipeline/accelerator/README.md)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## 版本

Alpha
[Alpha](../stability-level.md)

## 配置参数

Expand Down
6 changes: 5 additions & 1 deletion docs/cn/data-pipeline/processor/processor-cloudmeta.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

`processor_cloud_meta`插件可以添加为日志增加云平台元数据信息。

## 版本

[Alpha](../stability-level.md)

## 配置参数

| 参数 | 类型 | 是否必选 | 说明 |
Expand Down Expand Up @@ -80,7 +84,7 @@ flushers:
2023-03-13 20:42:04 {"content":"{\"a\":{\"b\":{}}}","Index":"6","instance_id_name":"id_xxx","instance_tag_prefix_tag_key":"tag_val","__time__":"1678711324"}
}

```
```

### json 模式

Expand Down
11 changes: 7 additions & 4 deletions docs/cn/data-pipeline/processor/processor-regex.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

`processor_regex processor`插件可以通过正则匹配的模式实现文本日志的字段提取。

## 版本

[Stable](../stability-level.md)

## 配置参数

| 参数 | 类型 | 是否必选 | 说明 |
Expand All @@ -23,13 +27,13 @@

* 输入

```
```bash
echo '127.0.0.1 - - [10/Aug/2017:14:57:51 +0800] "POST /PutData?Category=YunOsAccountOpLog" 0.024 18204 200 37 "-" "aliyun-sdk-java"' >> /home/test-log/reg.log
```

* 采集配置

```
```yaml
enable: true
inputs:
- Type: file_log
Expand Down Expand Up @@ -61,7 +65,7 @@ flushers:

* 输出

```
```json
{
"__tag__:__path__": "/home/test-log/reg.log",
"ip": "127.0.0.1",
Expand All @@ -77,4 +81,3 @@ flushers:
"__time__": "1657362166"
}
```

10 changes: 7 additions & 3 deletions docs/cn/data-pipeline/processor/processor-split-log-regex.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
`processor_split_log_regex processor`插件实现多行日志(例如Java程序日志)的采集。
备注:该插件必须设置为`processor`的第一个插件。

## 版本

[Stable](../stability-level.md)

## 配置参数

| 参数 | 类型 | 是否必选 | 说明 |
Expand All @@ -21,13 +25,13 @@

* 输入

```
```bash
echo -e '[2022-03-03 18:00:00] xxx1\nyyyyy\nzzzzzz\n[2022-03-03 18:00:01] xxx2\nyyyyy\nzzzzzz' >> /home/test-log/multiline.log
```

* 采集配置

```
```yaml
enable: true
inputs:
- Type: file_log
Expand All @@ -49,7 +53,7 @@ flushers:

* 输出

```
```json
{
"__tag__:__path__": "/home/test-log/multiline.log",
"content": "[2022-03-03 18:00:00] xxx1\nyyyyy\nzzzzzz\n",
Expand Down
29 changes: 0 additions & 29 deletions test/case/behavior/input_nginx/docker-compose.yaml

This file was deleted.

61 changes: 0 additions & 61 deletions test/case/behavior/input_nginx/ilogtail-e2e.yaml

This file was deleted.

49 changes: 0 additions & 49 deletions test/case/behavior/input_nginx/nginx_default.conf

This file was deleted.