Skip to content

Commit 2ee0c66

Browse files
authored
Merge branch 'master' into patch-1
Signed-off-by: esmerel <[email protected]>
2 parents 327d9bf + 467344e commit 2ee0c66

File tree

214 files changed

+7348
-1442
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+7348
-1442
lines changed

.gitbook.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ redirects:
2121
input/netif: ./pipeline/inputs/network-io-metrics.md
2222
input/proc: ./pipeline/inputs/process.md
2323
input/random: ./pipeline/inputs/random.md
24+
input/splunk: ./pipeline/inputs/splunk.md
2425
input/serial: ./pipeline/inputs/serial-interface.md
2526
#inputs/statsd: ./pipeline/inputs/
2627
input/stdin: ./pipeline/inputs/standard-input.md
@@ -29,6 +30,7 @@ redirects:
2930
input/tail: ./pipeline/inputs/tail.md
3031
input/tcp: ./pipeline/inputs/tcp.md
3132
input/thermal: ./pipeline/inputs/thermal.md
33+
input/udp: ./pipeline/inputs/udp.md
3234
input/winlog: ./pipeline/inputs/windows-event-log.md
3335
input/winevtlog: ./pipeline/inputs/windows-event-log-winevtlog.md
3436

@@ -51,9 +53,11 @@ redirects:
5153
output/azure_kusto: ./pipeline/outputs/azure_kusto.md
5254
output/bigquery: ./pipeline/outputs/bigquery.md
5355
output/counter: ./pipeline/outputs/counter.md
56+
output/chronicle: ./pipeline/outputs/chronicle.md
5457
output/cloudwatch: ./pipeline/outputs/cloudwatch.md
5558
output/datadog: ./pipeline/outputs/datadog.md
5659
output/es: ./pipeline/outputs/elasticsearch.md
60+
output/fabric: ./pipeline/outputs/azure_kusto.md
5761
output/file: ./pipeline/outputs/file.md
5862
output/firehose: ./pipeline/outputs/firehose.md
5963
output/flowcounter: ./pipeline/outputs/flowcounter.md
@@ -73,3 +77,6 @@ redirects:
7377
output/stdout: ./pipeline/outputs/standard-output.md
7478
output/tcp: ./pipeline/outputs/tcp-and-tls.md
7579
output/td: ./pipeline/outputs/treasure-data.md
80+
81+
# Processors
82+
processor/metrics_selector: ./pipeline/processors/metrics_selector.md

.gitbook/assets/3.0.png

139 KB
Loading

.gitbook/assets/3.1.png

1.29 MB
Loading
21.4 KB
Loading

.gitbook/assets/image.png

-162 KB
Binary file not shown.
6.22 MB
Loading

.github/workflows/cron-stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
issues: write
1212
pull-requests: write
1313
steps:
14-
- uses: actions/stale@v8
14+
- uses: actions/stale@v9
1515
with:
1616
repo-token: ${{ secrets.GITHUB_TOKEN }}
1717
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days. Maintainers can add the `exempt-stale` label.'

.github/workflows/pr-lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
name: PR - Actionlint
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- run: |
1313
echo "::add-matcher::.github/actionlint-matcher.json"
1414
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
@@ -19,5 +19,5 @@ jobs:
1919
runs-on: ubuntu-latest
2020
name: PR - Shellcheck
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- uses: ludeeus/action-shellcheck@master

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ _book/*
22
node_modules/*
33
.gitignore
44
old/*
5-
5+
.DS_Store

.vale.ini

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
StylesPath = vale-styles
2+
MinAlertLevel = suggestion # suggestion, warning or error
3+
4+
[formats]
5+
mdx = md
6+
7+
[*.{md,markdown,txt,htm,html}]
8+
BasedOnStyles = FluentBit
9+
IgnoredScopes = tt, code
10+
11+
FluentBit.Terms = YES
12+
FluentBit.Titles = YES
13+
FluentBit.FutureTense = NO
14+
FluentBit.Headings = NO
15+
FluentBit.Passive = NO
16+
FluentBit.Subjunctive = NO
17+
FluentBit.Colons = NO

0 commit comments

Comments
 (0)