Questions tagged [signalfx]
14 questions
6
votes
1 answer
Signalfx formula set 0 if no timeseries found
I have the following formula in a signalfx chart, but it's not showing any results because F has 0 timeseries. How can I display it as 0 instead of this blank line.
F = data('myapi.job.count', filter=filter('environment_type', '*') and…

S.Dan
- 1,826
- 5
- 28
- 55
2
votes
1 answer
SignalFX detector data().count() based on condition
Is it possible to implement count() MTS based on condition?
For instance:
We need to monitor the amount of time RDS CPU picks the point of 95% for the last 3 days.
A = data('CPU_Utilization').count(...when point > 95%).
detector(when(A >…

calm27
- 145
- 6
2
votes
1 answer
SignalFx filter for None
I'm trying to build a detector with signalfx and I want to make a filter query on a daat stream that will fetch me metrics with dimension name "foo" and value "baz" but also ones that do not have this dimension at all. I've been trying something…

Peter Wegrzyn
- 71
- 8
1
vote
0 answers
How to set signalfx.accessToken in spring application
I have have tried pushing custom metrics to splunk apm using below dependency and setting the properties using springboot application
io.micrometer
…

Surya Chandra
- 53
- 5
1
vote
0 answers
Service, host_name, process_id, runtime information is not available in signalfx when using micrometer for pushing custom metrics
I am trying to send custom metrics to Splunk APM using micrometer dependencies. after adding the dependencies and setting the application properties I am Seeing metrics in the APM dashboard but Service, host_name, process_id, and runtime information…

Surya Chandra
- 53
- 5
1
vote
0 answers
How to mute signalfx detector alerts using cli with the help of bash script
I have created a simple bash script that help you to mute alert within a few second without going into the console.
prerequisite:
jq needs to be installed on local
you should know some portion of your detector.
ex- If I want to mute alert with for…

Vasim Jamadar
- 31
- 2
1
vote
1 answer
Google Cloud GKE Node Pool Metrics instance_group/size ==
I am using SignalFX to create an alert via metrics from a Google Cloud GKE cluster.
I want to be able to trigger an alert when number-of-nodes-in-node-pool == node-pool-max-size.
I am not using GCP autoscaling under the k8s cluster as the cluster is…

AlRal
- 216
- 3
- 10
0
votes
0 answers
Signal fx signal flow calculating error rate
I am using micrometer to publish signalfx metrics.
I have a count for http_status with http status code as a tag. I am able to see this in the splunk observability cloud dashboard
E = data('http_status.count', filter=filter('Status',…

developer747
- 15,419
- 26
- 93
- 147
0
votes
0 answers
How to use signalfx `publish` based on a dashboard variable
I've got a signalfx query and I'd like to display the timeshift based on a dashboard variable. Is it possible?
A = data('some.count', rollup='sum', extrapolation='zero').sum().publish(label='Request Count')
I was hoping to find a if/else or a…

S.Dan
- 1,826
- 5
- 28
- 55
0
votes
0 answers
Signalfx- Count number of request taking time > a threshold value
I have a metric named http.server.request that stores the duration it took to respond to a http request. I want to get the number of request for which this duration is above a threshold ( say 1000ms ). I could see various percentiles (p99, p90,…

Abhishek Ranjan
- 238
- 2
- 14
0
votes
2 answers
How to expose SPLUNK_ACCESS_TOKEN in spring boot application
I have a spring boot application, in which I have imported the Splunk OTEL library(Splunk open telemetry jar file https://github.com/signalfx/splunk-otel-java) for tracing and matrices.
So a Splunk authentication token i.e Splunk access token is…

alif0325
- 1
- 1
0
votes
1 answer
Monitoring Azure AKS pod logs with SignalFX w/out Log Observer
Is there any alternative way to monitor AKS Pod logs without Log Observer? I tried to implement this workaround using storage account/event hub, but neither does store application logs from pods. I'm able to get application logs easily from log…

lubierzca
- 160
- 2
- 14
0
votes
0 answers
Unexplained delay in ASP.NET WebAPI in hop from web app directory to action route
Under an 'apps' web site, we've created a web application through docker/powershell using:
New-WebApplication -Name 'service_b' -Site 'apps' -PhysicalPath 'C:\ServiceB.API' -ApplicationPool 'DefaultAppPool'.
With SignalFx tracing enabled, we notice…

Triynko
- 18,766
- 21
- 107
- 173
0
votes
1 answer
SignalFx: Report a rescued exception in Ruby code, similar to NewRelic::Agent.notice_error?
In a Ruby on Rails app, I rescue an exception in a known scenario. In the rescue, my code does a little clean up then moves on without re-raising the exception.
I want to log details of the exception to SignalFx. I believe this happens automatically…

David Hempy
- 5,373
- 2
- 40
- 68