- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
hello
I use a transpose command in order to have _time field displayed in column instead row
First question :
how to delete the header?
second question :
I was doing a color formatting like this
<format type="color" field="Qualité">
<colorPalette type="list">[#53A051,#F1813F,#DC4E41]</colorPalette>
<scale type="threshold">2,10</scale>
</format>
Since use transpose, the formatting doesnt works
what I have to do please?
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Use header_field
transpose - Splunk Documentation
Remove field="Qualité" so that the formatting applies to all fields
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Use header_field
transpose - Splunk Documentation
Remove field="Qualité" so that the formatting applies to all fields
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I done header_field= Menu but I have always row1, row2....
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@jip31 wrote:I done header_field= Menu but I have always row1, row2....
This only means that "Menu" is not a column name in your original table. You need to look at column "column", and decide which row should be used as header_field. (Very probably it is the first row .)
Look at the table from this sample search:
index=_internal
| chart count over log_level by sourcetype
Try the following three commands:
- | transpose
- | transpose header_field=log_level
- | transpose header_field=log_level column_name=sourcetype
You'll see how these options interact with the original table.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

What is your full search?
