1

OstrosLogViewer次のようなkarafログファイルで解析したい:

15:01:56,405 | INFO  | Framework stop   | .osgi.CXFExtensionBundleListener  112 | 101 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 174
15:01:56,405 | INFO  | Framework stop   | .osgi.CXFExtensionBundleListener  112 | 101 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 111
15:01:56,405 | INFO  | Framework stop   | .osgi.CXFExtensionBundleListener  112 | 101 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 175

ログパターンは次のとおりです。

%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32C %4L | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n

パターンを作成しました。しかし、解析は失敗します。

type=log4j-native
conversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32C %4L | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
name="Test"
charset=UTF-8

私も以下で試しました。しかし、どちらも解析しません。

type=log4j
pattern=TIMESTAMP|LEVEL|THREAD|CLASS|BUNDLEMESSAGE
dateFormat=HH:mm:ss,SSS
name="TEST2"
charset=UTF-8
4

1 に答える 1