当前位置:网站首页>The single value view in Splunk uses to replace numeric values with text
The single value view in Splunk uses to replace numeric values with text
2022-07-07 08:22:00 【QYHuiiQ】
stay splunk Of single value In the view , Before, we used to display colors directly according to values , That is to say single value What value is used in , Then the color setting is displayed according to this value , In other words , The value of this display must be the value of setting color rules . In some cases, we may just want to show the name of an indicator , Then set the color according to the value of this indicator , That is to say, change the original display value to display indicator name , Do not show specific values , But still set the color with this value .
In this case , Our implementation idea is to show by value , Finally, replace this value with the index name ( Text ).
Suppose the original situation is like this , When grade Greater than 60 Green when , Less than or equal to 60 when , Show red , Note that our view in this building is based on grade Set the color with the value of , And will grade Show the value of :
| makeresults
| eval grade="37"
| table grade

What we need to achieve now is , Change the displayed value into the indicator name / Text , The color rules remain the same .
If we use replace Replace the final displayed value , So use " Format " The color rules set in will naturally become invalid , because " Format " The rule in is spl It will take effect after the execution , Take a look at this test :
| makeresults
| eval grade="37"
| table grade
| replace "37" with "Student Grade" in grade
Because the final value is replaced by text , Therefore, the rule setting of this numerical type is invalid , The final display is gray .
therefore , The method we need to use is to use Splunk An official one rangemap To help us set the color , And then again replace Text , The implementation method is as follows :
| makeresults
| eval grade="37"
| rangemap field=grade low=61-100 severe=0-60 default=gray
# here low and severe They correspond to green and red respectively , This is a Splunk The official default configuration , You can refer to other use cases in official documents .
# If the color rule you want to set is a specific value rather than a range , Then you can set it to - The values before and after are the same , Set it to the value you want to define . Such as :| rangemap field=grade low=60-60 severe=100-100 default=gray
At this time, you need to pay attention to " Format " Disable the color in , Because we are through spl Inside rangemap To set the color .

After setting the color , Start replacing displayed values :
| makeresults
| eval grade="87"
| rangemap field=grade low=61-100 severe=0-60 default=gray
| replace "87" with "Student Grade" in grade
#replace The next first parameter is the replaced value ,with Followed by the replaced value ,in The next one is to replace the value in which field 

At this point, the value displayed in the view becomes a custom text , It has nothing to do with the value behind the color setting , It should be noted that replace The latter value is only when grade The value of the field is "87" Will be replaced when , Otherwise, it will not be replaced .

Here I'm just an example of value substitution , But in practice replace The value of may vary , So we need to adjust the logic according to the business .
That's through rangemap and replace Realization single value Replace the display value in , For more use cases, please refer to the official documents :
边栏推荐
- Detailed explanation of apply, also, let, run functions and principle analysis of internal source code in kotlin
- 漏洞复现-easy_tornado
- Transformation function map and flatmap in kotlin
- Application of slip ring of shipborne radar antenna
- DeiT学习笔记
- Understanding of out covariance, in inversion and invariance in kotlin
- Practice of combining rook CEPH and rainbow, a cloud native storage solution
- JS cross browser parsing XML application
- 利用 Helm 在各类 Kubernetes 中安装 Rainbond
- Use of any superclass and generic extension function in kotlin
猜你喜欢

Splunk中single value视图使用将数值替换为文字

Learn how to compile basic components of rainbow from the source code

电池、电机技术受到很大关注,反而电控技术却很少被提及?

One click deployment of highly available emqx clusters in rainbow

CCTV is so warm-hearted that it teaches you to write HR's favorite resume hand in hand

opencv学习笔记一——读取图像的几种方法

Leetcode medium question my schedule I

The simple problem of leetcode is to judge whether the number count of a number is equal to the value of the number
![[IELTS speaking] Anna's oral learning records part2](/img/c4/ad7ba2394ee7a52b67b643aa45a7ae.png)
[IELTS speaking] Anna's oral learning records part2

云原生存储解决方案Rook-Ceph与Rainbond结合的实践
随机推荐
Uniapp mobile terminal forced update function
Infix keyword infix expression and the use of generic extension function in kotlin
Tuowei information uses the cloud native landing practice of rainbow
积分商城管理系统中应包含的四大项
云原生存储解决方案Rook-Ceph与Rainbond结合的实践
Rsync remote synchronization
【无标题】
柯基数据通过Rainbond完成云原生改造,实现离线持续交付客户
Analyzing the influence of robot science and technology development concept on Social Research
Complex network modeling (I)
opencv学习笔记四——膨胀/腐蚀/开运算/闭运算
Fluentd is easy to use. Combined with the rainbow plug-in market, log collection is faster
拓维信息使用 Rainbond 的云原生落地实践
Splunk子查询模糊匹配csv中字段值为*
Avatary's livedriver trial experience
Notes on PHP penetration test topics
Real time monitoring of dog walking and rope pulling AI recognition helps smart city
Qinglong panel - today's headlines
单场带货涨粉10万,农村主播竟将男装卖爆单?
面试题(CAS)