Place state timeline in table panel or vice versa

  • What Grafana version and what operating system are you using?
    v8.5.13
  • What are you trying to achieve?
    TL;DR;
    So I’m trying to create a state timeline panel that can have more columns other then the display value and the state timeline itself.
    Detail
    I’m wondering if it is possible to add more column to state timeline panel. Currently there is two columns by default: one is the state timeline graph itself and another is the display name of the graph (which by default would be the labels result of the query for that graph), now I want to add another column which will be a “dynamic” value, which will comes from another query
    So for example the originl query for state timeline graph return following values
    metrics1{a=“a”} 1
    metrics1{a=“b”} 2
    metrics1{a=“c”} 3
    So there will be three rows in the state timeline graph
    Now I want to add another column using the value returned by another metrics with following values
    metrics2{a=“a”} 123
    metrics2{a=“b”} 456
    metrics2{a=“c”} 789
    So the final graph I want to achieve would be for each row in the original state timeline graph, there will be another column, with value 123, 456, 789 respectively (matched using the same label)
  • How are you trying to achieve it?
    I’ve try to look through all possible configuration for state timeline graph but seems that it cannot add extra column
    I’ve also try to use table panel to achieve this, but cannot find a way to embed a state timeline panel into one column of a table panel