09 May 2019 10:23 AM - last edited on 18 May 2023 04:27 PM by Michal_Gebacki
We want to create a plugin with the Dynatrace SDK that executes a command in unix or Windows. I found out that this is not working when we upload the plugin to the server. In the simulator it works fine
output = subprocess.check_output
or for example or with
cmd = somethind_to_execute
result_code = os.system(cmd)
What can we do to exectue a command in the plugin?
Solved! Go to Solution.
09 May 2019 11:08 AM
Can you elaborate what's exactly is not working? Did you put your plugin in plugin_deployment folder? Can you provide us with plugin log files?
10 May 2019 09:56 AM
ok i found out thate generally subprocess it is working. My problem was that the user that executes the simulator ist "root" and the user that executes the plugin ist "dtuser". This was missing in the documentation and made the plguin running in the sumulator but not at the server. Is ist possible to run the plugin as root?
10 May 2019 11:17 AM
Due to security constraints all the plugins are executed with dtuser permissions. Indeed it'd might be good to indicate that in plugin sdk documentation explicitly. Currently it's only mentioned in
https://www.dynatrace.com/support/help/technology-support/operating-systems/linux/installation/customize-oneagent-installation-on-linux/