Activity Feed
- Posted Re: Splunk Cloud App Vetting Failure -Possible resolutions for check_hotlinking_splunk_web_libraries? on Splunk Cloud Platform. 09-03-2024 02:00 AM
- Got Karma for Re: [Chart] Bar Chart Configuring Questions (Fonts and Formats). 08-29-2023 12:37 AM
- Posted Re: [Chart] Bar Chart Configuring Questions (Fonts and Formats) on Dashboards & Visualizations. 08-23-2023 05:01 AM
- Posted Re: Splunk Add-on for Zenoss / TA-zenoss- Why am I receiving this error? on All Apps and Add-ons. 06-03-2022 05:45 AM
- Posted Re: Splunk Add-on for Zenoss / TA-zenoss- Why am I receiving this error? on All Apps and Add-ons. 06-02-2022 04:17 AM
- Posted Re: Is there app for perforce log analysis ? on Getting Data In. 11-04-2021 03:54 AM
Topics I've Started
No posts to display.
09-03-2024
02:00 AM
Hi @arielpconsolaci , I think you just need to replace ['vizapi/SplunkVisualizationBase', 'vizapi/SplunkVisualizationUtils'] with ['api/SplunkVisualizationBase', 'api/SplunkVisualizationUtils'] in both visualization_src.js and webpack.config.js
... View more
08-23-2023
05:01 AM
1 Karma
Hi @jasuchung , A workaround for issue 1 could be adding a javascript extension to your simpleXML dashboard (see docs at https://dev.splunk.com/enterprise/docs/developapps/visualizedata/usewebframework/modifydashboards/). Script below, based on @ITWhisperer example, will add one decimal to all data values displayed in chart without it (e.g. 10 -> 10.0) require([
'jquery',
'splunkjs/mvc',
'splunkjs/mvc/simplexml/ready!'
], function ($, mvc) {
pollAvailability = () => {
if (mvc.Components.hasInstance("boldtimes")) {
// Chart loaded
let content = $("#boldtimes g.highcharts-label.highcharts-data-label.highcharts-data-label-color-undefined tspan:not(:contains(.)):first-child");
// Add the decimal to data values without it
for (let i = 0; i < content.length; ++i) {
let text = content[i].firstChild.textContent;
text += ".0";
content[i].firstChild.textContent = text;
};
} else {
// Chart not loaded yet, retry in 200ms
setTimeout(pollAvailability, 200);
}
};
setTimeout(pollAvailability, 600);
});
... View more
06-03-2022
05:45 AM
Hi @drejoe , Unfortunately I cannot reproduce this error, but I would recommend you to: Carefully check hardware spec requirements (https://docs.splunk.com/Documentation/Splunk/8.2.6/Installation/SystemRequirements#Recommended_hardware ) - Please verify if there are any peaks on IOPs especially and eventually adjust your configuration Please verify the connectivity from the Splunk VM to your Zenoss instance with a simple curl command - Network latency? Firewall?
... View more
06-02-2022
04:17 AM
Hi @drejoe , Please check the _internal index around the time of the error. Is there any other relevant log message?
... View more
11-04-2021
03:54 AM
Hi @nagubandipavan , a bit late, but you can try to check this out: https://swarm.workshop.perforce.com/projects/mgroves-splunk-app-for-perforce/files/ It might require some tweaks but it looks a good starting point. Hope this helps.
... View more