<?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: Issues with CSV report in PrismaCloud Compute in Prisma Cloud Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/prisma-cloud-discussions/issues-with-csv-report-in-prismacloud-compute/m-p/524837#M854</link>
    <description>&lt;P&gt;Hi Julina,&lt;/P&gt;
&lt;P&gt;unfortunately it doesn't help, I need something able to skip the problem not to detect it ( to detect the issue is enough to open the csv with excell ).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've just discovered that LibreOffice is much better than excell in importing the csv, at least you got it with the right columns and just the extraones to delete.&lt;/P&gt;</description>
    <pubDate>Thu, 22 Dec 2022 05:19:37 GMT</pubDate>
    <dc:creator>PMaggioni</dc:creator>
    <dc:date>2022-12-22T05:19:37Z</dc:date>
    <item>
      <title>Issues with CSV report in PrismaCloud Compute</title>
      <link>https://live.paloaltonetworks.com/t5/prisma-cloud-discussions/issues-with-csv-report-in-prismacloud-compute/m-p/524545#M849</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I'm facing with an annoying issue with CSV reports in PrismaCloud Compute, Compliance Explorer.&lt;/P&gt;
&lt;P&gt;I upload the CSV report and open it with excell: when I try to convert with "text to column" I always find out that some raw ahd already splitted into tw0 or more column and I'm force to edit them beforehand.&lt;/P&gt;
&lt;P&gt;Has anybody a quick solution to overcome this issue ?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2022 06:09:47 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/prisma-cloud-discussions/issues-with-csv-report-in-prismacloud-compute/m-p/524545#M849</guid>
      <dc:creator>PMaggioni</dc:creator>
      <dc:date>2022-12-20T06:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with CSV report in PrismaCloud Compute</title>
      <link>https://live.paloaltonetworks.com/t5/prisma-cloud-discussions/issues-with-csv-report-in-prismacloud-compute/m-p/524781#M853</link>
      <description>&lt;P&gt;Hi PMaggioni,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One simple check you can run before importing your csv file is to make sure there aren't any extra commas on each line. For example this command will output the line number with corresponding count of commas:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;awk -F ',' '{print NR ":" NF-1}' your-file.csv&lt;/LI-CODE&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;Julian&lt;/P&gt;</description>
      <pubDate>Wed, 21 Dec 2022 17:46:42 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/prisma-cloud-discussions/issues-with-csv-report-in-prismacloud-compute/m-p/524781#M853</guid>
      <dc:creator>JNeytchev</dc:creator>
      <dc:date>2022-12-21T17:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with CSV report in PrismaCloud Compute</title>
      <link>https://live.paloaltonetworks.com/t5/prisma-cloud-discussions/issues-with-csv-report-in-prismacloud-compute/m-p/524837#M854</link>
      <description>&lt;P&gt;Hi Julina,&lt;/P&gt;
&lt;P&gt;unfortunately it doesn't help, I need something able to skip the problem not to detect it ( to detect the issue is enough to open the csv with excell ).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've just discovered that LibreOffice is much better than excell in importing the csv, at least you got it with the right columns and just the extraones to delete.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 05:19:37 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/prisma-cloud-discussions/issues-with-csv-report-in-prismacloud-compute/m-p/524837#M854</guid>
      <dc:creator>PMaggioni</dc:creator>
      <dc:date>2022-12-22T05:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with CSV report in PrismaCloud Compute</title>
      <link>https://live.paloaltonetworks.com/t5/prisma-cloud-discussions/issues-with-csv-report-in-prismacloud-compute/m-p/525198#M856</link>
      <description>&lt;P&gt;I understand that it seems Prisma is defective to export a CSV file with extra delimiters embedded within the values.&lt;/P&gt;
&lt;P&gt;Here's how I would fix the problem in less time than it takes to manage this discussion.&lt;/P&gt;
&lt;P&gt;0) Work with a SMALL BATCH size of records; (ie microservices, smallish user stories) you will realize efficiency when using a small batch of CSV records to locate and fix the root-cause.&lt;/P&gt;
&lt;P&gt;1)&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/223689"&gt;@JNeytchev&lt;/a&gt;&amp;nbsp;offered good advice for locating your root causes. Now that you have a stream of field counts, identify the exceptions, perhaps, count them to determine if you will pivot or persist down this path.&lt;/P&gt;
&lt;P&gt;2) You need an editor like (ie vi, vim) that can perform "stream edits" over sections or entire file.&lt;/P&gt;
&lt;P&gt;3) Manually search the file, perhaps, developing a regular expression that can detect only the defective fields.&lt;/P&gt;
&lt;P&gt;4) This is another pivot point, is the problem-set small? so its faster to manually fix or do I need a "batch search and replace" command.&lt;/P&gt;
&lt;P&gt;5) Enhance that search regex to develop a "search and replace" command.&lt;/P&gt;
&lt;P&gt;6) then test/fix it to the small batch; then apply to the entire batch.&lt;/P&gt;
&lt;P&gt;Good luck!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 15:45:28 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/prisma-cloud-discussions/issues-with-csv-report-in-prismacloud-compute/m-p/525198#M856</guid>
      <dc:creator>TommyHunt</dc:creator>
      <dc:date>2022-12-27T15:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with CSV report in PrismaCloud Compute</title>
      <link>https://live.paloaltonetworks.com/t5/prisma-cloud-discussions/issues-with-csv-report-in-prismacloud-compute/m-p/525242#M857</link>
      <description>&lt;P&gt;Thanks for the answer, but it's not very usefull.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;0) Work with a SMALL BATCH size of records; (ie microservices, smallish user stories) you will realize efficiency when using a small batch of CSV records to locate and fix the root-cause. In Prisma Cloud Compliancy report, even if you select a small set ( for example all the image running as root ) you get a larger report with all the issues for the involved image.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;1)&amp;nbsp;&lt;A href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/223689" target="_blank"&gt;@JNeytchev&lt;/A&gt;&amp;nbsp;offered good advice for locating your root causes. -&amp;gt; it's enough to open the .csv with excell to findout the raw with issue.&lt;/P&gt;
&lt;P&gt;2) You need an editor like (ie vi, vim) that can perform "stream edits" over sections or entire file. Too tiem consuming. Anyway Libreoffice seems the best solution&lt;/P&gt;
&lt;P&gt;3) Manually search the file, perhaps, developing a regular expression that can detect only the defective fields. ALready tried, too different situations. ( same for the othert suggestions, at this point Libreoffice and a lot of time seems the best approach ).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 17:35:16 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/prisma-cloud-discussions/issues-with-csv-report-in-prismacloud-compute/m-p/525242#M857</guid>
      <dc:creator>PMaggioni</dc:creator>
      <dc:date>2022-12-27T17:35:16Z</dc:date>
    </item>
  </channel>
</rss>

