Procházet zdrojové kódy

Add "Container" to Breakdown options

Signed-off-by: Matt Ray <github@mattray.dev>
Matt Ray před 2 roky
rodič
revize
3367db83de
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      ui/src/Reports.js

+ 2 - 1
ui/src/Reports.js

@@ -40,6 +40,7 @@ const aggregationOptions = [
   { name: 'Controller', value: 'controller' },
   { name: 'Service', value: 'service' },
   { name: 'Pod', value: 'pod' },
+  { name: 'Container', value: 'container' },
 ]
 
 const accumulateOptions = [
@@ -121,7 +122,7 @@ const ReportsPage = () => {
   const [fetch, setFetch] = useState(false)
   const [loading, setLoading] = useState(true)
   const [errors, setErrors] = useState([])
-  
+
   // Initialize once, then fetch report each time setFetch(true) is called
   useEffect(() => {
     if (!init) {