<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Falco – Falcosidekick-UI</title><link>https://v0-43--falcosecurity.netlify.app/tags/falcosidekick-ui/</link><description>Recent content in Falcosidekick-UI on Falco</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Thu, 14 Sep 2023 00:00:00 +0000</lastBuildDate><atom:link href="https://v0-43--falcosecurity.netlify.app/tags/falcosidekick-ui/feed.xml" rel="self" type="application/rss+xml"/><item><title>Blog: Falcosidekick-UI 2.2.0</title><link>https://v0-43--falcosecurity.netlify.app/blog/falcosidekick-ui-2-2-0/</link><pubDate>Thu, 14 Sep 2023 00:00:00 +0000</pubDate><guid>https://v0-43--falcosecurity.netlify.app/blog/falcosidekick-ui-2-2-0/</guid><description>
&lt;p&gt;Not so long ago, we proudly released a new fantastic release of &lt;a href="https://v0-43--falcosecurity.netlify.app/blog/falcosidekick-2-28-0/"&gt;falcosidekick&lt;/a&gt;, it's time for its little brother, &lt;a href="https://github.com/falcosecurity/falcosidekick-ui"&gt;falcosidekick-ui&lt;/a&gt; to know the same, with the version v2.2.0.&lt;/p&gt;
&lt;p&gt;Let's take a tour to introduce the most important cool new features of this release.&lt;/p&gt;
&lt;h2 id="disabling-the-authentication"&gt;Disabling the authentication&lt;/h2&gt;
&lt;p&gt;The previous version introduced a basic auth mechanism to protect access to the dashboard and API. Some complained it broke the access through their reverse proxy. You can now disable the authentication:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"&gt;&lt;code class="language-shell" data-lang="shell"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;-d boolean
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; Disable authentication &lt;span style="color:#666"&gt;(&lt;/span&gt;environment &lt;span style="color:#b44"&gt;&amp;#34;FALCOSIDEKICK_UI_DISABLEAUTH&amp;#34;&lt;/span&gt;&lt;span style="color:#666"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="dialog-box-to-display-the-details-of-an-event"&gt;Dialog box to display the details of an event&lt;/h2&gt;
&lt;p&gt;To have a better view of each event, you can now open a dialog box that displays all details but also the raw JSON of the event. You can even copy it into your clipboard with a simple click.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://v0-43--falcosecurity.netlify.app/blog/falcosidekick-ui-2-2-0/images/dialog-box.png" alt="dialog-box" loading="lazy" /&gt;
&lt;/p&gt;
&lt;p&gt;To display the dialog box, just click on the &lt;code&gt;{...}&lt;/code&gt; at the end of the event row.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://v0-43--falcosecurity.netlify.app/blog/falcosidekick-ui-2-2-0/images/dialog-box-button.png" alt="dialog-box-button" loading="lazy" /&gt;
&lt;/p&gt;
&lt;h2 id="export"&gt;Export&lt;/h2&gt;
&lt;p&gt;A new &lt;code&gt;Export&lt;/code&gt; button appeared, it allows you to export all the events found in json format. It takes in consideration the filters, of course.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://v0-43--falcosecurity.netlify.app/blog/falcosidekick-ui-2-2-0/images/export.png" alt="export" loading="lazy" /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;img src="https://v0-43--falcosecurity.netlify.app/blog/falcosidekick-ui-2-2-0/images/json.png" alt="json" loading="lazy" /&gt;
&lt;/p&gt;
&lt;h2 id="units-for-ttl"&gt;Units for TTL&lt;/h2&gt;
&lt;p&gt;For users with a lot of events, it can be useful to specify a TTL (time to live) for the keys in Redis (the storage backend). It can be done with &lt;code&gt;-t&lt;/code&gt; argument for a while, and the value had to be in seconds, which is not convenient for long-term storage. You can now specify a unit (&lt;code&gt;s&lt;/code&gt;econds, &lt;code&gt;m&lt;/code&gt;inutes, &lt;code&gt;h&lt;/code&gt;ours, &lt;code&gt;W&lt;/code&gt;eeks, &lt;code&gt;M&lt;/code&gt;onths, &lt;code&gt;y&lt;/code&gt;ear). If no unit is specified, it's considered as seconds to avoid breaking previous configs.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"&gt;&lt;code class="language-shell" data-lang="shell"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;-t string
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; TTL &lt;span style="color:#a2f;font-weight:bold"&gt;for&lt;/span&gt; keys, the format is X&amp;lt;unit&amp;gt;,
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; with unit &lt;span style="color:#666"&gt;(&lt;/span&gt;s, m, h, d, W, M, y&lt;span style="color:#666"&gt;)&lt;/span&gt;&lt;span style="color:#b44"&gt;&amp;#34; (default &amp;#34;&lt;/span&gt;0&lt;span style="color:#b44"&gt;&amp;#34;, environment &amp;#34;&lt;/span&gt;FALCOSIDEKICK_UI_TTL&lt;span style="color:#b44"&gt;&amp;#34;)
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="redis-password"&gt;Redis password&lt;/h2&gt;
&lt;p&gt;The access to the dashboard and the API can be protected by credentials, but the Redis wasn't. You can now specify a password for access to Redis, it will prevent your security scans from complaining ;-).&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"&gt;&lt;code class="language-shell" data-lang="shell"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;-w string
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; Redis password &lt;span style="color:#666"&gt;(&lt;/span&gt;default &lt;span style="color:#b44"&gt;&amp;#34;&amp;#34;&lt;/span&gt;, environment &lt;span style="color:#b44"&gt;&amp;#34;FALCOSIDEKICK_REDIS_PASSWORD&amp;#34;&lt;/span&gt;&lt;span style="color:#666"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="conclusion"&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;Thanks again to our amazing community, most of these features came from your ideas and we're still thrilled to see how much you find falcosidekick-ui useful.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;As usual, if you have any feedback or need help, you can find us at any of the following locations.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Get started in &lt;a href="http://falco.org/"&gt;Falco.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Check out the &lt;a href="https://github.com/falcosecurity/falcosidekick"&gt;Falcosidekick project on GitHub&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Check out the &lt;a href="https://github.com/falcosecurity/falcosidekick-ui"&gt;Falcosidekick UI project on GitHub&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Get involved in the &lt;a href="https://falco.org/community/"&gt;Falco community&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Meet the maintainers on the &lt;a href="https://kubernetes.slack.com/?redir=%2Farchives%2FCMWH3EH32"&gt;Falco Slack&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Follow &lt;a href="https://twitter.com/falco_org"&gt;@falco_org on Twitter&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;</description></item></channel></rss>