# CMS.INFO Returns width, depth and total count of the sketch. ### Parameters: * **key**: The name of the sketch. ## Examples ``` redis> CMS.INFO test 1) width 2) (integer) 2000 3) depth 4) (integer) 7 5) count 6) (integer) 0 ``` {{< multitabs id=“cms-info-return-info" tab1="RESP2" tab2="RESP3" >}} One of the following: * [Array reply](https://redis.io/docs/latest/develop/reference/protocol-spec#arrays) of [simple string reply](https://redis.io/docs/latest/develop/reference/protocol-spec#simple-strings) and [integer reply](https://redis.io/docs/latest/develop/reference/protocol-spec#integers) pairs containing sketch information. * [Simple error reply](https://redis.io/docs/latest/develop/reference/protocol-spec#simple-errors) in these cases: invalid arguments, missing key, or wrong key type. -tab-sep- One of the following: * [Map reply](https://redis.io/docs/latest/develop/reference/protocol-spec#maps) of [simple string reply](https://redis.io/docs/latest/develop/reference/protocol-spec#simple-strings) and [integer reply](https://redis.io/docs/latest/develop/reference/protocol-spec#integers) pairs containing sketch information. * [Simple error reply](https://redis.io/docs/latest/develop/reference/protocol-spec#simple-errors) in these cases: invalid arguments, missing key, or wrong key type.