This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to display Logging Configuration on Dashboard of vault configuration

I am creating the vault application with v22.12, where we have the logging functionally inbuilt with the help of VAF.Extension.

I am not getting any functionality of logging on the dashboard of vault the vault application.

Code:

public class VaultApplication
: MFiles.VAF.Extensions.ConfigurableVaultApplicationBase<Configuration>
{}

public class Configuration : MFiles.VAF.Extensions.Configuration.ConfigurationBase
{}

I am able to set the logging config from the configuration tab but on the dashboard tab i am not getting any functionality related to logging.

I need this kind of functionality on the dashboard

Thank You,

Yash

Parents
  • That functionality should be provided by default by the VAF Extensions.  The UI looks a little different when logging is not enabled, but it should render something.

    Make sure that, if you override anything in the vault application class, that you call the base implementation.  If you're overriding any of the dashboard-generation logic (e.g. you are rendering your own dashboard) then show that code and we can look at how to integrate the logging component.

Reply
  • That functionality should be provided by default by the VAF Extensions.  The UI looks a little different when logging is not enabled, but it should render something.

    Make sure that, if you override anything in the vault application class, that you call the base implementation.  If you're overriding any of the dashboard-generation logic (e.g. you are rendering your own dashboard) then show that code and we can look at how to integrate the logging component.

Children