The "wrapper" around your application!
Insights Chrome provides:
- Standard header and navigation
- Base CSS/style
- A Javascript library for interacting with Insights Chrome
For more detailed information about chrome and what it provides, look through the detailed documentation.
Insights Chrome comes with a Javacript API that allows applications to control navigation, global filters, etc.
Check out the useChrome hook docs
There are a few scripts for building this application.
To run a script you have to install dependencies npm install
. Then you are free to use any task you want.
-
Building assets
> npm run build
-
Building assets and watching files when they change
> npm run build --watch
-
Running tests
> npm run test
-
Install all dependencies
> npm install
-
Run dev command in watch mode
> npm run dev
-
Open browser at
https://stage.foo.redhat.com:1337/
or Open browser athttps://stage.foo.redhat.com:1337/preview
.
As with any application, chrome can be a host application for others. You can configure the routes
object in the webpack.config.js
file as described in the proxy config docs.
For illustration, to locally deploy Advisor for OpenShift together with Insights Chrome, you would require to
- Run Advisor with
--port=8004
(or any other available port number), - Update the webpack config in the following way:
...
devServer: {
...
routes: {
'/apps/ocp-advisor': {
host: 'https://localhost:8004',
},
},
}
...
- Run insights-chrome with
npm run dev
ornpm run dev:beta
.
There are some localStorage values for you to enable debuging information or enable some values that are in experimental state. If you want to enable them call const iqe = insights.chrome.enable.iqe()
for instance to enable such service. This function will return callback to disable such feature so calling iqe()
will remove such item from localStorage.
Available function:
iqe
- to enable some iqe functions for QE purposesinvTags
- to enable experimental tags in inventoryjwtDebug
- to enable debugging of JWTremediationsDebug
- to enable debug buttons in remediations appshortSession
- to enable short session in order to test automatic logoutsforcePendo
- to force Pendo initializtionappFilter
- to enable new application filter in any environment
More detailed documentation can be found in the docs section