如何从logstash中的outputfile中删除点

时间:2015-07-09 14:19:08

标签: logstash

我正在尝试删除输入文件中的点,以免被复制到输出文件。有人可以帮助我吗

输入文件:_ABC ........ null 预期输出:_ABC null

1 个答案:

答案 0 :(得分:0)

如果你正在使用grok {},你需要在你的模式中逃避它们:" \。"。

如果你只想摆脱一系列时期,mutate->gsub可以做到:

$index = @file_get_contents( $this->api_url );

// check for HTTP 404 response (file_get_contents() returns false when encountering 404)
// this usually means:
// 1) the store URL is not correct (missing sub-directory path, etc)
// 2) pretty permalinks are disabled
if ( false === $index ) {
    throw new WC_API_Client_Exception( sprintf( 'Invalid URL, no WC API found at %s -- ensure your store URL is correct and pretty permalinks are enabled.', $this->api_url ), 404 );