Thanks to clarify his point with the file .conf, but I am using the setup page from the beginning and when I run something to test like: | chatgpt org="org-XXXXXXXXXXXXXX" prompt="what means hello...
See more...
Thanks to clarify his point with the file .conf, but I am using the setup page from the beginning and when I run something to test like: | chatgpt org="org-XXXXXXXXXXXXXX" prompt="what means hello mundo?" model="gpt-4o" I get: ERROR HTTP 404 Not Found -- Could not find object id=TA-openai-api:org_id_XXXXXXXXXXXXXXXX: ERROR cannot unpack non-iterable NoneType object I copy paste org_id from my company openAI account. I also try two keys one being the owner and other creating a service and in any of them are working
Below is the query which included all the events for windows shutdown and starting up want to exclude host when event 4608 is observed within 5 minutes index =windows product=Windows EventC...
See more...
Below is the query which included all the events for windows shutdown and starting up want to exclude host when event 4608 is observed within 5 minutes index =windows product=Windows EventCode="4609" OR EventCode="4608" OR EventCode="6008" | table _time name host dvc EventCode severity Message please share the query. Thanks
After setting this aside until we finally upgraded splunk, a solution has been found. Working with splunk support for weeks, we were not able to fix it directly and concluded that the errors are due ...
See more...
After setting this aside until we finally upgraded splunk, a solution has been found. Working with splunk support for weeks, we were not able to fix it directly and concluded that the errors are due to splunk trying to read the files before they are done being written by our diode software. The files are transferred once every 24 hours, so I created a script run by a scheduled task that copies the files to a different set of folders and set up batch inputs to read then delete the copies. All logs come through without any extra junk. Thanks for your help! @yeahnah @isoutamo
Hello everyone,
I am using the Machine Agent without the bundle version 22.6 as indicated in past releases in docs. When I run java -jar machineagent.jar, I get the error: Could not find the main ...
See more...
Hello everyone,
I am using the Machine Agent without the bundle version 22.6 as indicated in past releases in docs. When I run java -jar machineagent.jar, I get the error: Could not find the main class: com.appdynamics.agent.sim.bootstrap.Bootstrap. Program will exit.
I ran the command jar tf machineagent.jar | grep com/appdynamics/agent/sim/bootstrap/Bootstrap.class, and it shows up, so I don't understand what I'm doing wrong. Can you help me? (doc: https://docs.appdynamics.com/appd/24.x/latest/en/product-and-release-announcements/past-releases/past-agent-releases#id-.PastAgentReleasesv24.2-Version22.6.0-June29,2022)
Unsure what format "time" is in for you. You could try converting "time" into unix time (assuming it is populating differently from "_time"), and then converting it back into readable_time: | eva...
See more...
Unsure what format "time" is in for you. You could try converting "time" into unix time (assuming it is populating differently from "_time"), and then converting it back into readable_time: | eval time=(time, "%H:%M") (this may vary on its current format) | eval readable_time = strftime(_time, "%m/%d/%Y") be sure not to confuse "time" and "_time" _time is by default in unix time. https://docs.splunk.com/Documentation/SCS/current/SearchReference/DateandTimeFunctions If this helped, karma is appreciated.
I've been asked to show how many events are over the p99 (for example) value for a search. I'm hopefully just missing something obvious, but I've not figured out how, or if, this is possible. Thx
In a Classic dashboard, I can add <option name="drilldown">row</option> and it highlights the entire row. My drilldown is not cell-specific, so this is what I want in my Dashboard Studio da...
See more...
In a Classic dashboard, I can add <option name="drilldown">row</option> and it highlights the entire row. My drilldown is not cell-specific, so this is what I want in my Dashboard Studio dashboard. I've tried: "viz_Yy6FIxmM": {
"type": "splunk.table",
"options": {
"tableFormat": {
"align": "> table |pick(alignment)"
},
"drilldown": "row",
... with no change. Thx!
OK, thanks so much, I will review the information you provided. Since our Splunk Enterprise instance is running on a virtual machine - the info you provided could be the issue. Splunk internals are ...
See more...
OK, thanks so much, I will review the information you provided. Since our Splunk Enterprise instance is running on a virtual machine - the info you provided could be the issue. Splunk internals are tricky, I will check things over. Thanks Again, EWHOLZ
Hi, how to convert UTC time into mmddyy format. I tried this query for search | makeresults | eval time | eval readable_time = strftime(strptime(tostring(time/1000), "%s"), "%m%d%y") | table...
See more...
Hi, how to convert UTC time into mmddyy format. I tried this query for search | makeresults | eval time | eval readable_time = strftime(strptime(tostring(time/1000), "%s"), "%m%d%y") | table time, readable_time The time format is time: 1717690912746 Thank you
I’m encountering an issue while trying to instrument AppDynamics in a Node.js microservice. Here are the details: Node.js version: v14.21.2 npm version: 8.19.4 Operating system: Linux BBTMF-4AF6...
See more...
I’m encountering an issue while trying to instrument AppDynamics in a Node.js microservice. Here are the details: Node.js version: v14.21.2 npm version: 8.19.4 Operating system: Linux BBTMF-4AF63ZF83 5.15.146.1-microsoft-standard-WSL2 #1 SMP Thu Jan 11 04:09:03 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux AppDynamics version: 23.3.0 The installation process (npm install --legacy-peer-deps) succeeds, but when I run npm run start, I encounter an error message related to appdynamics-libagent-napi. Has anyone else faced a similar issue with this library? Any ideas on how to resolve it? I’m running out of solutions here.