All Posts

Find Answers
Ask questions. Get answers. Find technical product solutions from passionate members of the Splunk community.

All Posts

There doesn't appear to be anything wrong with your search - perhaps it is your data. Please share some actual rows from your csv.
Hi @richgalloway  did tried that not working    
Disabling an app in the UI should disable it in all SHC member nodes.  To disable it on the HFs, set state=disabled in the [install] stanza of $SPLUNK_HOME/etc/deployment-apps/splunk_assist/local/app... See more...
Disabling an app in the UI should disable it in all SHC member nodes.  To disable it on the HFs, set state=disabled in the [install] stanza of $SPLUNK_HOME/etc/deployment-apps/splunk_assist/local/app.conf and wait for the HFs to download the update.
Go to Settings->Tokens on the receiving Splunk instance to create a new token.  Copy the token text to the Authentication header.
"search peer" is another term for "indexer" and deployers never send bundles to indexers.  The bundle in this case is a search bundle, sent from SH to indexers.  The search bundle contains every KO t... See more...
"search peer" is another term for "indexer" and deployers never send bundles to indexers.  The bundle in this case is a search bundle, sent from SH to indexers.  The search bundle contains every KO the indexers might need to complete the search. The most common (IME) cause of bundle size problems is very large or too many lookup files.  Make sure lookup files don't grow indefinitely by periodically removing unneeded data.  Files over 1GB should be removed from the bundle and either sent to indexers out-of-band or used only on the SH (using local=true).
https://docs.splunk.com/Documentation/Splunk/latest/Data/UsetheHTTPEventCollector#Send_data_to_HTTP_Event_Collector_on_Splunk_Cloud_Platform
Yes, we do have the Sim licenses available. let me try to share you the logs. 
The timestamp commands requires the _time field, which must be in epoch form.  Convert Timestamp into _time using strptime(). |inputlookup ABC_DISK_UTILIZATION.csv |eval _time=strptime(Timestamp, "... See more...
The timestamp commands requires the _time field, which must be in epoch form.  Convert Timestamp into _time using strptime(). |inputlookup ABC_DISK_UTILIZATION.csv |eval _time=strptime(Timestamp, "%d/%m/%Y %H:%M") |timechart span=24h sum(USEDGB)  
Ok, unless you mistyped anything, it should be all good. You have SIM Licenses available in the controller as well correct? Can you possibly zip the logs and share it privately, would need to see... See more...
Ok, unless you mistyped anything, it should be all good. You have SIM Licenses available in the controller as well correct? Can you possibly zip the logs and share it privately, would need to see the full log to see what is happening.
/services/data/indexes is not listing the metrics indexes
<controller-info> <!-- For more detailed information on different configurations that an agent can support and the respective rules, consult the online documentation. In general, configuration prop... See more...
<controller-info> <!-- For more detailed information on different configurations that an agent can support and the respective rules, consult the online documentation. In general, configuration properties may be set in different ways. Here is the order of precedence of how the agent will read and respect specific configurations. 1. Environment Variables 2. System Properties 3. Default/Root controller-info.xml. See .../$(Agent-Base-Install-Dir)/conf/controller-info.xml --> <!-- This is the host name or the IP address of the AppDynamics Controller (e.g., 192.168.1.22 or myhost or myhost.abc.com). This is the same host that you use to access the AppDynamics browser-based User interface. This can be overridden with the environment variable 'CONTROLLER_HOST_NAME' or the system property '-Dappdynamics.controller.hostName' --> <controller-host>xxxx</controller-host> <!-- This is the http(s) port of the AppDynamics Controller. If 'controller-ssl-enabled' (below) is set to true, you must specify the HTTPS port of the Controller; otherwise, specify the HTTP port. The default values are 8090 for HTTP and 8181 for HTTPS. This is the same port that you use to access the AppDynamics browser-based User interface. This can be overridden with the environment variable 'APPDYNAMICS_CONTROLLER_PORT' or the system property '-Dappdynamics.controller.port' --> <controller-port>443</controller-port> <!-- This specifies if the AppDynamics agent should use SSL (HTTPS) to connect to the Controller. If you set this to true, the controller port property above should be set to the HTTPS port of the Controller. This can be overridden with the environment variable 'APPDYNAMICS_CONTROLLER_SSL_ENABLED' or the system property '-Dappdynamics.controller.ssl.enabled' --> <controller-ssl-enabled>true</controller-ssl-enabled> <!-- Set this flag to 'true' to enable features required for AppDynamics Orchestration, including the following: 1) Enables the agent to execute tasks specified in AppDynamics Orchestration workflows. 2) Enables the agent to resolve the AppDynamics Controller host and port when the host machine where this agent resides is created through AppDynamics Orchestration. --> <enable-orchestration>false</enable-orchestration> <!-- The Machine Agent uses the Java API to get the host name of the agent. The results from the API can be inconsistent, and the same JVM can sometimes return a different value for the same machine each time the machine agent is restarted. It is recommended to set this field in the following scenarios: 1) The machine host name is not constant 2) You prefer to use a specific name in the UI 3) The machine has both a machine agent and app agents on it. This can be overridden with the environment variable 'APPDYNAMICS_AGENT_UNIQUE_HOST_ID' or the system property '-Dappdynamics.agent.uniqueHostId' --> <unique-host-id>xxxx</unique-host-id> <!-- This key is generated at installation time and can be found by viewing the license information in the controller settings. This can be overridden with the environment variable 'APPDYNAMICS_AGENT_ACCOUNT_ACCESS_KEY' or the system property '-Dappdynamics.agent.accountAccessKey' --> <account-access-key>xxxxxx</account-access-key> <!-- If the AppDynamics Controller is running in multi-tenant mode or you are using the AppDynamics SaaS Controller, you must specify the account name for this agent to authenticate with the controller. If you are running in single-tenant mode (the default) there is no need to configure this value. This can be overridden with the environment variable 'APPDYNAMICS_AGENT_ACCOUNT_NAME' or the system property '-Dappdynamics.agent.accountName' --> <account-name>xxxxx</account-name> <!-- If this agent is licensed for Server Monitoring, set this flag to 'true' to enable Server Monitoring expanded metrics. This can be overridden with the environment variable 'APPDYNAMICS_SIM_ENABLED' or the system property '-Dappdynamics.sim.enabled' --> <sim-enabled>true</sim-enabled> <!-- If this machine is sap machine , set this flag to 'true' to enable is sap flag for ibl licensing This can be overridden with the environment variable 'APPDYNAMICS_IS_SAP_MACHINE' or the system property '-Dappdynamics.is.sap.machine' --> <is-sap-machine></is-sap-machine> <!-- This value is used to create the hierarchy infrastructure view in the UI for this machine. Each hierarchy level should be separated with a vertical bar ("|"). For example, if this machine belongs to "DataRack1" and it is located in "Virginia Data Center", then the machine path could be set to "Virginia Data Center|DataRack1|Machine1" and the UI will display it in that hierarchy ("Virginia Data Center|DataRack1"). The last element of the path indicates the server name (e.g., "Machine1") and appears as the name on the servers list in the UI. This can be overridden with the environment variable 'APPDYNAMICS_MACHINE_HIERARCHY_PATH' or the system property '-Dappdynamics.machine.agent.hierarchyPath'. Note: The number of characters up to but not including the last vertical bar must not exceed 95. --> <machine-path></machine-path> </controller-info>
We have got a requirement where, event logs need to be indexed under a metrics index. For this we are using mcollect command to ingest during search time. For automatic conversion, we have schedul... See more...
We have got a requirement where, event logs need to be indexed under a metrics index. For this we are using mcollect command to ingest during search time. For automatic conversion, we have scheduled a search to run every 1 hour, but in case of missed schedule data is lost for that schedule.  What is the best way to store the last indexed time and run the schedule based on the last indexed time?     Note: In long run we will be using LogToMetrics sourcetype for conversion, Until then we need to use the mcollect command.
Hi All i ahve a lookup file .csv where i have timestamp Name and USEDGB values  i have been trying to run a time chart to see the total USEDGB per day Both lookup definition and lookup table file h... See more...
Hi All i ahve a lookup file .csv where i have timestamp Name and USEDGB values  i have been trying to run a time chart to see the total USEDGB per day Both lookup definition and lookup table file has app permissions  |inputlookup ABC_DISK_UTILIZATION.csv |eval  _time=Timestamp |timechart span=24h sum(USEDGB)   the result only shows time but no values of USEDGB can you please help  Timestamp NAME USEDGB 12/08/2023 22:04 RECO_A 48.61 12/08/2023 13:04 RECO_B 46.21 12/08/2023 03:04 RECO_C 46133.89 11/08/2023 20:01 RECO_A 164.11 11/08/2023 18:01 RECO_B 48.61 11/08/2023 16:01 RECO_C 46.21 10/08/2023 22:00 RECO_A 45327.22 10/08/2023 17:00 RECO_B 193.4 10/08/2023 08:00 RECO_C 48.61 09/08/2023 21:00 RECO_A 46.21 09/08/2023 13:00 RECO_B 45205.72 09/08/2023 06:00 RECO_C 132.57 08/08/2023 19:00 RECO_A 48.61 08/08/2023 12:00 RECO_B 46.21 08/08/2023 10:00 RECO_C 45203.77 07/08/2023 22:00 RECO_A 132.56 07/08/2023 14:00 RECO_B 48.61 07/08/2023 07:00 RECO_C 46.21 06/08/2023 22:04 RECO_A 45199.08 06/08/2023 13:04 RECO_B 123.85 06/08/2023 03:04 RECO_C 48.61 05/08/2023 20:01 RECO_A 46.21 05/08/2023 18:01 RECO_B 45196.12 05/08/2023 16:01 RECO_C 117.4        
Hi @ThuLe, it's possible to add Key Indicators only to the Security Posture Dashboard. If you want to add a KI to a custom dashboard, you can use the search and add it to a panel as a normal search... See more...
Hi @ThuLe, it's possible to add Key Indicators only to the Security Posture Dashboard. If you want to add a KI to a custom dashboard, you can use the search and add it to a panel as a normal search. Key indicators are already configured panels, but at least they are panels! Ciao. Giuseppe
Hi all, what file would I change if I wanted to customize the global banner? I'd like a dark color to match the splunk header as well as unbolded font. I am thinking this is a css/html solution -- po... See more...
Hi all, what file would I change if I wanted to customize the global banner? I'd like a dark color to match the splunk header as well as unbolded font. I am thinking this is a css/html solution -- possibly somewhere in mrsparkle directory? I went into the global-banner.conf and changed       global_banner.backgrond_color = black,       but as expected that didn't work. Thank you!
Hi, where the machine agent runs is of no concern to AppDynamics. It makes no difference if running in aws, on premise etc. As long as the user that runs the machine agent process has permissions t... See more...
Hi, where the machine agent runs is of no concern to AppDynamics. It makes no difference if running in aws, on premise etc. As long as the user that runs the machine agent process has permissions to read/write to the machine agent directory that's fine. Can you share your controller-info.xml configuration(Just remove sensitive info), want to check something
I have checked the telnet 443 , it is connecting fine.  I have checked the configurations. all looks fine.  Is there any specific license needed from the controller to connect to the Amazon ec2 inst... See more...
I have checked the telnet 443 , it is connecting fine.  I have checked the configurations. all looks fine.  Is there any specific license needed from the controller to connect to the Amazon ec2 instances.  and will there be an issue with the user which is running the machine agent 
Hi @trashyroadz  Have opened a new thread for the issue I am facing. Current Splunk version - 8.2.3.3 While running a query in search page, getting error as "Unable to distribute to peer named <... See more...
Hi @trashyroadz  Have opened a new thread for the issue I am facing. Current Splunk version - 8.2.3.3 While running a query in search page, getting error as "Unable to distribute to peer named <idx name> at uri <splunk idx uri> because replication was unsuccessful. ReplicationStatus: Failed-Failure info: failed_because_BUNDLE_SIZE_RETRIEVAL_FAILURE". Verify connectivity to the search peer, that the search peer is up, and that an adequate level of system resources are available. Did not think of connectivity issue as in the message box got message saying bundle size exceeds limit. On checking, could see all apps in $SPLUNK_HOME/var/run/splunk/deploy in deployer even if we had changed a single file in a single app. As per my understanding only modified apps should be pushed to SHs and from SH captain to search peers. Please help on this. Let me know if any other detail is needed.
Hi Team,  I help manage the Terraform Cloud for Splunk app and after v2.37.0 of the AppInspect CLI was released we're seeing this test failure: FAILURE: check_for_updates property found i... See more...
Hi Team,  I help manage the Terraform Cloud for Splunk app and after v2.37.0 of the AppInspect CLI was released we're seeing this test failure: FAILURE: check_for_updates property found in [package] stanza is set to True for private app not uploaded to Splunkbase. It should be set to False for private apps not uploaded to Splunkbase. File: default/app.conf Line Number: 15   I find this message confusing, as the app is published in Splunkbase. I don't want to disable checks for updates unnecessarily.   Could I please get some help understanding how to address this error? Or help me figure out if I'm misunderstanding something? Thanks!  
Hi Ak-mal If the machine agent process is up and running, check the following 1. Connectivity from your ec2 instance to the AppDynamics Controller(telnet , Curl etc.) 2. Validate that you have ... See more...
Hi Ak-mal If the machine agent process is up and running, check the following 1. Connectivity from your ec2 instance to the AppDynamics Controller(telnet , Curl etc.) 2. Validate that you have added the machine agent configuration details with the controller host, port, ssl enabled, account and access key info in the controller-info.xml file Ciao