<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Export of rules with zero hits in dashboard in Firewall and Security Management</title>
    <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/120619#M75697</link>
    <description>&lt;P&gt;Good to hear!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jun 2021 13:10:26 GMT</pubDate>
    <dc:creator>the_rock</dc:creator>
    <dc:date>2021-06-08T13:10:26Z</dc:date>
    <item>
      <title>Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119573#M75686</link>
      <description>&lt;P&gt;&amp;nbsp;Hi everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I saw some posts about this before, but there was never a confirmation if this was ever available. I am trying to export rules in excel format for a customer that requested list of rules with zero hits, but does not seem its possible. I exported all the rules and can filter for example for any disabled rules, but I dont see column anywhere in excel file for hits, though hits column is enabled in dashboard.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any idea if this is possible in R81 at all? It is cloud mgmt, but I dont think that makes any difference.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, another thing I noticed, though this could be pure cosmetic is that all 100 some NAT rules show zero hits, which also makes no sense, since we know bunch of them are getting hit for sure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 12:47:03 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119573#M75686</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2021-05-27T12:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119595#M75687</link>
      <description>&lt;P&gt;The level of possibility depends on how much effort you're willing to expend. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;It's relatively easy to handle sectionless rules (that is, rules above any section header) and rules within sections. It's a lot harder to handle inline layers, as you have to run a separate API call to get their contents. Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;mgmt_cli -r true \
--format json \
show access-rulebase \
uid "&amp;lt;UUID&amp;gt;" \
show-hits true \
use-object-dictionary false \
| jq -c '.rulebase[]|if .rulebase then {section:.name,rule:.rulebase[]|{name:.name,hits:.hits.value}} else {name:.name,hits:.hits.value} end'&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The 'if .rulebase then ... else ... end' structure gives you separate output for items which have a rulebase (read: rule sections) and objects which don't (sectionless rules). For one of the access layers on my development box, it returns this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{"name":"Sectionless","hits":0}
{"name":"Bad browsing","hits":0}
{"section":"WebApp-1","rule":{"name":"Internet access in","hits":0}}
{"section":"WebApp-1","rule":{"name":"Web to App","hits":0}}
{"section":"WebApp-1","rule":{"name":"App to DB","hits":0}}
{"section":"WebApp-1","rule":{"name":"Admin access","hits":0}}
{"section":"Some Other Web App","rule":{"name":"Internet access in","hits":0}}
{"section":"Some Other Web App","rule":{"name":"Web to App","hits":0}}
{"section":"Some Other Web App","rule":{"name":"App to DB","hits":0}}
{"section":"Some Other Web App","rule":{"name":"Admin access","hits":0}}
{"section":"Access to Public Services","rule":{"name":null,"hits":0}}
{"section":"Access to Public Services","rule":{"name":null,"hits":0}}
{"section":"Access to Public Services","rule":{"name":null,"hits":0}}
{"section":"Access to Public Services","rule":{"name":null,"hits":0}}
{"section":"Cleanup","rule":{"name":"Cleanup rule","hits":0}}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can then grep for "hits":0 and get the rules you're interested in. The jq filter should be relatively easy to expand to cover whatever fields you want.&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 14:45:52 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119595#M75687</guid>
      <dc:creator>Bob_Zimmerman</dc:creator>
      <dc:date>2021-05-27T14:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119607#M75688</link>
      <description>&lt;P&gt;I hear ya, but I wanted to do this via dashboard, not cli, as its cloud server, so there is no ssh available to us, only from backend.&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 16:18:10 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119607#M75688</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2021-05-27T16:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119624#M75689</link>
      <description>&lt;P&gt;You should still be able to make API calls. mgmt_cli even has a way to log in to a remote management server (though the '-r true' won't work; you'll need to provide credentials).&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 19:42:46 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119624#M75689</guid>
      <dc:creator>Bob_Zimmerman</dc:creator>
      <dc:date>2021-05-27T19:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119659#M75690</link>
      <description>&lt;P&gt;This was in SmartDashboard back in the day but had not been added to R8x SmartConsole.&lt;BR /&gt;I don’t know what the precise plan is to add it back.&lt;BR /&gt;Current workaround is to use the API and there are several examples in the community on how to do this.&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 07:22:11 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119659#M75690</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2021-05-28T07:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119973#M75691</link>
      <description>&lt;P&gt;I tried running below, but no luck, command did work, but I cant see anything that shows hits values at all...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;mgmt_cli show access-rulebase offset 0 limit 20 name "Network" details-level "standard" use-object-dictionary true show-hits true hits-settings.from-date "2021-04-30" hits-settings.to-date "2021-05-30"&lt;/P&gt;</description>
      <pubDate>Mon, 31 May 2021 19:18:03 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119973#M75691</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2021-05-31T19:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119974#M75692</link>
      <description>&lt;P&gt;Tried that, but no luck...TAC said they will run web visualization script on backend to see if they can parse it that way, but sounds like a lot of work though. I really wanted to give customer excel spreadsheet with zero hits rules via dashboard, but definitely does not appear it is possible.&lt;/P&gt;</description>
      <pubDate>Mon, 31 May 2021 19:20:44 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119974#M75692</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2021-05-31T19:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119986#M75693</link>
      <description>&lt;P&gt;Without the 'hits-settings' part, I get this on R80.40 jumbo 114:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;uid: "b406b732-2437-4848-9741-6eae1f5bf112"
name: "Network"
rulebase: 
- uid: "f8206d78-7c5f-4995-b519-865e2bf0730c"
  name: "Sectionless"
  type: "access-rule"
  domain: 
    uid: "41e821a0-3720-11e3-aa6e-0800200c9fde"
    name: "SMC User"
    domain-type: "domain"
  rule-number: 1
  track: 
    type: "29e53e3d-23bf-48fe-b6b1-d59bd88036f9"
    per-session: false
    per-connection: false
    accounting: false
    enable-firewall-session: false
    alert: "none"
  source: 
  - "97aeb369-9aea-11d5-bd16-0090272ccb30"
  source-negate: false
  destination: 
  - "97aeb369-9aea-11d5-bd16-0090272ccb30"
  destination-negate: false
  service: 
  - "97aeb405-9aea-11d5-bd16-0090272ccb30"
  service-negate: false
  vpn: 
  - "97aeb369-9aea-11d5-bd16-0090272ccb30"
  action: "6c488338-8eec-4103-ad21-cd461ac2c472"
  action-settings: 
    enable-identity-captive-portal: false
  content: 
  - "97aeb369-9aea-11d5-bd16-0090272ccb30"
  content-negate: false
  content-direction: "any"
  time: 
  - "97aeb369-9aea-11d5-bd16-0090272ccb30"
  hits: 
    percentage: "0%"
    level: "zero"
    value: 0
  custom-fields: 
    field-1: ""
    field-2: ""
    field-3: ""
  meta-info: 
...&lt;/LI-CODE&gt;
&lt;P&gt;Do you get the hits section if you leave the 'hits-settings' off?&lt;/P&gt;</description>
      <pubDate>Mon, 31 May 2021 21:25:28 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/119986#M75693</guid>
      <dc:creator>Bob_Zimmerman</dc:creator>
      <dc:date>2021-05-31T21:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/120552#M75694</link>
      <description>&lt;P&gt;Following feedback from the field (including this post &lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;), we're adding hitcount information to the csv export of the rulebase. This will of course be accessible without API scripting or expert privileges on the machine.&lt;/P&gt;
&lt;P&gt;This enhancement will be included in the upcoming R81.10 and we are also looking into porting it back to earlier versions via JHF.&lt;/P&gt;
&lt;P&gt;Here is a snippet of how it will look:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tomer_Noy_0-1623105315090.png" style="width: 999px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/12058i2485236249B3DADB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Tomer_Noy_0-1623105315090.png" alt="Tomer_Noy_0-1623105315090.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2021 22:36:48 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/120552#M75694</guid>
      <dc:creator>Tomer_Noy</dc:creator>
      <dc:date>2021-06-07T22:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/120572#M75695</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/9372"&gt;@Tomer_Noy&lt;/a&gt;&amp;nbsp;, we appreciate your prompt action here.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 06:30:28 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/120572#M75695</guid>
      <dc:creator>_Val_</dc:creator>
      <dc:date>2021-06-08T06:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/120579#M75696</link>
      <description>&lt;P&gt;Glad to assist&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Credit for fast implementation goes to&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/9401"&gt;@Alon_Alapi&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/2981"&gt;@Youssef_Obeidal&lt;/a&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 07:47:48 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/120579#M75696</guid>
      <dc:creator>Tomer_Noy</dc:creator>
      <dc:date>2021-06-08T07:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/120619#M75697</link>
      <description>&lt;P&gt;Good to hear!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 13:10:26 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/120619#M75697</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2021-06-08T13:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/121513#M75698</link>
      <description>&lt;P&gt;Any possibility to get in&amp;nbsp;&lt;SPAN&gt;SmartDashboard the&amp;nbsp;hitcount extracting via csv? Any other option without API ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 03:28:46 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/121513#M75698</guid>
      <dc:creator>Ganesan</dc:creator>
      <dc:date>2021-06-18T03:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/121517#M75699</link>
      <description>&lt;P&gt;Answered in an earlier post in this thread:&amp;nbsp;&lt;A href="https://community.checkpoint.com/t5/Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/120552/highlight/true#M26931" target="_blank"&gt;https://community.checkpoint.com/t5/Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/120552/highlight/true#M26931&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 04:02:42 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/121517#M75699</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2021-06-18T04:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/128959#M75700</link>
      <description>&lt;P&gt;I expanded this to a sript that will get all policies and create a hitcounter CSV file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;#!/bin/bash&lt;BR /&gt;&lt;BR /&gt;# Show Hitcounters for all policies&lt;BR /&gt;&lt;BR /&gt;NOW=`/bin/date +%Y%m%d`&lt;BR /&gt;PACKAGES=`mgmt_cli -r true --port 443 show packages --format json | jq '.packages[] | .name' | sed 's/\"//g'`&lt;BR /&gt;&lt;BR /&gt;for POLICY in $PACKAGES&lt;BR /&gt;do&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo "Hitcounters for $POLICY"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mgmt_cli -r true --port 443 show access-rulebase name "$POLICY Security" show-hits true --format json limit 50000 \&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | jq&amp;nbsp; '.rulebase[] | .rulebase[] | [."rule-number", .name, .hits.value]' --compact-output \&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | sed 's/\[//g'| \&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sed 's/\]//g' &amp;gt; HitCount-$POLICY-Security-$NOW.csv&lt;BR /&gt;done&lt;/PRE&gt;
&lt;P&gt;The assumption is that you have "default" policy names with " Security" added to the name of the policy package.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 14:41:40 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/128959#M75700</guid>
      <dc:creator>Hugo_vd_Kooij</dc:creator>
      <dc:date>2021-09-08T14:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/128962#M75701</link>
      <description>&lt;P&gt;Have you tested this? Pretty sure limit only goes up to 500.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 15:30:21 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/128962#M75701</guid>
      <dc:creator>Bob_Zimmerman</dc:creator>
      <dc:date>2021-09-08T15:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/128986#M75702</link>
      <description>&lt;P&gt;Sorry to respond to this few months later, but just for my own reference, will this work say if management is R81.10 and gateways are, for example, on R80.xx versions, or everything needs to be on R81.10 code?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 00:33:30 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/128986#M75702</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2021-09-09T00:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/128992#M75703</link>
      <description>&lt;P&gt;Yes, it will work when just the Management is R81.10.&lt;/P&gt;
&lt;P&gt;The feature is implemented on the Management side, so gateway upgrades are not needed to get it. It relies on the same data that you see in the SmartConsole UI.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 05:47:05 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/128992#M75703</guid>
      <dc:creator>Tomer_Noy</dc:creator>
      <dc:date>2021-09-09T05:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/128995#M75704</link>
      <description>&lt;P&gt;BTW, you can also get this new feature on R81 with the latest JHF on the Management server + latest SmartConsole build.&lt;/P&gt;
&lt;P&gt;The team ported it back to that version as well.&lt;/P&gt;
&lt;P&gt;Of course, upgrading to R81.10 is still a great option&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 06:25:34 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/128995#M75704</guid>
      <dc:creator>Tomer_Noy</dc:creator>
      <dc:date>2021-09-09T06:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Export of rules with zero hits in dashboard</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/129025#M75705</link>
      <description>&lt;P&gt;So I tried it on R81 mgmt managing R81 gateways (all jumbo 36) and latest console build 553 and when I export the rules, I see in the csv file there is hits column, but no numbers there at all, though in policy I see bunch of hits on every rule. Any idea?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 11:20:37 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Export-of-rules-with-zero-hits-in-dashboard/m-p/129025#M75705</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2021-09-09T11:20:37Z</dc:date>
    </item>
  </channel>
</rss>

