Error: Too many requests. Please try again later. x

XPath検証

入力式に対してXMLデータの一致する部分を検証し、抽出するための無料ツールです。指定されたパラメーターに一致する結果オブジェクトが、出力結果ボックスに表示されます。使用法については、x-pathの例を参照してください。

アプリケーションパフォーマンス原因の根本原因を可視化するには、Site24x7 APMインサイトを使用してください。

世界中のロケーションからアップタイムを確認

メール配信監視

SMTPサーバー監視

POP/IMAPサーバー監視

AI駆動のアラート

Microsoft Exchangeサーバー監視

メールサーバー関連の問題をトラブルシュート

外部依存状況の把握

カスタムコンポーネントとメトリックの監視

XPath Examples

Following are few example xpath expressions and results for the above sample xml data

XPath Expression Description Result
/ Select the document node
/store/chocolates/choco Select all the 'choco' elements, which are the direct children of 'chocolates' node
//name[@no] Select all the 'name' elements with 'no' attribute
/store//snack[last()] Select the last snack element
sum(//price) Select the sum of price element values
string-length(//choco[1]/name) Select the length of the first 'choco' element's name value
//choco[1]/name/text() Select the textual value of first 'choco' element's name
count(/store//choco) Select the count of 'choco' elements