cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Simple "how to" for making calls to unmonitored hosts become services

gilgi
DynaMight Champion
DynaMight Champion

Hi everyone,

Let me start by clarifying (if this was not clear from the title) that this is not a question, but rather sharing my experience in making an unmonitored host become part of the smartscape and even divided into services.

We have run into a situation in which a customer hosts his site on AWS and is initiating calls to his own internal SAP system to retrieve and update data. As he only installed dynatrace on AWS, the SAP servers were included in the unmonitored hosts.

So I've searched the forums and found this post. following you'll find the steps I've taken to achieve an end result in which I can see SAP transaction calls as follows:

As a preparation make sure you have the following:

  1. API Token from your dynatrace server
  2. The IP ADDRESS of the host not being monitored and even ports
  3. Your favorite rest tool, mine was postman

Since I know I may need to run some additional calls to this server, I've defined in postman an environment and in that created my variables for the environment id and the token. (this has been demonstrated in one of the recent webinars, but as there are so many of them - definitely not a complaint - I couldn't find the right one to link here)

Now let's get to work.

The first thing we need to do is create a POST call to https://{{Env ID}}.live.dynatrace.com/api/v1/entity/infrastructure/custom/MYCUSTOMDEVICENAME. (everything within the double curly brackets is the postman variable which will be replace in the real value on runtime)

in order for this call to work you need the following request headers:

  • Authorization - which will include your token in the form of Api-Token {{Env Token}}
  • Content-Type - with the value of application/json

Then, we're off to the JSON content that described the host. There are a lot of values you can add to describe your host. To make this clear here are the minimum values I needed:

{
"displayName" : "name you want to appear on your smartscape and display",
"ipAddresses" : ["HOST IP"],
"listenPorts" : ["PORT1","PORT2"],
"type" : "CAN ACTUALLY BE ANYTHING",
}

Now go ahead and run your call. If everything goes well, your returned status should be 200 - ok.

Once the device is done, your next step is just to sit back and relax. from this point on Dynatrace automatically created a service for each port and allowed us to present it nicely, monitor, chart and even add our own request naming rules to make it appear as you've seen above.

Obviously you could take this even further and create custom services and even add some metrics and tags to the hosts, but one task at a time.

Hope this will help you all until we get the RFE implemented.

8 REPLIES 8

nj_njoku
Inactive

Hi Gil,

In my experience, this wouldn't last beyond 72 hours and will begin mapping back to "unmonitored hosts" after that timeframe. Please let me know if this works beyond that for you.

Thanks

NJ

gilgi
DynaMight Champion
DynaMight Champion
@Ugochukwu N.

Seems like you are right. after 72 hours, the host did in fact disapppear. I suspect this is because it did not receive any metrics and hence is automatically being cleared from the system.

Will check if custom service would do the trick instead of a host

Gil,

Did the custom service method work for you and maintain the metrics beyond 72hrs?

Matthew,

The custom service will not work as this requires an agent on the process to create a custom service. You may be able to create a custom service on the exact method on the monitored process that makes the request to the unmonitored tier but to have that unmonitored tier as a custom service is not possible.

Thanks

NJ

alicia_pepper
Organizer

please upvote this RFE: Allow
easy way to create Service based on requests to unmonitored Hosts
we hope it will be coming in Q3. The api timing out in 72 hours is a known issue per a ticket we had open DT but the fix for that is Q4 - so hopefully the easy way comes first 🙂


Dant3
Pro

Hi Gil, so the only thing you did was get the info of the header of the call outside of the enviroment into a custom device? or did you did somthing else?


Services Solution Engineer @PowerCloud - Observability/CloudOps Certified / Former SE @Dynatrace.

gilgi
DynaMight Champion
DynaMight Champion

Hi @Alan P.

What do you mean header ? I used the host IP address (the one that is not monitored) and used it in the post command as described above.

Gil.


Hi! i ask, because in creating custom devices, but no "service" is getting attached to them. I only use the IP Address and the port of the "unmonitored host", but they keep getting added to the "unmonitored host" service in subsequent calls to them. You got any example of the post you did? Maybe im missing something silly...


Services Solution Engineer @PowerCloud - Observability/CloudOps Certified / Former SE @Dynatrace.

Featured Posts