Adding upstream version 1.34.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e393c3af3f
commit
4978089aab
4963 changed files with 677545 additions and 0 deletions
227
plugins/processors/filepath/README.md
Normal file
227
plugins/processors/filepath/README.md
Normal file
|
@ -0,0 +1,227 @@
|
|||
# Filepath Processor Plugin
|
||||
|
||||
The `filepath` processor plugin maps certain go functions from
|
||||
[path/filepath](https://golang.org/pkg/path/filepath/) onto tag and field
|
||||
values. Values can be modified in place or stored in another key.
|
||||
|
||||
Implemented functions are:
|
||||
|
||||
* [Base](https://golang.org/pkg/path/filepath/#Base) (accessible through `[[processors.filepath.basename]]`)
|
||||
* [Rel](https://golang.org/pkg/path/filepath/#Rel) (accessible through `[[processors.filepath.rel]]`)
|
||||
* [Dir](https://golang.org/pkg/path/filepath/#Dir) (accessible through `[[processors.filepath.dir]]`)
|
||||
* [Clean](https://golang.org/pkg/path/filepath/#Clean) (accessible through `[[processors.filepath.clean]]`)
|
||||
* [ToSlash](https://golang.org/pkg/path/filepath/#ToSlash) (accessible through `[[processors.filepath.toslash]]`)
|
||||
|
||||
On top of that, the plugin provides an extra function to retrieve the final path
|
||||
component without its extension. This function is accessible through the
|
||||
`[[processors.filepath.stem]]` configuration item.
|
||||
|
||||
Please note that, in this implementation, these functions are processed in the
|
||||
order that they appear above( except for `stem` that is applied in the first
|
||||
place).
|
||||
|
||||
Specify the `tag` and/or `field` that you want processed in each section and
|
||||
optionally a `dest` if you want the result stored in a new tag or field.
|
||||
|
||||
If you plan to apply multiple transformations to the same `tag`/`field`, bear in
|
||||
mind the processing order stated above.
|
||||
|
||||
Telegraf minimum version: Telegraf 1.15.0
|
||||
|
||||
## Global configuration options <!-- @/docs/includes/plugin_config.md -->
|
||||
|
||||
In addition to the plugin-specific configuration settings, plugins support
|
||||
additional global and plugin configuration settings. These settings are used to
|
||||
modify metrics, tags, and field or create aliases and configure ordering, etc.
|
||||
See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
|
||||
|
||||
[CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins
|
||||
|
||||
## Configuration
|
||||
|
||||
```toml @sample.conf
|
||||
# Performs file path manipulations on tags and fields
|
||||
[[processors.filepath]]
|
||||
## Treat the tag value as a path and convert it to its last element, storing the result in a new tag
|
||||
# [[processors.filepath.basename]]
|
||||
# tag = "path"
|
||||
# dest = "basepath"
|
||||
|
||||
## Treat the field value as a path and keep all but the last element of path, typically the path's directory
|
||||
# [[processors.filepath.dirname]]
|
||||
# field = "path"
|
||||
|
||||
## Treat the tag value as a path, converting it to its the last element without its suffix
|
||||
# [[processors.filepath.stem]]
|
||||
# tag = "path"
|
||||
|
||||
## Treat the tag value as a path, converting it to the shortest path name equivalent
|
||||
## to path by purely lexical processing
|
||||
# [[processors.filepath.clean]]
|
||||
# tag = "path"
|
||||
|
||||
## Treat the tag value as a path, converting it to a relative path that is lexically
|
||||
## equivalent to the source path when joined to 'base_path'
|
||||
# [[processors.filepath.rel]]
|
||||
# tag = "path"
|
||||
# base_path = "/var/log"
|
||||
|
||||
## Treat the tag value as a path, replacing each separator character in path with a '/' character. Has only
|
||||
## effect on Windows
|
||||
# [[processors.filepath.toslash]]
|
||||
# tag = "path"
|
||||
```
|
||||
|
||||
## Considerations
|
||||
|
||||
### Clean Automatic Invocation
|
||||
|
||||
Even though `clean` is provided a standalone function, it is also invoked when
|
||||
using the `rel` and `dirname` functions, so there is no need to use it along
|
||||
with them.
|
||||
|
||||
That is:
|
||||
|
||||
```toml
|
||||
[[processors.filepath]]
|
||||
[[processors.filepath.dir]]
|
||||
tag = "path"
|
||||
[[processors.filepath.clean]]
|
||||
tag = "path"
|
||||
```
|
||||
|
||||
Is equivalent to:
|
||||
|
||||
```toml
|
||||
[[processors.filepath]]
|
||||
[[processors.filepath.dir]]
|
||||
tag = "path"
|
||||
```
|
||||
|
||||
### ToSlash Platform-specific Behavior
|
||||
|
||||
The effects of this function are only noticeable on Windows platforms, because
|
||||
of the underlying golang implementation.
|
||||
|
||||
## Examples
|
||||
|
||||
### Basename
|
||||
|
||||
```toml
|
||||
[[processors.filepath]]
|
||||
[[processors.filepath.basename]]
|
||||
tag = "path"
|
||||
```
|
||||
|
||||
```diff
|
||||
- my_metric,path="/var/log/batch/ajob.log" duration_seconds=134 1587920425000000000
|
||||
+ my_metric,path="ajob.log" duration_seconds=134 1587920425000000000
|
||||
```
|
||||
|
||||
### Dirname
|
||||
|
||||
```toml
|
||||
[[processors.filepath]]
|
||||
[[processors.filepath.dirname]]
|
||||
field = "path"
|
||||
dest = "folder"
|
||||
```
|
||||
|
||||
```diff
|
||||
- my_metric path="/var/log/batch/ajob.log",duration_seconds=134 1587920425000000000
|
||||
+ my_metric path="/var/log/batch/ajob.log",folder="/var/log/batch",duration_seconds=134 1587920425000000000
|
||||
```
|
||||
|
||||
### Stem
|
||||
|
||||
```toml
|
||||
[[processors.filepath]]
|
||||
[[processors.filepath.stem]]
|
||||
tag = "path"
|
||||
```
|
||||
|
||||
```diff
|
||||
- my_metric,path="/var/log/batch/ajob.log" duration_seconds=134 1587920425000000000
|
||||
+ my_metric,path="ajob" duration_seconds=134 1587920425000000000
|
||||
```
|
||||
|
||||
### Clean
|
||||
|
||||
```toml
|
||||
[[processors.filepath]]
|
||||
[[processors.filepath.clean]]
|
||||
tag = "path"
|
||||
```
|
||||
|
||||
```diff
|
||||
- my_metric,path="/var/log/dummy/../batch//ajob.log" duration_seconds=134 1587920425000000000
|
||||
+ my_metric,path="/var/log/batch/ajob.log" duration_seconds=134 1587920425000000000
|
||||
```
|
||||
|
||||
### Rel
|
||||
|
||||
```toml
|
||||
[[processors.filepath]]
|
||||
[[processors.filepath.rel]]
|
||||
tag = "path"
|
||||
base_path = "/var/log"
|
||||
```
|
||||
|
||||
```diff
|
||||
- my_metric,path="/var/log/batch/ajob.log" duration_seconds=134 1587920425000000000
|
||||
+ my_metric,path="batch/ajob.log" duration_seconds=134 1587920425000000000
|
||||
```
|
||||
|
||||
### ToSlash
|
||||
|
||||
```toml
|
||||
[[processors.filepath]]
|
||||
[[processors.filepath.rel]]
|
||||
tag = "path"
|
||||
```
|
||||
|
||||
```diff
|
||||
- my_metric,path="\var\log\batch\ajob.log" duration_seconds=134 1587920425000000000
|
||||
+ my_metric,path="/var/log/batch/ajob.log" duration_seconds=134 1587920425000000000
|
||||
```
|
||||
|
||||
## Processing paths from tail plugin
|
||||
|
||||
This plugin can be used together with the [tail input
|
||||
plugin](../../inputs/tail/README.md) to make modifications to the `path` tag
|
||||
injected for every file.
|
||||
|
||||
Scenario:
|
||||
|
||||
* A log file `/var/log/myjobs/mysql_backup.log`, containing logs for a job execution. Whenever the job ends, a line is
|
||||
written to the log file following this format: `2020-04-05 11:45:21 total time execution: 70 seconds`
|
||||
* We want to generate a measurement that captures the duration of the script as a field and includes the `path` as a
|
||||
tag
|
||||
* We are interested in the filename without its extensions, since it might be enough information for plotting our
|
||||
execution times in a dashboard
|
||||
* Just in case, we don't want to override the original path (if for some reason we end up having duplicates we might
|
||||
want this information)
|
||||
|
||||
For this purpose, we will use the `tail` input plugin, the `grok` parser plugin
|
||||
and the `filepath` processor.
|
||||
|
||||
```toml
|
||||
# Performs file path manipulations on tags and fields
|
||||
[[inputs.tail]]
|
||||
files = ["/var/log/myjobs/**.log"]
|
||||
data_format = "grok"
|
||||
grok_patterns = ['%{TIMESTAMP_ISO8601:timestamp:ts-"2006-01-02 15:04:05"} total time execution: %{NUMBER:duration_seconds:int}']
|
||||
name_override = "myjobs"
|
||||
|
||||
[[processors.filepath]]
|
||||
[[processors.filepath.stem]]
|
||||
tag = "path"
|
||||
dest = "stempath"
|
||||
```
|
||||
|
||||
The resulting output for a job taking 70 seconds for the mentioned log file
|
||||
would look like:
|
||||
|
||||
```text
|
||||
myjobs_duration_seconds,host="my-host",path="/var/log/myjobs/mysql_backup.log",stempath="mysql_backup" 70 1587920425000000000
|
||||
```
|
125
plugins/processors/filepath/filepath.go
Normal file
125
plugins/processors/filepath/filepath.go
Normal file
|
@ -0,0 +1,125 @@
|
|||
//go:generate ../../../tools/readme_config_includer/generator
|
||||
package filepath
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/influxdata/telegraf"
|
||||
"github.com/influxdata/telegraf/plugins/processors"
|
||||
)
|
||||
|
||||
//go:embed sample.conf
|
||||
var sampleConfig string
|
||||
|
||||
type Options struct {
|
||||
BaseName []BaseOpts `toml:"basename"`
|
||||
DirName []BaseOpts `toml:"dirname"`
|
||||
Stem []BaseOpts
|
||||
Clean []BaseOpts
|
||||
Rel []RelOpts
|
||||
ToSlash []BaseOpts `toml:"toslash"`
|
||||
|
||||
Log telegraf.Logger `toml:"-"`
|
||||
}
|
||||
|
||||
type ProcessorFunc func(s string) string
|
||||
|
||||
// BaseOpts contains options applicable to every function
|
||||
type BaseOpts struct {
|
||||
Field string
|
||||
Tag string
|
||||
Dest string
|
||||
}
|
||||
|
||||
type RelOpts struct {
|
||||
BaseOpts
|
||||
BasePath string
|
||||
}
|
||||
|
||||
// applyFunc applies the specified function to the metric
|
||||
func applyFunc(bo BaseOpts, fn ProcessorFunc, metric telegraf.Metric) {
|
||||
if bo.Tag != "" {
|
||||
if v, ok := metric.GetTag(bo.Tag); ok {
|
||||
targetTag := bo.Tag
|
||||
|
||||
if bo.Dest != "" {
|
||||
targetTag = bo.Dest
|
||||
}
|
||||
metric.AddTag(targetTag, fn(v))
|
||||
}
|
||||
}
|
||||
|
||||
if bo.Field != "" {
|
||||
if v, ok := metric.GetField(bo.Field); ok {
|
||||
targetField := bo.Field
|
||||
|
||||
if bo.Dest != "" {
|
||||
targetField = bo.Dest
|
||||
}
|
||||
|
||||
// Only string fields are considered
|
||||
if v, ok := v.(string); ok {
|
||||
metric.AddField(targetField, fn(v))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func stemFilePath(path string) string {
|
||||
return strings.TrimSuffix(filepath.Base(path), filepath.Ext(path))
|
||||
}
|
||||
|
||||
// processMetric processes fields and tag values for a given metric applying the selected transformations
|
||||
func (o *Options) processMetric(metric telegraf.Metric) {
|
||||
// Stem
|
||||
for _, v := range o.Stem {
|
||||
applyFunc(v, stemFilePath, metric)
|
||||
}
|
||||
// Basename
|
||||
for _, v := range o.BaseName {
|
||||
applyFunc(v, filepath.Base, metric)
|
||||
}
|
||||
// Rel
|
||||
for _, v := range o.Rel {
|
||||
applyFunc(v.BaseOpts, func(s string) string {
|
||||
relPath, err := filepath.Rel(v.BasePath, s)
|
||||
if err != nil {
|
||||
o.Log.Errorf("filepath processor failed to process relative filepath %s: %v", s, err)
|
||||
return v.BasePath
|
||||
}
|
||||
return relPath
|
||||
}, metric)
|
||||
}
|
||||
// Dirname
|
||||
for _, v := range o.DirName {
|
||||
applyFunc(v, filepath.Dir, metric)
|
||||
}
|
||||
// Clean
|
||||
for _, v := range o.Clean {
|
||||
applyFunc(v, filepath.Clean, metric)
|
||||
}
|
||||
// ToSlash
|
||||
for _, v := range o.ToSlash {
|
||||
applyFunc(v, filepath.ToSlash, metric)
|
||||
}
|
||||
}
|
||||
|
||||
func (*Options) SampleConfig() string {
|
||||
return sampleConfig
|
||||
}
|
||||
|
||||
func (o *Options) Apply(in ...telegraf.Metric) []telegraf.Metric {
|
||||
for _, m := range in {
|
||||
o.processMetric(m)
|
||||
}
|
||||
|
||||
return in
|
||||
}
|
||||
|
||||
func init() {
|
||||
processors.Add("filepath", func() telegraf.Processor {
|
||||
return &Options{}
|
||||
})
|
||||
}
|
134
plugins/processors/filepath/filepath_test.go
Normal file
134
plugins/processors/filepath/filepath_test.go
Normal file
|
@ -0,0 +1,134 @@
|
|||
//go:build !windows
|
||||
|
||||
package filepath
|
||||
|
||||
import (
|
||||
"sync"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/influxdata/telegraf"
|
||||
"github.com/influxdata/telegraf/metric"
|
||||
"github.com/influxdata/telegraf/testutil"
|
||||
)
|
||||
|
||||
var samplePath = "/my/test//c/../path/file.log"
|
||||
|
||||
func TestOptions_Apply(t *testing.T) {
|
||||
tests := []testCase{
|
||||
{
|
||||
name: "Smoke Test",
|
||||
o: newOptions("/my/test/"),
|
||||
inputMetrics: getSmokeTestInputMetrics(samplePath),
|
||||
expectedMetrics: []telegraf.Metric{
|
||||
testutil.MustMetric(
|
||||
smokeMetricName,
|
||||
map[string]string{
|
||||
"baseTag": "file.log",
|
||||
"dirTag": "/my/test/path",
|
||||
"stemTag": "file",
|
||||
"cleanTag": "/my/test/path/file.log",
|
||||
"relTag": "path/file.log",
|
||||
"slashTag": "/my/test//c/../path/file.log",
|
||||
},
|
||||
map[string]interface{}{
|
||||
"baseField": "file.log",
|
||||
"dirField": "/my/test/path",
|
||||
"stemField": "file",
|
||||
"cleanField": "/my/test/path/file.log",
|
||||
"relField": "path/file.log",
|
||||
"slashField": "/my/test//c/../path/file.log",
|
||||
},
|
||||
time.Now()),
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "Test Dest Option",
|
||||
o: &Options{
|
||||
BaseName: []BaseOpts{
|
||||
{
|
||||
Field: "sourcePath",
|
||||
Tag: "sourcePath",
|
||||
Dest: "basePath",
|
||||
},
|
||||
}},
|
||||
inputMetrics: []telegraf.Metric{
|
||||
testutil.MustMetric(
|
||||
"testMetric",
|
||||
map[string]string{"sourcePath": samplePath},
|
||||
map[string]interface{}{"sourcePath": samplePath},
|
||||
time.Now()),
|
||||
},
|
||||
expectedMetrics: []telegraf.Metric{
|
||||
testutil.MustMetric(
|
||||
"testMetric",
|
||||
map[string]string{"sourcePath": samplePath, "basePath": "file.log"},
|
||||
map[string]interface{}{"sourcePath": samplePath, "basePath": "file.log"},
|
||||
time.Now()),
|
||||
},
|
||||
},
|
||||
}
|
||||
runTestOptionsApply(t, tests)
|
||||
}
|
||||
|
||||
func TestTracking(t *testing.T) {
|
||||
inputRaw := []telegraf.Metric{
|
||||
metric.New(
|
||||
"test",
|
||||
map[string]string{"sourcePath": samplePath},
|
||||
map[string]interface{}{"sourcePath": samplePath},
|
||||
time.Unix(0, 0),
|
||||
),
|
||||
}
|
||||
|
||||
expected := []telegraf.Metric{
|
||||
metric.New(
|
||||
"test",
|
||||
map[string]string{"sourcePath": samplePath, "basePath": "file.log"},
|
||||
map[string]interface{}{"sourcePath": samplePath, "basePath": "file.log"},
|
||||
time.Unix(0, 0),
|
||||
),
|
||||
}
|
||||
|
||||
var mu sync.Mutex
|
||||
delivered := make([]telegraf.DeliveryInfo, 0, len(inputRaw))
|
||||
notify := func(di telegraf.DeliveryInfo) {
|
||||
mu.Lock()
|
||||
defer mu.Unlock()
|
||||
delivered = append(delivered, di)
|
||||
}
|
||||
|
||||
input := make([]telegraf.Metric, 0, len(inputRaw))
|
||||
for _, m := range inputRaw {
|
||||
tm, _ := metric.WithTracking(m, notify)
|
||||
input = append(input, tm)
|
||||
}
|
||||
|
||||
plugin := &Options{
|
||||
BaseName: []BaseOpts{
|
||||
{
|
||||
Field: "sourcePath",
|
||||
Tag: "sourcePath",
|
||||
Dest: "basePath",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
// Process expected metrics and compare with resulting metrics
|
||||
actual := plugin.Apply(input...)
|
||||
testutil.RequireMetricsEqual(t, expected, actual)
|
||||
|
||||
// Simulate output acknowledging delivery
|
||||
for _, m := range actual {
|
||||
m.Accept()
|
||||
}
|
||||
|
||||
// Check delivery
|
||||
require.Eventuallyf(t, func() bool {
|
||||
mu.Lock()
|
||||
defer mu.Unlock()
|
||||
return len(input) == len(delivered)
|
||||
}, time.Second, 100*time.Millisecond, "%d delivered but %d expected", len(delivered), len(expected))
|
||||
}
|
100
plugins/processors/filepath/filepath_test_helpers.go
Normal file
100
plugins/processors/filepath/filepath_test_helpers.go
Normal file
|
@ -0,0 +1,100 @@
|
|||
package filepath
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/influxdata/telegraf"
|
||||
"github.com/influxdata/telegraf/testutil"
|
||||
)
|
||||
|
||||
const smokeMetricName = "testmetric"
|
||||
|
||||
type testCase struct {
|
||||
name string
|
||||
o *Options
|
||||
inputMetrics []telegraf.Metric
|
||||
expectedMetrics []telegraf.Metric
|
||||
}
|
||||
|
||||
func newOptions(basePath string) *Options {
|
||||
return &Options{
|
||||
BaseName: []BaseOpts{
|
||||
{
|
||||
Field: "baseField",
|
||||
Tag: "baseTag",
|
||||
},
|
||||
},
|
||||
DirName: []BaseOpts{
|
||||
{
|
||||
Field: "dirField",
|
||||
Tag: "dirTag",
|
||||
},
|
||||
},
|
||||
Stem: []BaseOpts{
|
||||
{
|
||||
Field: "stemField",
|
||||
Tag: "stemTag",
|
||||
},
|
||||
},
|
||||
Clean: []BaseOpts{
|
||||
{
|
||||
Field: "cleanField",
|
||||
Tag: "cleanTag",
|
||||
},
|
||||
},
|
||||
Rel: []RelOpts{
|
||||
{
|
||||
BaseOpts: BaseOpts{
|
||||
Field: "relField",
|
||||
Tag: "relTag",
|
||||
},
|
||||
BasePath: basePath,
|
||||
},
|
||||
},
|
||||
ToSlash: []BaseOpts{
|
||||
{
|
||||
Field: "slashField",
|
||||
Tag: "slashTag",
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
func getSampleMetricTags(path string) map[string]string {
|
||||
return map[string]string{
|
||||
"baseTag": path,
|
||||
"dirTag": path,
|
||||
"stemTag": path,
|
||||
"cleanTag": path,
|
||||
"relTag": path,
|
||||
"slashTag": path,
|
||||
}
|
||||
}
|
||||
|
||||
func getSampleMetricFields(path string) map[string]interface{} {
|
||||
return map[string]interface{}{
|
||||
"baseField": path,
|
||||
"dirField": path,
|
||||
"stemField": path,
|
||||
"cleanField": path,
|
||||
"relField": path,
|
||||
"slashField": path,
|
||||
}
|
||||
}
|
||||
|
||||
func getSmokeTestInputMetrics(path string) []telegraf.Metric {
|
||||
return []telegraf.Metric{
|
||||
testutil.MustMetric(smokeMetricName, getSampleMetricTags(path), getSampleMetricFields(path),
|
||||
time.Now()),
|
||||
}
|
||||
}
|
||||
|
||||
func runTestOptionsApply(t *testing.T, tests []testCase) {
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
got := tt.o.Apply(tt.inputMetrics...)
|
||||
testutil.RequireMetricsEqual(t, tt.expectedMetrics, got, testutil.SortMetrics(), testutil.IgnoreTime())
|
||||
})
|
||||
}
|
||||
}
|
43
plugins/processors/filepath/filepath_windows_test.go
Normal file
43
plugins/processors/filepath/filepath_windows_test.go
Normal file
|
@ -0,0 +1,43 @@
|
|||
package filepath
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/influxdata/telegraf"
|
||||
"github.com/influxdata/telegraf/testutil"
|
||||
)
|
||||
|
||||
var samplePath = "c:\\my\\test\\\\c\\..\\path\\file.log"
|
||||
|
||||
func TestOptions_Apply(t *testing.T) {
|
||||
tests := []testCase{
|
||||
{
|
||||
name: "Smoke Test",
|
||||
o: newOptions("c:\\my\\test\\"),
|
||||
inputMetrics: getSmokeTestInputMetrics(samplePath),
|
||||
expectedMetrics: []telegraf.Metric{
|
||||
testutil.MustMetric(
|
||||
smokeMetricName,
|
||||
map[string]string{
|
||||
"baseTag": "file.log",
|
||||
"dirTag": "c:\\my\\test\\path",
|
||||
"stemTag": "file",
|
||||
"cleanTag": "c:\\my\\test\\path\\file.log",
|
||||
"relTag": "path\\file.log",
|
||||
"slashTag": "c:/my/test//c/../path/file.log",
|
||||
},
|
||||
map[string]interface{}{
|
||||
"baseField": "file.log",
|
||||
"dirField": "c:\\my\\test\\path",
|
||||
"stemField": "file",
|
||||
"cleanField": "c:\\my\\test\\path\\file.log",
|
||||
"relField": "path\\file.log",
|
||||
"slashField": "c:/my/test//c/../path/file.log",
|
||||
},
|
||||
time.Now()),
|
||||
},
|
||||
},
|
||||
}
|
||||
runTestOptionsApply(t, tests)
|
||||
}
|
30
plugins/processors/filepath/sample.conf
Normal file
30
plugins/processors/filepath/sample.conf
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Performs file path manipulations on tags and fields
|
||||
[[processors.filepath]]
|
||||
## Treat the tag value as a path and convert it to its last element, storing the result in a new tag
|
||||
# [[processors.filepath.basename]]
|
||||
# tag = "path"
|
||||
# dest = "basepath"
|
||||
|
||||
## Treat the field value as a path and keep all but the last element of path, typically the path's directory
|
||||
# [[processors.filepath.dirname]]
|
||||
# field = "path"
|
||||
|
||||
## Treat the tag value as a path, converting it to its the last element without its suffix
|
||||
# [[processors.filepath.stem]]
|
||||
# tag = "path"
|
||||
|
||||
## Treat the tag value as a path, converting it to the shortest path name equivalent
|
||||
## to path by purely lexical processing
|
||||
# [[processors.filepath.clean]]
|
||||
# tag = "path"
|
||||
|
||||
## Treat the tag value as a path, converting it to a relative path that is lexically
|
||||
## equivalent to the source path when joined to 'base_path'
|
||||
# [[processors.filepath.rel]]
|
||||
# tag = "path"
|
||||
# base_path = "/var/log"
|
||||
|
||||
## Treat the tag value as a path, replacing each separator character in path with a '/' character. Has only
|
||||
## effect on Windows
|
||||
# [[processors.filepath.toslash]]
|
||||
# tag = "path"
|
Loading…
Add table
Add a link
Reference in a new issue