1

自分の会社で独自のコールドフュージョン フレームワークの役割を果たそうとする試みの一環として、ログ ファイルに基づいて上位のユーザー/サーバー エラーを要約できるツールの種類を確認したいと考えています...

サーバー モニターを使用することをあきらめ、いくつかのデバッグ テンプレートを試しましたが、サーバーにパフォーマンスの負荷の問題を追加することなく、運用/開発の主要な問題領域を特定するのに役立つソリューションが必要なようです。 ..

では、coldfusion 8 のログ ファイルを分析し、上位のユーザー エラーとサーバー エラーを示す概要を作成するための無料、オープン ソース、または商用のソリューションをご存知ですか?

ありがとう..

4

2 に答える 2

1

You could write your own, it's not hard really. the log files are in plain text so parsing the information is pretty simple. I've made a basic mail log reader when I needed an easy way to see if mail from an application was being sent.

Lucky for you it looks like someone already did it. You may be able to use it out of the box or you may have to tweek it a bit but the code is all there.

http://jehiah.cz/archive/coldfusion-error-log-viewer

The comments in the blog also point to a product, cfmxtrace. http://www.vanzwijndregt.com/trace/cfmxtrace.html

于 2010-01-15T14:43:34.940 に答える
1

Well I don't know anything specific to ColdFusion, but there are lots of log parsers out there can can be configured for coldfusion (in the end it just uses Log4J anyway).

Lots of people like Apache Chainsaw: http://logging.apache.org/chainsaw/index.html It's free obviously. and built for Log4j

于 2010-01-14T19:27:04.563 に答える