Questions tagged [datadog-dashboard]

45 questions
0
votes
0 answers

How to push circuit breaker metrics to Datadog?

I have configured resilience4j-micrometer and spring-boot-starter-actuator in my service. Apparently this is enough to see metrics in Datadog but I do not see the values populated for the metric for example …
0
votes
0 answers

Datadog - Find API calls

How to find on Datadog all applications that call a specific endpoint, like "/my-endpoint/test" ? I've tried to search on Logs, but I'm not sure if it's reliable. What's the better way?
0
votes
0 answers

Datadog: filter by the date in the query widget

I would like to create the widget that shows the number of entities with the tag a.b.c that are created more than 1 week ago. How can I do this? Should I create a tag with timestamp? How can I filter out the values using it? Thank you very much.
user2957954
  • 1,221
  • 2
  • 18
  • 39
0
votes
0 answers

how can I see the amount of requests to my deployment

I have a question for you guys, about Kubernetes monitoring dashboard. how can I see the number of requests to my deployment or services, such as ui-client or auth pods, and add them to my custom dashboard? how can i add to my dashboard the "image…
Dan
  • 1
  • 1
0
votes
0 answers

DataDog Monitor alert notification are not send to Distribution lists

I am unable to recieve alerts on the distribution channel from datadog monitors i have tried on two different distribution channel list but unable to recieve any alerts from datadog moniotors apart form this when i send email to individual account i…
0
votes
0 answers

Datadog monitor alert failing for eks cronjob

I am setting cronjob failure alert using Datadog and using below query max(last_5m):max:kubernetes_state.job.completion.failed{kube_cronjob:cronjobnamexx} by {kube_cluster_name,kube_namespace,kube_cronjob} >= 1 Above query sends alert for the first…
0
votes
1 answer

How do I create a Monitor for a Specific Log in DataDog

Hi I'm fairly new to DataDog and I want to create a new monitor to look into one of my services to find a specific log like so “Unable to get latest Previously Acquired Files state. Please try again.” How should I go about doing this? I am…
0
votes
0 answers

I would like to divide a metric in datadog by the selected time

I'm using Datadog for monitoring and analytics, and I have a specific use-case where I'm collecting metrics on error duration. What I would like to do is calculate the error rate per selected time interval, essentially dividing the accumulated error…
0
votes
0 answers

Segregate error on the basis of status in datadog

I have a datadog monitor the query for which is written as: default_zero(sum:trace.grpc.server.errors{service:name_of_service,env:lab}.as_count()) The above query tracks the erros for my service and based on the alerts sends the appropriate…
Ishita
  • 109
  • 2
  • 10
0
votes
0 answers

Widget with text input on datadog dashboard

I need to create a time series widget (or another type if time series is not possible) that takes a text input (a value I get from another existing widget) and uses it as a variable for the graph. An example would be "get me all error logs for X"…
0
votes
0 answers

Plot simple bar graph in DataDog

I am really at beginner level in DataDog. I have scheduled a cron which will generate data & will pass it to datadog as logs. I am getting below logs in DataDog in the format in Event attribute section { marks: 245, student_id: 1234567, …
0
votes
0 answers

Datadog Dashboard Query for JSON Services

I am trying to create a TopList visualization or alternatively a Query to view all services ingesting logs that are not in JSON format. I am able to find all services ingesting logs in any format…
Bitmap
  • 12,402
  • 16
  • 64
  • 91
0
votes
0 answers

Why doesn't my publicly shared Datadog dashboard show any data

I created a Datadog dashboard with two widgets that show different formats of the same dataset (same filter used for both). Both widgets work when I'm logged into Datadog, but only one of them displays any data when I use the publicly shared link…
Simon Pratt
  • 165
  • 1
  • 3
  • 10
0
votes
0 answers

Datadog shows a limited number of transaction logs

I have been trying group some logs in transactions between 2 services, it works great but when I increase the duration of logs it always caps at 30 transactions no matter the amount of logs, looks like there is a limitation that I'm not aware of.…
0
votes
0 answers

Datadog 'page' is invalid: invalid cursor

cursor=$(echo $response | jq -r .meta.page.after) data='{ "filter": { "from": "now", "to": "now-2d", "query": "*" }, "page": { "cursor": "{{cursor}}", "limit": 1000 } }' data=$(echo $data | sed "s/{{cursor}}/$cursor/") response =$(curl -k POST…