Google Stackdriverの高度なフィルターでは、次のようなものを挿入できます。
resource.type="container"
resource.labels.cluster_name="mycluster"
textPayload!="Metric stackdriver_sink_successfully_sent_entry_count was not found in the cache."
severity="INFO"
textPayload:(helloworld)
最後のルールは、フィールドtextPayloadに文字列helloworldが含まれている必要があることを意味します。しかし、NOT演算子を追加する方法を見つけることができません。
私は次のようなものを使用します:
textPayload:!(helloworld)
しかし、動作しません
2つの行の間にANDNOTを追加するだけです。
resource.type="container"
resource.labels.cluster_name="mycluster"
textPayload!="Metric stackdriver_sink_successfully_sent_entry_count was not found in the cache."
severity="INFO" AND NOT
textPayload:(helloworld)
「ユニコーン」という単語を含むエントリを除外する場合は、filter-text:Unicorn
を使用できます。
出典: https://cloud.google.com/logging/docs/view/basic-filters
時々\n
ちなみに最後に。
また、ログをクリックし、サブエントリをクリックして、非表示にすることもできます。