Skip to content

Commit

Permalink
Fix rename docs
Browse files Browse the repository at this point in the history
  • Loading branch information
HeadHunter483 committed Feb 21, 2025
1 parent 0a071be commit dba8d00
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 28 deletions.
14 changes: 7 additions & 7 deletions plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ pipelines:

Input event:

```json
```
{
"my_object": {
"field": {
Expand All @@ -562,11 +562,11 @@ Input event:

Output event:

```json
```
{
"my_object": {
"field": {
"new_sub_field":"value" // renamed
"new_sub_field":"value" # renamed
}
}
}
Expand All @@ -587,7 +587,7 @@ pipelines:

Input event:

```json
```
{
"_HOSTNAME": "example-host",
"__REALTIME_TIMESTAMP": "1739797379239590"
Expand All @@ -596,10 +596,10 @@ Input event:

Output event:

```json
```
{
"host": "example-host", // renamed
"ts": "1739797379239590" // renamed
"host": "example-host", # renamed
"ts": "1739797379239590" # renamed
}
```

Expand Down
14 changes: 7 additions & 7 deletions plugin/action/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ pipelines:

Input event:

```json
```
{
"my_object": {
"field": {
Expand All @@ -405,11 +405,11 @@ Input event:

Output event:

```json
```
{
"my_object": {
"field": {
"new_sub_field":"value" // renamed
"new_sub_field":"value" # renamed
}
}
}
Expand All @@ -430,7 +430,7 @@ pipelines:

Input event:

```json
```
{
"_HOSTNAME": "example-host",
"__REALTIME_TIMESTAMP": "1739797379239590"
Expand All @@ -439,10 +439,10 @@ Input event:

Output event:

```json
```
{
"host": "example-host", // renamed
"ts": "1739797379239590" // renamed
"host": "example-host", # renamed
"ts": "1739797379239590" # renamed
}
```

Expand Down
14 changes: 7 additions & 7 deletions plugin/action/rename/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pipelines:

Input event:

```json
```
{
"my_object": {
"field": {
Expand All @@ -34,11 +34,11 @@ Input event:

Output event:

```json
```
{
"my_object": {
"field": {
"new_sub_field":"value" // renamed
"new_sub_field":"value" # renamed
}
}
}
Expand All @@ -59,7 +59,7 @@ pipelines:

Input event:

```json
```
{
"_HOSTNAME": "example-host",
"__REALTIME_TIMESTAMP": "1739797379239590"
Expand All @@ -68,10 +68,10 @@ Input event:

Output event:

```json
```
{
"host": "example-host", // renamed
"ts": "1739797379239590" // renamed
"host": "example-host", # renamed
"ts": "1739797379239590" # renamed
}
```

Expand Down
14 changes: 7 additions & 7 deletions plugin/action/rename/rename.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pipelines:
Input event:
```json
```
{
"my_object": {
"field": {
Expand All @@ -42,11 +42,11 @@ Input event:
Output event:
```json
```
{
"my_object": {
"field": {
"new_sub_field":"value" // renamed
"new_sub_field":"value" # renamed
}
}
}
Expand All @@ -67,7 +67,7 @@ pipelines:
Input event:
```json
```
{
"_HOSTNAME": "example-host",
"__REALTIME_TIMESTAMP": "1739797379239590"
Expand All @@ -76,10 +76,10 @@ Input event:
Output event:
```json
```
{
"host": "example-host", // renamed
"ts": "1739797379239590" // renamed
"host": "example-host", # renamed
"ts": "1739797379239590" # renamed
}
```
}*/
Expand Down

0 comments on commit dba8d00

Please sign in to comment.