diff --git a/esp/scm/ws_logaccess.ecm b/esp/scm/ws_logaccess.ecm index dcc0388c46a..1ae9ad4be7c 100644 --- a/esp/scm/ws_logaccess.ecm +++ b/esp/scm/ws_logaccess.ecm @@ -87,12 +87,14 @@ ESPenum LogAccessFilterOperator : int * INF - Information * PRO - Progress * MET - Metric +* EVT - Event * *If searching by "ByTargetAudience", the SearchByValue should contain the 3 letter code associated with the target audience of interest. * valid values at time of writing are: * OPR - Operator * USR - User * PRO - Programmer +* MON - Monitor * ADT - Audit *If searching by "BySourceInstance", the SearchByValue should contain the instance of interest *If searching by "BySourceNode", the SearchByValue should contain the node of interest diff --git a/helm/examples/logging/README.md b/helm/examples/logging/README.md index 1a588e01822..6fac4eba03e 100644 --- a/helm/examples/logging/README.md +++ b/helm/examples/logging/README.md @@ -73,7 +73,7 @@ The logs can be filtered by TargetAudience, Category or Detail Level, and the ou ### Target Audience Filtering -The availble target audiences include operator(OPR), user(USR), programmer(PRO), audit(ADT), or all. The filter is controlled by the +The availble target audiences include operator(OPR), user(USR), programmer(PRO), monitor(MON), audit(ADT), or all. The filter is controlled by the `
`.logging.audiences value. The string value is comprised of 3 letter codes delimited by the aggregation operator (+) or the removal operator (-). For example, all component log output to include Programmer and User messages only: @@ -81,7 +81,7 @@ The availble target audiences include operator(OPR), user(USR), programmer(PRO), ### Target Category Filtering -The available target categories include disaster(DIS), error(ERR), warning(WRN),information(INF),progress(PRO),metrics(MET). The category (or class) filter is controlled by the `
`.logging.classes value, comprised of 3 letter codes delimited by the aggregation operator (+) or the removal operator (-). +The available target categories include disaster(DIS), error(ERR), warning(WRN),information(INF),progress(PRO),metrics(MET),event(EVT). The category (or class) filter is controlled by the `
`.logging.classes value, comprised of 3 letter codes delimited by the aggregation operator (+) or the removal operator (-). For example, the mydali instance's log output to include all classes except for progress: helm install myhpcc ./hpcc --set dali[0].logging.classes="ALL-PRO" --set dali[0].name="mydali"